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

246 lines
7.4 KiB
Vue
Raw Normal View History

2018-11-08 19:23:39 +05:30
<script>
2020-04-08 14:13:33 +05:30
import { sortBy } from 'lodash';
2019-12-26 22:10:19 +05:30
import { mapState } from 'vuex';
2020-04-08 14:13:33 +05:30
import { GlLabel, GlTooltipDirective } from '@gitlab/ui';
2020-01-01 13:55:28 +05:30
import issueCardInner from 'ee_else_ce/boards/mixins/issue_card_inner';
2018-12-13 13:39:08 +05:30
import { sprintf, __ } from '~/locale';
import Icon from '~/vue_shared/components/icon.vue';
import TooltipOnTruncate from '~/vue_shared/components/tooltip_on_truncate.vue';
import UserAvatarLink from '../../vue_shared/components/user_avatar/user_avatar_link.vue';
import IssueDueDate from './issue_due_date.vue';
import IssueTimeEstimate from './issue_time_estimate.vue';
import boardsStore from '../stores/boards_store';
2019-07-31 22:56:46 +05:30
import { isScopedLabel } from '~/lib/utils/common_utils';
2018-11-08 19:23:39 +05:30
2018-12-13 13:39:08 +05:30
export default {
components: {
2020-04-08 14:13:33 +05:30
GlLabel,
2018-12-13 13:39:08 +05:30
Icon,
UserAvatarLink,
TooltipOnTruncate,
IssueDueDate,
IssueTimeEstimate,
2019-07-31 22:56:46 +05:30
IssueCardWeight: () => import('ee_component/boards/components/issue_card_weight.vue'),
2018-12-13 13:39:08 +05:30
},
directives: {
GlTooltip: GlTooltipDirective,
},
2019-07-31 22:56:46 +05:30
mixins: [issueCardInner],
2018-12-13 13:39:08 +05:30
props: {
issue: {
type: Object,
required: true,
},
issueLinkBase: {
type: String,
required: true,
},
list: {
type: Object,
required: false,
default: () => ({}),
},
rootPath: {
type: String,
required: true,
},
updateFilters: {
type: Boolean,
required: false,
default: false,
},
groupId: {
type: Number,
required: false,
default: null,
},
},
data() {
return {
limitBeforeCounter: 2,
maxRender: 3,
maxCounter: 99,
};
},
computed: {
2019-12-26 22:10:19 +05:30
...mapState(['isShowingLabels']),
2018-12-13 13:39:08 +05:30
numberOverLimit() {
return this.issue.assignees.length - this.limitBeforeCounter;
},
assigneeCounterTooltip() {
const { numberOverLimit, maxCounter } = this;
const count = numberOverLimit > maxCounter ? maxCounter : numberOverLimit;
return sprintf(__('%{count} more assignees'), { count });
},
assigneeCounterLabel() {
if (this.numberOverLimit > this.maxCounter) {
return `${this.maxCounter}+`;
}
2018-11-08 19:23:39 +05:30
2018-12-13 13:39:08 +05:30
return `+${this.numberOverLimit}`;
2018-11-08 19:23:39 +05:30
},
2018-12-13 13:39:08 +05:30
shouldRenderCounter() {
if (this.issue.assignees.length <= this.maxRender) {
return false;
}
2018-11-08 19:23:39 +05:30
2018-12-13 13:39:08 +05:30
return this.issue.assignees.length > this.numberOverLimit;
},
issueId() {
if (this.issue.iid) {
return `#${this.issue.iid}`;
}
return false;
},
showLabelFooter() {
2019-12-26 22:10:19 +05:30
return this.isShowingLabels && this.issue.labels.find(this.showLabel);
2018-12-13 13:39:08 +05:30
},
issueReferencePath() {
const { referencePath, groupId } = this.issue;
return !groupId ? referencePath.split('#')[0] : null;
},
2019-07-07 11:18:12 +05:30
orderedLabels() {
2020-04-08 14:13:33 +05:30
return sortBy(this.issue.labels.filter(this.isNonListLabel), 'title');
2019-07-07 11:18:12 +05:30
},
2019-07-31 22:56:46 +05:30
helpLink() {
return boardsStore.scopedLabels.helpLink;
},
2018-12-13 13:39:08 +05:30
},
methods: {
isIndexLessThanlimit(index) {
return index < this.limitBeforeCounter;
},
shouldRenderAssignee(index) {
// Eg. maxRender is 4,
// Render up to all 4 assignees if there are only 4 assigness
// Otherwise render up to the limitBeforeCounter
if (this.issue.assignees.length <= this.maxRender) {
return index < this.maxRender;
}
2018-11-08 19:23:39 +05:30
2018-12-13 13:39:08 +05:30
return index < this.limitBeforeCounter;
},
assigneeUrl(assignee) {
if (!assignee) return '';
return `${this.rootPath}${assignee.username}`;
},
avatarUrlTitle(assignee) {
2019-09-30 21:07:59 +05:30
return sprintf(__(`Avatar for %{assigneeName}`), { assigneeName: assignee.name });
2018-12-13 13:39:08 +05:30
},
showLabel(label) {
if (!label.id) return false;
return true;
},
2019-12-21 20:55:43 +05:30
isNonListLabel(label) {
return label.id && !(this.list.type === 'label' && this.list.title === label.title);
},
2018-12-13 13:39:08 +05:30
filterByLabel(label) {
if (!this.updateFilters) return;
const labelTitle = encodeURIComponent(label.title);
const filter = `label_name[]=${labelTitle}`;
2019-09-04 21:01:54 +05:30
boardsStore.toggleFilter(filter);
2018-12-13 13:39:08 +05:30
},
2019-07-31 22:56:46 +05:30
showScopedLabel(label) {
return boardsStore.scopedLabels.enabled && isScopedLabel(label);
},
2018-12-13 13:39:08 +05:30
},
};
2018-11-08 19:23:39 +05:30
</script>
<template>
<div>
2019-07-31 22:56:46 +05:30
<div class="d-flex board-card-header" dir="auto">
2018-12-13 13:39:08 +05:30
<h4 class="board-card-title append-bottom-0 prepend-top-0">
2020-03-13 15:44:24 +05:30
<icon
v-if="issue.blocked"
v-gl-tooltip
name="issue-block"
:title="__('Blocked issue')"
class="issue-blocked-icon append-right-4"
:aria-label="__('Blocked issue')"
/>
2018-12-13 13:39:08 +05:30
<icon
2018-11-08 19:23:39 +05:30
v-if="issue.confidential"
2018-12-13 13:39:08 +05:30
v-gl-tooltip
name="eye-slash"
:title="__('Confidential')"
class="confidential-icon append-right-4"
:aria-label="__('Confidential')"
2019-09-30 21:07:59 +05:30
/>
2020-04-08 14:13:33 +05:30
<a :href="issue.path" :title="issue.title" class="js-no-trigger" @mousemove.stop>{{
issue.title
}}</a>
2018-12-13 13:39:08 +05:30
</h4>
</div>
2019-02-15 15:39:39 +05:30
<div v-if="showLabelFooter" class="board-card-labels prepend-top-4 d-flex flex-wrap">
2019-12-21 20:55:43 +05:30
<template v-for="label in orderedLabels">
2020-04-08 14:13:33 +05:30
<gl-label
2019-07-31 22:56:46 +05:30
:key="label.id"
2020-04-08 14:13:33 +05:30
:background-color="label.color"
:title="label.title"
:description="label.description"
size="sm"
:scoped="showScopedLabel(label)"
2019-07-31 22:56:46 +05:30
:scoped-labels-documentation-link="helpLink"
@click="filterByLabel(label)"
2020-04-08 14:13:33 +05:30
/>
2019-07-31 22:56:46 +05:30
</template>
2018-12-13 13:39:08 +05:30
</div>
<div class="board-card-footer d-flex justify-content-between align-items-end">
2019-02-15 15:39:39 +05:30
<div
2019-07-31 22:56:46 +05:30
class="d-flex align-items-start flex-wrap-reverse board-card-number-container overflow-hidden js-board-card-number-container"
2019-02-15 15:39:39 +05:30
>
2018-11-08 19:23:39 +05:30
<span
2018-12-13 13:39:08 +05:30
v-if="issue.referencePath"
2019-07-31 22:56:46 +05:30
class="board-card-number overflow-hidden d-flex append-right-8 prepend-top-8"
2018-11-08 19:23:39 +05:30
>
2018-12-13 13:39:08 +05:30
<tooltip-on-truncate
v-if="issueReferencePath"
:title="issueReferencePath"
placement="bottom"
class="board-issue-path block-truncated bold"
2019-02-15 15:39:39 +05:30
>{{ issueReferencePath }}</tooltip-on-truncate
2019-09-30 21:07:59 +05:30
>
#{{ issue.iid }}
2018-11-08 19:23:39 +05:30
</span>
2018-12-13 13:39:08 +05:30
<span class="board-info-items prepend-top-8 d-inline-block">
2020-04-08 14:13:33 +05:30
<issue-due-date v-if="issue.dueDate" :date="issue.dueDate" :closed="issue.closed" />
2019-09-30 21:07:59 +05:30
<issue-time-estimate v-if="issue.timeEstimate" :estimate="issue.timeEstimate" />
<issue-card-weight
2019-12-21 20:55:43 +05:30
v-if="validIssueWeight"
2019-07-31 22:56:46 +05:30
:weight="issue.weight"
@click="filterByWeight(issue.weight)"
2018-12-13 13:39:08 +05:30
/>
</span>
</div>
2019-07-31 22:56:46 +05:30
<div class="board-card-assignee d-flex">
2018-11-08 19:23:39 +05:30
<user-avatar-link
v-for="(assignee, index) in issue.assignees"
v-if="shouldRenderAssignee(index)"
:key="assignee.id"
:link-href="assigneeUrl(assignee)"
:img-alt="avatarUrlTitle(assignee)"
2020-03-13 15:44:24 +05:30
:img-src="assignee.avatar || assignee.avatar_url"
2018-12-13 13:39:08 +05:30
:img-size="24"
2018-11-08 19:23:39 +05:30
class="js-no-trigger"
tooltip-placement="bottom"
2018-12-13 13:39:08 +05:30
>
<span class="js-assignee-tooltip">
2019-09-30 21:07:59 +05:30
<span class="bold d-block">{{ __('Assignee') }}</span>
{{ assignee.name }}
2018-12-13 13:39:08 +05:30
<span class="text-white-50">@{{ assignee.username }}</span>
</span>
</user-avatar-link>
2018-11-08 19:23:39 +05:30
<span
v-if="shouldRenderCounter"
2018-12-13 13:39:08 +05:30
v-gl-tooltip
2018-11-08 19:23:39 +05:30
:title="assigneeCounterTooltip"
class="avatar-counter"
2018-12-13 13:39:08 +05:30
data-placement="bottom"
2019-09-30 21:07:59 +05:30
>{{ assigneeCounterLabel }}</span
2018-11-08 19:23:39 +05:30
>
</div>
</div>
</div>
</template>