debian-mirror-gitlab/app/assets/javascripts/super_sidebar/components/user_menu.vue
2023-07-09 08:55:56 +05:30

340 lines
10 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script>
import {
GlAvatar,
GlDisclosureDropdown,
GlDisclosureDropdownGroup,
GlDisclosureDropdownItem,
GlButton,
} from '@gitlab/ui';
import SafeHtml from '~/vue_shared/directives/safe_html';
import { s__, __, sprintf } from '~/locale';
import NewNavToggle from '~/nav/components/new_nav_toggle.vue';
import Tracking from '~/tracking';
import PersistentUserCallout from '~/persistent_user_callout';
import { USER_MENU_TRACKING_DEFAULTS, DROPDOWN_Y_OFFSET } from '../constants';
import UserNameGroup from './user_name_group.vue';
// Left offset required for the dropdown to be aligned with the super sidebar
const DROPDOWN_X_OFFSET = -211;
export default {
feedbackUrl: 'https://gitlab.com/gitlab-org/gitlab/-/issues/409005',
i18n: {
newNavigation: {
sectionTitle: s__('NorthstarNavigation|Navigation redesign'),
},
setStatus: s__('SetStatusModal|Set status'),
editStatus: s__('SetStatusModal|Edit status'),
editProfile: s__('CurrentUser|Edit profile'),
preferences: s__('CurrentUser|Preferences'),
buyPipelineMinutes: s__('CurrentUser|Buy Pipeline minutes'),
oneOfGroupsRunningOutOfPipelineMinutes: s__('CurrentUser|One of your groups is running out'),
gitlabNext: s__('CurrentUser|Switch to GitLab Next'),
provideFeedback: s__('NorthstarNavigation|Provide feedback'),
startTrial: s__('CurrentUser|Start an Ultimate trial'),
signOut: __('Sign out'),
},
components: {
GlAvatar,
GlDisclosureDropdown,
GlDisclosureDropdownGroup,
GlDisclosureDropdownItem,
GlButton,
NewNavToggle,
UserNameGroup,
},
directives: {
SafeHtml,
},
mixins: [Tracking.mixin()],
inject: ['toggleNewNavEndpoint'],
props: {
data: {
required: true,
type: Object,
},
},
computed: {
toggleText() {
return sprintf(__('%{user} users menu'), { user: this.data.name });
},
statusItem() {
const { busy, customized } = this.data.status;
const statusLabel =
busy || customized ? this.$options.i18n.editStatus : this.$options.i18n.setStatus;
return {
text: statusLabel,
extraAttrs: {
class: 'js-set-status-modal-trigger',
},
};
},
trialItem() {
return {
text: this.$options.i18n.startTrial,
href: this.data.trial.url,
extraAttrs: {
...USER_MENU_TRACKING_DEFAULTS,
'data-track-label': 'start_trial',
},
};
},
showTrialItem() {
return this.data.trial?.has_start_trial;
},
editProfileItem() {
return {
text: this.$options.i18n.editProfile,
href: this.data.settings.profile_path,
extraAttrs: {
'data-qa-selector': 'edit_profile_link',
...USER_MENU_TRACKING_DEFAULTS,
'data-track-label': 'user_edit_profile',
},
};
},
preferencesItem() {
return {
text: this.$options.i18n.preferences,
href: this.data.settings.profile_preferences_path,
extraAttrs: {
...USER_MENU_TRACKING_DEFAULTS,
'data-track-label': 'user_preferences',
},
};
},
addBuyPipelineMinutesMenuItem() {
return this.data.pipeline_minutes?.show_buy_pipeline_minutes;
},
buyPipelineMinutesItem() {
return {
text: this.$options.i18n.buyPipelineMinutes,
warningText: this.$options.i18n.oneOfGroupsRunningOutOfPipelineMinutes,
href: this.data.pipeline_minutes?.buy_pipeline_minutes_path,
extraAttrs: {
class: 'js-follow-link',
...USER_MENU_TRACKING_DEFAULTS,
'data-track-label': 'buy_pipeline_minutes',
},
};
},
gitlabNextItem() {
return {
text: this.$options.i18n.gitlabNext,
href: this.data.canary_toggle_com_url,
extraAttrs: {
...USER_MENU_TRACKING_DEFAULTS,
'data-track-label': 'switch_to_canary',
},
};
},
feedbackItem() {
return {
text: this.$options.i18n.provideFeedback,
href: this.$options.feedbackUrl,
extraAttrs: {
target: '_blank',
...USER_MENU_TRACKING_DEFAULTS,
'data-track-label': 'provide_nav_feedback',
},
};
},
signOutGroup() {
return {
items: [
{
text: this.$options.i18n.signOut,
href: this.data.sign_out_link,
extraAttrs: {
'data-method': 'post',
'data-qa-selector': 'sign_out_link',
class: 'sign-out-link',
},
},
],
};
},
statusModalData() {
const defaultData = {
'data-current-emoji': '',
'data-current-message': '',
'data-default-emoji': 'speech_balloon',
};
const { busy, customized } = this.data.status;
if (!busy && !customized) {
return defaultData;
}
return {
...defaultData,
'data-current-emoji': this.data.status.emoji,
'data-current-message': this.data.status.message,
'data-current-availability': this.data.status.availability,
'data-current-clear-status-after': this.data.status.clear_after,
};
},
buyPipelineMinutesCalloutData() {
return this.showNotificationDot
? {
'data-feature-id': this.data.pipeline_minutes.callout_attrs.feature_id,
'data-dismiss-endpoint': this.data.pipeline_minutes.callout_attrs.dismiss_endpoint,
}
: {};
},
showNotificationDot() {
return this.data.pipeline_minutes?.show_notification_dot;
},
},
methods: {
onShow() {
this.initBuyCIMinsCallout();
},
closeDropdown() {
this.$refs.userDropdown.close();
},
initBuyCIMinsCallout() {
if (this.showNotificationDot) {
PersistentUserCallout.factory(this.$refs?.buyPipelineMinutesNotificationCallout.$el);
}
},
/* We're not sure this event is tracked by anyone
whether it stays will depend on the outcome of this discussion:
https://gitlab.com/gitlab-org/gitlab/-/issues/402713#note_1343072135 */
trackBuyCIMins() {
if (this.addBuyPipelineMinutesMenuItem) {
const {
'track-action': trackAction,
'track-label': label,
'track-property': property,
} = this.data.pipeline_minutes.tracking_attrs;
this.track(trackAction, { label, property });
}
},
trackSignOut() {
this.track(USER_MENU_TRACKING_DEFAULTS['data-track-action'], {
label: 'user_sign_out',
property: USER_MENU_TRACKING_DEFAULTS['data-track-property'],
});
},
},
popperOptions: {
modifiers: [
{
name: 'offset',
options: {
offset: [DROPDOWN_X_OFFSET, DROPDOWN_Y_OFFSET],
},
},
],
},
};
</script>
<template>
<div>
<gl-disclosure-dropdown
ref="userDropdown"
:popper-options="$options.popperOptions"
data-testid="user-dropdown"
data-qa-selector="user_menu"
@shown="onShow"
>
<template #toggle>
<gl-button category="tertiary" class="user-bar-item btn-with-notification">
<span class="gl-sr-only">{{ toggleText }}</span>
<gl-avatar
:size="24"
:entity-name="data.name"
:src="data.avatar_url"
aria-hidden="true"
data-qa-selector="user_avatar_content"
/>
<span
v-if="showNotificationDot"
class="notification-dot-warning"
data-testid="buy-pipeline-minutes-notification-dot"
v-bind="data.pipeline_minutes.notification_dot_attrs"
>
</span>
</gl-button>
</template>
<user-name-group :user="data" />
<gl-disclosure-dropdown-group bordered>
<gl-disclosure-dropdown-item
v-if="data.status.can_update"
:item="statusItem"
data-testid="status-item"
@action="closeDropdown"
/>
<gl-disclosure-dropdown-item
v-if="showTrialItem"
:item="trialItem"
data-testid="start-trial-item"
>
<template #list-item>
{{ trialItem.text }}
<gl-emoji data-name="rocket" />
</template>
</gl-disclosure-dropdown-item>
<gl-disclosure-dropdown-item :item="editProfileItem" data-testid="edit-profile-item" />
<gl-disclosure-dropdown-item :item="preferencesItem" data-testid="preferences-item" />
<gl-disclosure-dropdown-item
v-if="addBuyPipelineMinutesMenuItem"
ref="buyPipelineMinutesNotificationCallout"
:item="buyPipelineMinutesItem"
v-bind="buyPipelineMinutesCalloutData"
data-testid="buy-pipeline-minutes-item"
@action="trackBuyCIMins"
>
<template #list-item>
<span class="gl-display-flex gl-flex-direction-column">
<span>{{ buyPipelineMinutesItem.text }} <gl-emoji data-name="clock9" /></span>
<span
v-if="data.pipeline_minutes.show_with_subtext"
class="gl-font-sm small gl-pt-2 gl-text-orange-800"
>{{ buyPipelineMinutesItem.warningText }}</span
>
</span>
</template>
</gl-disclosure-dropdown-item>
<gl-disclosure-dropdown-item
v-if="data.gitlab_com_but_not_canary"
:item="gitlabNextItem"
data-testid="gitlab-next-item"
/>
</gl-disclosure-dropdown-group>
<gl-disclosure-dropdown-group bordered>
<template #group-label>
<span class="gl-font-sm">{{ $options.i18n.newNavigation.sectionTitle }}</span>
</template>
<new-nav-toggle :endpoint="toggleNewNavEndpoint" enabled new-navigation />
<gl-disclosure-dropdown-item :item="feedbackItem" data-testid="feedback-item" />
</gl-disclosure-dropdown-group>
<gl-disclosure-dropdown-group
v-if="data.can_sign_out"
bordered
:group="signOutGroup"
data-testid="sign-out-group"
@action="trackSignOut"
/>
</gl-disclosure-dropdown>
<div
v-if="data.status.can_update"
class="js-set-status-modal-wrapper"
v-bind="statusModalData"
></div>
</div>
</template>