debian-mirror-gitlab/app/assets/javascripts/sidebar/components/sidebar_dropdown_widget.vue
2023-01-13 15:02:22 +05:30

350 lines
10 KiB
Vue

<script>
import { GlButton, GlIcon, GlLink, GlPopover, GlTooltipDirective } from '@gitlab/ui';
import { kebabCase, snakeCase } from 'lodash';
import { createAlert } from '~/flash';
import { getIdFromGraphQLId } from '~/graphql_shared/utils';
import { IssuableType } from '~/issues/constants';
import { timeFor } from '~/lib/utils/datetime_utility';
import { __ } from '~/locale';
import SidebarEditableItem from '~/sidebar/components/sidebar_editable_item.vue';
import glFeatureFlagMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import {
dropdowni18nText,
LocalizedIssuableAttributeType,
IssuableAttributeTypeKeyMap,
issuableAttributesQueries,
IssuableAttributeType,
Tracking,
} from 'ee_else_ce/sidebar/constants';
import SidebarDropdown from './sidebar_dropdown.vue';
export default {
i18n: {
expired: __('(expired)'),
none: __('None'),
},
directives: {
GlTooltip: GlTooltipDirective,
},
components: {
GlLink,
GlIcon,
GlPopover,
GlButton,
SidebarDropdown,
SidebarEditableItem,
},
mixins: [glFeatureFlagMixin()],
inject: {
isClassicSidebar: {
default: false,
},
issuableAttributesQueries: {
default: issuableAttributesQueries,
},
widgetTitleText: {
default: {
[IssuableAttributeType.Milestone]: __('Milestone'),
expired: __('(expired)'),
none: __('None'),
},
},
},
props: {
issuableAttribute: {
type: String,
required: true,
},
workspacePath: {
required: true,
type: String,
},
iid: {
required: true,
type: String,
},
attrWorkspacePath: {
required: true,
type: String,
},
issuableType: {
type: String,
required: true,
validator(value) {
return [IssuableType.Issue, IssuableType.MergeRequest].includes(value);
},
},
icon: {
type: String,
required: false,
default: undefined,
},
},
apollo: {
currentAttribute: {
query() {
const { current } = this.issuableAttributeQuery;
const { query } = current[this.issuableType];
return query;
},
variables() {
return {
fullPath: this.workspacePath,
iid: this.iid,
};
},
update(data) {
if (this.glFeatures?.epicWidgetEditConfirmation && this.isEpic) {
this.hasCurrentAttribute = data?.workspace?.issuable.hasEpic;
}
return data?.workspace?.issuable.attribute;
},
error(error) {
createAlert({
message: this.i18n.currentFetchError,
captureError: true,
error,
});
},
},
},
data() {
return {
updating: false,
selectedTitle: null,
currentAttribute: null,
hasCurrentAttribute: false,
editConfirmation: false,
tracking: {
event: Tracking.editEvent,
label: Tracking.rightSidebarLabel,
property: this.issuableAttribute,
},
};
},
computed: {
issuableAttributeQuery() {
return this.issuableAttributesQueries[this.issuableAttribute];
},
attributeTitle() {
return this.currentAttribute?.title || this.i18n.noAttribute;
},
attributeUrl() {
return this.currentAttribute?.webUrl;
},
loading() {
return this.$apollo.queries.currentAttribute.loading;
},
attributeTypeTitle() {
return this.widgetTitleText[this.issuableAttribute];
},
attributeTypeIcon() {
return this.icon || this.issuableAttribute;
},
tooltipText() {
return timeFor(this.currentAttribute?.dueDate);
},
i18n() {
const localizedAttribute =
LocalizedIssuableAttributeType[IssuableAttributeTypeKeyMap[this.issuableAttribute]];
return dropdowni18nText(localizedAttribute, this.issuableType);
},
isEpic() {
// MV to EE https://gitlab.com/gitlab-org/gitlab/-/issues/345311
return this.issuableAttribute === IssuableType.Epic;
},
formatIssuableAttribute() {
return {
kebab: kebabCase(this.issuableAttribute),
snake: snakeCase(this.issuableAttribute),
};
},
shouldShowConfirmationPopover() {
if (!this.glFeatures?.epicWidgetEditConfirmation) {
return false;
}
return this.isEpic && this.currentAttribute === null && this.hasCurrentAttribute
? !this.editConfirmation
: false;
},
},
methods: {
updateAttribute({ id }) {
if (this.currentAttribute === null && id === null) return;
if (id === this.currentAttribute?.id) return;
this.updating = true;
const { current } = this.issuableAttributeQuery;
const { mutation } = current[this.issuableType];
this.$apollo
.mutate({
mutation,
variables: {
fullPath: this.workspacePath,
attributeId:
this.issuableAttribute === IssuableAttributeType.Milestone &&
this.issuableType === IssuableType.Issue
? getIdFromGraphQLId(id)
: id,
iid: this.iid,
},
})
.then(({ data }) => {
if (data.issuableSetAttribute?.errors?.length) {
createAlert({
message: data.issuableSetAttribute.errors[0],
captureError: true,
error: data.issuableSetAttribute.errors[0],
});
} else {
this.$emit('attribute-updated', data);
}
})
.catch((error) => {
createAlert({ message: this.i18n.updateError, captureError: true, error });
})
.finally(() => {
this.updating = false;
this.selectedTitle = null;
});
},
isAttributeOverdue(attribute) {
return this.issuableAttribute === IssuableAttributeType.Milestone
? attribute?.expired
: false;
},
showDropdown() {
this.$refs.dropdown.show();
},
handlePopoverClose() {
this.$refs.popover.$emit('close');
},
handlePopoverConfirm(cb) {
this.editConfirmation = true;
this.handlePopoverClose();
setTimeout(cb, 0);
},
handleEditConfirmation() {
this.$refs.popover.$emit('open');
},
},
};
</script>
<template>
<sidebar-editable-item
ref="editable"
:title="attributeTypeTitle"
:data-testid="`${formatIssuableAttribute.kebab}-edit`"
:button-id="`${formatIssuableAttribute.kebab}-edit`"
:tracking="tracking"
:should-show-confirmation-popover="shouldShowConfirmationPopover"
:loading="updating || loading"
@open="showDropdown"
@edit-confirm="handleEditConfirmation"
>
<template #collapsed>
<slot name="value-collapsed" :current-attribute="currentAttribute">
<div
v-if="isClassicSidebar"
v-gl-tooltip.left.viewport
:title="attributeTypeTitle"
class="sidebar-collapsed-icon"
>
<gl-icon :aria-label="attributeTypeTitle" :name="attributeTypeIcon" />
<span class="collapse-truncated-title gl-pt-2 gl-px-3 gl-font-sm">
{{ attributeTitle }}
</span>
</div>
</slot>
<div
:data-testid="`select-${formatIssuableAttribute.kebab}`"
:class="isClassicSidebar ? 'hide-collapsed' : 'gl-mt-3'"
>
<span v-if="updating">{{ selectedTitle }}</span>
<template v-else-if="!currentAttribute && hasCurrentAttribute">
<gl-icon name="warning" class="gl-text-orange-500" />
<span class="gl-text-gray-500">{{ i18n.noPermissionToView }}</span>
</template>
<span v-else-if="!currentAttribute" class="gl-text-gray-500">
{{ $options.i18n.none }}
</span>
<slot
v-else
name="value"
:attribute-title="attributeTitle"
:attribute-url="attributeUrl"
:current-attribute="currentAttribute"
>
<gl-link
v-gl-tooltip="tooltipText"
class="gl-reset-color gl-hover-text-blue-800"
:href="attributeUrl"
:data-qa-selector="`${formatIssuableAttribute.snake}_link`"
>
{{ attributeTitle }}
<span v-if="isAttributeOverdue(currentAttribute)">{{ $options.i18n.expired }}</span>
</gl-link>
</slot>
</div>
</template>
<template v-if="shouldShowConfirmationPopover" #default="{ toggle }">
<gl-popover
ref="popover"
:target="`${formatIssuableAttribute.kebab}-edit`"
placement="bottomleft"
boundary="viewport"
triggers="click"
>
<div class="gl-mb-4 gl-font-base">
{{ i18n.editConfirmation }}
</div>
<div class="gl-display-flex gl-align-items-center">
<gl-button
size="small"
variant="confirm"
category="primary"
data-testid="confirm-edit-cta"
@click.prevent="() => handlePopoverConfirm(toggle)"
>{{ i18n.editConfirmationCta }}</gl-button
>
<gl-button
class="gl-ml-auto"
size="small"
name="cancel"
variant="default"
category="primary"
data-testid="confirm-edit-cancel"
@click.prevent="handlePopoverClose"
>{{ i18n.editConfirmationCancel }}</gl-button
>
</div>
</gl-popover>
</template>
<template v-else #default>
<sidebar-dropdown
ref="dropdown"
:attr-workspace-path="attrWorkspacePath"
:current-attribute="currentAttribute"
:issuable-attribute="issuableAttribute"
:issuable-type="issuableType"
@change="updateAttribute"
>
<template #list="{ attributesList, isAttributeChecked, updateAttribute: update }">
<slot
name="list"
:attributes-list="attributesList"
:is-attribute-checked="isAttributeChecked"
:update-attribute="update"
>
</slot>
</template>
</sidebar-dropdown>
</template>
</sidebar-editable-item>
</template>