debian-mirror-gitlab/app/assets/javascripts/boards/components/board_content_sidebar.vue

253 lines
8.7 KiB
Vue
Raw Normal View History

2021-04-29 21:17:54 +05:30
<script>
import { GlDrawer } from '@gitlab/ui';
2021-09-30 23:02:18 +05:30
import { MountingPortal } from 'portal-vue';
2021-04-29 21:17:54 +05:30
import { mapState, mapActions, mapGetters } from 'vuex';
2021-09-04 01:27:46 +05:30
import SidebarDropdownWidget from 'ee_else_ce/sidebar/components/sidebar_dropdown_widget.vue';
2021-11-18 22:05:49 +05:30
import { __, sprintf } from '~/locale';
2021-04-29 21:17:54 +05:30
import BoardSidebarTimeTracker from '~/boards/components/sidebar/board_sidebar_time_tracker.vue';
import BoardSidebarTitle from '~/boards/components/sidebar/board_sidebar_title.vue';
import { ISSUABLE } from '~/boards/constants';
2021-11-18 22:05:49 +05:30
import { getIdFromGraphQLId } from '~/graphql_shared/utils';
2021-04-29 21:17:54 +05:30
import SidebarAssigneesWidget from '~/sidebar/components/assignees/sidebar_assignees_widget.vue';
2021-06-08 01:23:25 +05:30
import SidebarConfidentialityWidget from '~/sidebar/components/confidential/sidebar_confidentiality_widget.vue';
2021-09-04 01:27:46 +05:30
import SidebarDateWidget from '~/sidebar/components/date/sidebar_date_widget.vue';
2021-06-08 01:23:25 +05:30
import SidebarSubscriptionsWidget from '~/sidebar/components/subscriptions/sidebar_subscriptions_widget.vue';
2021-09-30 23:02:18 +05:30
import SidebarTodoWidget from '~/sidebar/components/todo_toggle/sidebar_todo_widget.vue';
2021-11-18 22:05:49 +05:30
import SidebarLabelsWidget from '~/vue_shared/components/sidebar/labels_select_widget/labels_select_root.vue';
2021-12-11 22:18:48 +05:30
import { LabelType } from '~/vue_shared/components/sidebar/labels_select_widget/constants';
2021-09-04 01:27:46 +05:30
import glFeatureFlagMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
2021-04-29 21:17:54 +05:30
export default {
components: {
GlDrawer,
BoardSidebarTitle,
SidebarAssigneesWidget,
2021-09-04 01:27:46 +05:30
SidebarDateWidget,
2021-06-08 01:23:25 +05:30
SidebarConfidentialityWidget,
2021-04-29 21:17:54 +05:30
BoardSidebarTimeTracker,
2021-11-18 22:05:49 +05:30
SidebarLabelsWidget,
2021-06-08 01:23:25 +05:30
SidebarSubscriptionsWidget,
2021-09-04 01:27:46 +05:30
SidebarDropdownWidget,
2021-09-30 23:02:18 +05:30
SidebarTodoWidget,
MountingPortal,
SidebarWeightWidget: () =>
import('ee_component/sidebar/components/weight/sidebar_weight_widget.vue'),
2021-09-04 01:27:46 +05:30
IterationSidebarDropdownWidget: () =>
import('ee_component/sidebar/components/iteration_sidebar_dropdown_widget.vue'),
2021-04-29 21:17:54 +05:30
},
2021-09-04 01:27:46 +05:30
mixins: [glFeatureFlagMixin()],
2021-06-08 01:23:25 +05:30
inject: {
multipleAssigneesFeatureAvailable: {
default: false,
},
epicFeatureAvailable: {
default: false,
},
iterationFeatureAvailable: {
default: false,
},
weightFeatureAvailable: {
default: false,
},
2021-11-18 22:05:49 +05:30
allowLabelEdit: {
default: false,
},
2021-12-11 22:18:48 +05:30
labelsFilterBasePath: {
default: '',
},
2021-06-08 01:23:25 +05:30
},
2021-09-30 23:02:18 +05:30
inheritAttrs: false,
2021-04-29 21:17:54 +05:30
computed: {
...mapGetters([
2021-11-18 22:05:49 +05:30
'isGroupBoard',
2021-04-29 21:17:54 +05:30
'isSidebarOpen',
'activeBoardItem',
'groupPathForActiveIssue',
'projectPathForActiveIssue',
]),
2021-12-11 22:18:48 +05:30
...mapState(['sidebarType', 'issuableType']),
2021-04-29 21:17:54 +05:30
isIssuableSidebar() {
return this.sidebarType === ISSUABLE;
},
showSidebar() {
return this.isIssuableSidebar && this.isSidebarOpen;
},
fullPath() {
return this.activeBoardItem?.referencePath?.split('#')[0] || '';
},
2021-11-18 22:05:49 +05:30
createLabelTitle() {
return sprintf(__('Create %{workspace} label'), {
workspace: this.isGroupBoard ? 'group' : 'project',
});
},
manageLabelTitle() {
return sprintf(__('Manage %{workspace} labels'), {
workspace: this.isGroupBoard ? 'group' : 'project',
});
},
attrWorkspacePath() {
2021-12-11 22:18:48 +05:30
return this.isGroupBoard ? this.groupPathForActiveIssue : this.projectPathForActiveIssue;
},
labelType() {
return this.isGroupBoard ? LabelType.group : LabelType.project;
},
labelsFilterPath() {
return this.isGroupBoard
? this.labelsFilterBasePath.replace(':project_path', this.projectPathForActiveIssue)
: this.labelsFilterBasePath;
2021-11-18 22:05:49 +05:30
},
2021-04-29 21:17:54 +05:30
},
methods: {
2021-09-30 23:02:18 +05:30
...mapActions([
'toggleBoardItem',
'setAssignees',
'setActiveItemConfidential',
2021-11-18 22:05:49 +05:30
'setActiveBoardItemLabels',
2021-09-30 23:02:18 +05:30
'setActiveItemWeight',
]),
2021-04-29 21:17:54 +05:30
handleClose() {
this.toggleBoardItem({ boardItem: this.activeBoardItem, sidebarType: this.sidebarType });
},
2021-12-11 22:18:48 +05:30
handleUpdateSelectedLabels({ labels, id }) {
2021-11-18 22:05:49 +05:30
this.setActiveBoardItemLabels({
2021-12-11 22:18:48 +05:30
id,
2021-11-18 22:05:49 +05:30
projectPath: this.projectPathForActiveIssue,
2021-12-11 22:18:48 +05:30
labelIds: labels.map((label) => getIdFromGraphQLId(label.id)),
labels,
2021-11-18 22:05:49 +05:30
});
},
2021-12-11 22:18:48 +05:30
handleLabelRemove(removeLabelId) {
2021-11-18 22:05:49 +05:30
this.setActiveBoardItemLabels({
iid: this.activeBoardItem.iid,
projectPath: this.projectPathForActiveIssue,
2021-12-11 22:18:48 +05:30
removeLabelIds: [removeLabelId],
2021-11-18 22:05:49 +05:30
});
},
2021-04-29 21:17:54 +05:30
},
};
</script>
<template>
2021-09-30 23:02:18 +05:30
<mounting-portal mount-to="#js-right-sidebar-portal" name="board-content-sidebar" append>
<gl-drawer
v-if="showSidebar"
v-bind="$attrs"
:open="isSidebarOpen"
class="boards-sidebar gl-absolute"
2021-10-27 15:23:28 +05:30
variant="sidebar"
2021-09-30 23:02:18 +05:30
@close="handleClose"
>
<template #title>
<h2 class="gl-my-0 gl-font-size-h2 gl-line-height-24">{{ __('Issue details') }}</h2>
</template>
<template #header>
<sidebar-todo-widget
class="gl-mt-3"
2021-11-11 11:23:49 +05:30
:issuable-id="activeBoardItem.id"
2021-09-30 23:02:18 +05:30
:issuable-iid="activeBoardItem.iid"
:full-path="fullPath"
:issuable-type="issuableType"
/>
</template>
<template #default>
<board-sidebar-title />
<sidebar-assignees-widget
:iid="activeBoardItem.iid"
:full-path="fullPath"
:initial-assignees="activeBoardItem.assignees"
:allow-multiple-assignees="multipleAssigneesFeatureAvailable"
@assignees-updated="setAssignees"
/>
2021-09-04 01:27:46 +05:30
<sidebar-dropdown-widget
2021-09-30 23:02:18 +05:30
v-if="epicFeatureAvailable"
2021-04-29 21:17:54 +05:30
:iid="activeBoardItem.iid"
2021-09-30 23:02:18 +05:30
issuable-attribute="epic"
2021-04-29 21:17:54 +05:30
:workspace-path="projectPathForActiveIssue"
2021-09-30 23:02:18 +05:30
:attr-workspace-path="groupPathForActiveIssue"
2021-04-29 21:17:54 +05:30
:issuable-type="issuableType"
2021-09-30 23:02:18 +05:30
data-testid="sidebar-epic"
2021-04-29 21:17:54 +05:30
/>
2021-09-30 23:02:18 +05:30
<div>
2021-09-04 01:27:46 +05:30
<sidebar-dropdown-widget
:iid="activeBoardItem.iid"
2021-09-30 23:02:18 +05:30
issuable-attribute="milestone"
2021-09-04 01:27:46 +05:30
:workspace-path="projectPathForActiveIssue"
2021-09-30 23:02:18 +05:30
:attr-workspace-path="projectPathForActiveIssue"
2021-09-04 01:27:46 +05:30
:issuable-type="issuableType"
2021-09-30 23:02:18 +05:30
data-testid="sidebar-milestones"
2021-09-04 01:27:46 +05:30
/>
2021-09-30 23:02:18 +05:30
<template v-if="!glFeatures.iterationCadences">
<sidebar-dropdown-widget
v-if="iterationFeatureAvailable"
:iid="activeBoardItem.iid"
issuable-attribute="iteration"
:workspace-path="projectPathForActiveIssue"
:attr-workspace-path="groupPathForActiveIssue"
:issuable-type="issuableType"
class="gl-mt-5"
data-testid="iteration-edit"
/>
</template>
<template v-else>
<iteration-sidebar-dropdown-widget
v-if="iterationFeatureAvailable"
:iid="activeBoardItem.iid"
:workspace-path="projectPathForActiveIssue"
:attr-workspace-path="groupPathForActiveIssue"
:issuable-type="issuableType"
class="gl-mt-5"
data-testid="iteration-edit"
/>
</template>
</div>
<board-sidebar-time-tracker class="swimlanes-sidebar-time-tracker" />
<sidebar-date-widget
:iid="activeBoardItem.iid"
:full-path="fullPath"
:issuable-type="issuableType"
data-testid="sidebar-due-date"
/>
2021-11-18 22:05:49 +05:30
<sidebar-labels-widget
class="block labels"
data-testid="sidebar-labels"
:iid="activeBoardItem.iid"
:full-path="projectPathForActiveIssue"
:allow-label-remove="allowLabelEdit"
:allow-multiselect="true"
:footer-create-label-title="createLabelTitle"
:footer-manage-label-title="manageLabelTitle"
:labels-create-title="createLabelTitle"
2021-12-11 22:18:48 +05:30
:labels-filter-base-path="labelsFilterPath"
2021-11-18 22:05:49 +05:30
:attr-workspace-path="attrWorkspacePath"
2021-12-11 22:18:48 +05:30
workspace-type="project"
2021-11-18 22:05:49 +05:30
:issuable-type="issuableType"
2021-12-11 22:18:48 +05:30
:label-create-type="labelType"
2021-11-18 22:05:49 +05:30
@onLabelRemove="handleLabelRemove"
@updateSelectedLabels="handleUpdateSelectedLabels"
>
{{ __('None') }}
</sidebar-labels-widget>
2021-09-30 23:02:18 +05:30
<sidebar-weight-widget
v-if="weightFeatureAvailable"
:iid="activeBoardItem.iid"
:full-path="fullPath"
:issuable-type="issuableType"
@weightUpdated="setActiveItemWeight($event)"
/>
<sidebar-confidentiality-widget
:iid="activeBoardItem.iid"
:full-path="fullPath"
:issuable-type="issuableType"
@confidentialityUpdated="setActiveItemConfidential($event)"
/>
<sidebar-subscriptions-widget
:iid="activeBoardItem.iid"
:full-path="fullPath"
:issuable-type="issuableType"
data-testid="sidebar-notifications"
/>
</template>
</gl-drawer>
</mounting-portal>
2021-04-29 21:17:54 +05:30
</template>