Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-03 12:09:50 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-03 12:09:50 +0300
commit29761d24b86b7a091ca83df4e8cd1cc14f81d534 (patch)
treeeb77242b6d1685f14428caad63edd10e71502d02 /app/assets/javascripts/ci/runner/components/registration
parent74081733481d7d3d480a5e887ac768fe30f84055 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/ci/runner/components/registration')
-rw-r--r--app/assets/javascripts/ci/runner/components/registration/registration_feedback_banner.vue41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/assets/javascripts/ci/runner/components/registration/registration_feedback_banner.vue b/app/assets/javascripts/ci/runner/components/registration/registration_feedback_banner.vue
new file mode 100644
index 00000000000..fe19977f783
--- /dev/null
+++ b/app/assets/javascripts/ci/runner/components/registration/registration_feedback_banner.vue
@@ -0,0 +1,41 @@
+<script>
+import ILLUSTRATION_URL from '@gitlab/svgs/dist/illustrations/multi-editor_all_changes_committed_empty.svg?url';
+import { GlBanner } from '@gitlab/ui';
+import { s__ } from '~/locale';
+import UserCalloutDismisser from '~/vue_shared/components/user_callout_dismisser.vue';
+
+const FEEDBACK_ISSUE_URL = 'https://gitlab.com/gitlab-org/gitlab/-/issues/387993';
+
+export default {
+ components: {
+ GlBanner,
+ UserCalloutDismisser,
+ },
+ i18n: {
+ title: s__("Runners|We've made some changes and want your feedback"),
+ body: s__(
+ "Runners|We've been making improvements to how you register runners so that it's more secure and efficient. Tell us how we're doing.",
+ ),
+ button: s__('Runners|Add your feedback to this issue'),
+ },
+ ILLUSTRATION_URL,
+ FEEDBACK_ISSUE_URL,
+};
+</script>
+<template>
+ <user-callout-dismisser feature-name="create_runner_workflow_banner">
+ <template #default="{ dismiss, shouldShowCallout }">
+ <gl-banner
+ v-if="shouldShowCallout"
+ class="gl-my-6"
+ :title="$options.i18n.title"
+ :svg-path="$options.ILLUSTRATION_URL"
+ :button-text="$options.i18n.button"
+ :button-link="$options.FEEDBACK_ISSUE_URL"
+ @close="dismiss"
+ >
+ <p>{{ $options.i18n.body }}</p>
+ </gl-banner>
+ </template>
+ </user-callout-dismisser>
+</template>