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>2020-03-27 06:07:56 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-27 06:07:56 +0300
commit4560c92ab1954cf0416bafc45d1fa671fcacb3c3 (patch)
tree4b70c6b61345b2df075918cab6314d41b46cf80e /app/assets
parent6348b76e4b4dd4e398915c3150c1d02aafa3f13b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/registry/explorer/components/quickstart_dropdown.vue13
1 files changed, 12 insertions, 1 deletions
diff --git a/app/assets/javascripts/registry/explorer/components/quickstart_dropdown.vue b/app/assets/javascripts/registry/explorer/components/quickstart_dropdown.vue
index 99361b6e08d..96455496239 100644
--- a/app/assets/javascripts/registry/explorer/components/quickstart_dropdown.vue
+++ b/app/assets/javascripts/registry/explorer/components/quickstart_dropdown.vue
@@ -1,6 +1,7 @@
<script>
import { GlDropdown, GlFormGroup, GlFormInputGroup } from '@gitlab/ui';
import { mapGetters } from 'vuex';
+import Tracking from '~/tracking';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import {
QUICK_START,
@@ -19,6 +20,7 @@ export default {
GlFormInputGroup,
ClipboardButton,
},
+ mixins: [Tracking.mixin({ label: 'quickstart_dropdown' })],
i18n: {
dropdownTitle: QUICK_START,
loginCommandLabel: LOGIN_COMMAND_LABEL,
@@ -34,7 +36,13 @@ export default {
};
</script>
<template>
- <gl-dropdown :text="$options.i18n.dropdownTitle" variant="primary" size="sm" right>
+ <gl-dropdown
+ :text="$options.i18n.dropdownTitle"
+ variant="primary"
+ size="sm"
+ right
+ @shown="track('click_dropdown')"
+ >
<!-- This li is used as a container since gl-dropdown produces a root ul, this mimics the functionality exposed by b-dropdown-form -->
<li role="presentation" class="px-2 py-1 dropdown-menu-large">
<form>
@@ -49,6 +57,7 @@ export default {
class="border"
:text="dockerLoginCommand"
:title="$options.i18n.copyLoginTitle"
+ @click.native="track('click_copy_login')"
/>
</template>
</gl-form-input-group>
@@ -65,6 +74,7 @@ export default {
class="border"
:text="dockerBuildCommand"
:title="$options.i18n.copyBuildTitle"
+ @click.native="track('click_copy_build')"
/>
</template>
</gl-form-input-group>
@@ -82,6 +92,7 @@ export default {
class="border"
:text="dockerPushCommand"
:title="$options.i18n.copyPushTitle"
+ @click.native="track('click_copy_push')"
/>
</template>
</gl-form-input-group>