debian-mirror-gitlab/app/assets/javascripts/issuable/components/related_issuable_item.vue

202 lines
6.3 KiB
Vue
Raw Normal View History

2019-07-07 11:18:12 +05:30
<script>
2019-07-31 22:56:46 +05:30
import '~/commons/bootstrap';
2021-11-18 22:05:49 +05:30
import {
GlIcon,
GlTooltip,
GlTooltipDirective,
GlButton,
GlSafeHtmlDirective as SafeHtml,
} from '@gitlab/ui';
2020-10-24 23:57:45 +05:30
import IssueDueDate from '~/boards/components/issue_due_date.vue';
2021-03-11 19:13:27 +05:30
import { sprintf } from '~/locale';
2022-01-26 12:08:38 +05:30
import CiIcon from '~/vue_shared/components/ci_icon.vue';
import relatedIssuableMixin from '../mixins/related_issuable_mixin';
2021-03-11 19:13:27 +05:30
import IssueAssignees from './issue_assignees.vue';
import IssueMilestone from './issue_milestone.vue';
2019-07-07 11:18:12 +05:30
export default {
name: 'IssueItem',
components: {
IssueMilestone,
IssueAssignees,
CiIcon,
2020-05-24 23:13:21 +05:30
GlIcon,
2019-09-30 21:07:59 +05:30
GlTooltip,
2020-10-24 23:57:45 +05:30
IssueWeight: () => import('ee_component/boards/components/issue_card_weight.vue'),
IssueDueDate,
2020-11-24 15:15:51 +05:30
GlButton,
2019-07-07 11:18:12 +05:30
},
directives: {
GlTooltip: GlTooltipDirective,
2021-11-18 22:05:49 +05:30
SafeHtml,
2019-07-07 11:18:12 +05:30
},
mixins: [relatedIssuableMixin],
props: {
canReorder: {
type: Boolean,
required: false,
default: false,
},
2020-11-24 15:15:51 +05:30
isLocked: {
type: Boolean,
required: false,
default: false,
},
lockedMessage: {
type: String,
required: false,
default: '',
},
2019-07-07 11:18:12 +05:30
},
computed: {
stateTitle() {
return sprintf(
'<span class="bold">%{state}</span> %{timeInWords}<br/><span class="text-tertiary">%{timestamp}</span>',
{
state: this.stateText,
timeInWords: this.stateTimeInWords,
timestamp: this.stateTimestamp,
},
);
},
2020-05-24 23:13:21 +05:30
iconClasses() {
return `${this.iconClass} ic-${this.iconName}`;
},
2019-07-07 11:18:12 +05:30
},
};
</script>
<template>
<div
:class="{
'issuable-info-container': !canReorder,
'card-body': canReorder,
}"
2020-05-24 23:13:21 +05:30
class="item-body d-flex align-items-center py-2 px-3"
2019-07-07 11:18:12 +05:30
>
2020-10-24 23:57:45 +05:30
<div
class="item-contents gl-display-flex gl-align-items-center gl-flex-wrap gl-flex-grow-1 flex-xl-nowrap gl-min-h-7"
>
2019-09-30 21:07:59 +05:30
<!-- Title area: Status icon (XL) and title -->
2021-11-11 11:23:49 +05:30
<div class="item-title d-flex align-items-xl-center mb-xl-0 gl-min-w-0">
2020-05-24 23:13:21 +05:30
<div ref="iconElementXL">
<gl-icon
2019-09-30 21:07:59 +05:30
v-if="hasState"
ref="iconElementXL"
2020-05-24 23:13:21 +05:30
class="mr-2 d-block"
:class="iconClasses"
2019-09-30 21:07:59 +05:30
:name="iconName"
:title="stateTitle"
:aria-label="state"
/>
2020-05-24 23:13:21 +05:30
</div>
2019-09-30 21:07:59 +05:30
<gl-tooltip :target="() => $refs.iconElementXL">
2021-11-18 22:05:49 +05:30
<span v-safe-html="stateTitle"></span>
2019-09-30 21:07:59 +05:30
</gl-tooltip>
2020-05-24 23:13:21 +05:30
<gl-icon
2019-07-07 11:18:12 +05:30
v-if="confidential"
v-gl-tooltip
name="eye-slash"
:title="__('Confidential')"
2020-07-28 23:09:34 +05:30
class="confidential-icon gl-mr-2 align-self-baseline align-self-md-auto mt-xl-0"
2019-07-07 11:18:12 +05:30
:aria-label="__('Confidential')"
/>
2020-06-23 00:09:42 +05:30
<a :href="computedPath" class="sortable-link gl-font-weight-normal">{{ title }}</a>
2019-07-07 11:18:12 +05:30
</div>
2019-09-30 21:07:59 +05:30
<!-- Info area: meta, path, and assignees -->
<div class="item-info-area d-flex flex-xl-grow-1 flex-shrink-0">
<!-- Meta area: path and attributes -->
<!-- If there is no room beside the path, meta attributes are put ABOVE it (flex-wrap-reverse). -->
<!-- See design: https://gitlab-org.gitlab.io/gitlab-design/hosted/pedro/%2383-issue-mr-rows-cards-spec-previews/#artboard16 -->
2019-07-31 22:56:46 +05:30
<div
2019-09-30 21:07:59 +05:30
class="item-meta d-flex flex-wrap-reverse justify-content-start justify-content-md-between"
2019-07-31 22:56:46 +05:30
>
2019-09-30 21:07:59 +05:30
<!-- Path area: status icon (<XL), path, issue # -->
<div
class="item-path-area item-path-id d-flex align-items-center mr-2 mt-2 mt-xl-0 ml-xl-2"
>
<gl-tooltip :target="() => this.$refs.iconElement">
2021-11-18 22:05:49 +05:30
<span v-safe-html="stateTitle"></span>
2019-09-30 21:07:59 +05:30
</gl-tooltip>
<span v-gl-tooltip :title="itemPath" class="path-id-text d-inline-block">{{
itemPath
}}</span>
<span>{{ pathIdSeparator }}{{ itemId }}</span>
</div>
<!-- Attributes area: CI, epic count, weight, milestone -->
<!-- They have a different order on large screen sizes -->
<div class="item-attributes-area d-flex align-items-center mt-2 mt-xl-0">
<span v-if="hasPipeline" class="mr-ci-status order-md-last">
<a :href="pipelineStatus.details_path">
<ci-icon v-gl-tooltip :status="pipelineStatus" :title="pipelineStatusTooltip" />
</a>
</span>
<issue-milestone
v-if="hasMilestone"
:milestone="milestone"
class="d-flex align-items-center item-milestone order-md-first ml-md-0"
/>
<!-- Flex order for slots is defined in the parent component: e.g. related_issues_block.vue -->
2020-10-24 23:57:45 +05:30
<span v-if="weight > 0" class="order-md-1">
<issue-weight
:weight="weight"
class="item-weight gl-display-flex gl-align-items-center"
tag-name="span"
/>
</span>
<span v-if="dueDate" class="order-md-1">
<issue-due-date
:date="dueDate"
2021-06-08 01:23:25 +05:30
:closed="Boolean(closedAt)"
2020-10-24 23:57:45 +05:30
tooltip-placement="top"
css-class="item-due-date gl-display-flex gl-align-items-center"
/>
</span>
2019-09-30 21:07:59 +05:30
<issue-assignees
v-if="hasAssignees"
:assignees="assignees"
class="item-assignees align-items-center align-self-end flex-shrink-0 order-md-2 d-none d-md-flex"
/>
</div>
2019-07-07 11:18:12 +05:30
</div>
2019-09-30 21:07:59 +05:30
<!-- Assignees. On small layouts, these are put here, at the end of the card. -->
2019-07-07 11:18:12 +05:30
<issue-assignees
2019-09-30 21:07:59 +05:30
v-if="assignees.length !== 0"
2019-07-07 11:18:12 +05:30
:assignees="assignees"
2019-09-30 21:07:59 +05:30
class="item-assignees d-flex align-items-center align-self-end flex-shrink-0 d-md-none ml-2"
2019-07-07 11:18:12 +05:30
/>
</div>
</div>
2019-09-30 21:07:59 +05:30
2020-11-24 15:15:51 +05:30
<span
v-if="isLocked"
ref="lockIcon"
v-gl-tooltip
class="gl-px-3 gl-display-inline-block gl-cursor-not-allowed"
:title="lockedMessage"
>
<gl-icon name="lock" />
</span>
<gl-button
v-else-if="canRemove"
2019-07-07 11:18:12 +05:30
ref="removeButton"
2019-09-30 21:07:59 +05:30
v-gl-tooltip
2020-11-24 15:15:51 +05:30
icon="close"
category="tertiary"
2019-07-07 11:18:12 +05:30
:disabled="removeDisabled"
2020-11-24 15:15:51 +05:30
class="js-issue-item-remove-button gl-ml-3"
2019-12-21 20:55:43 +05:30
data-qa-selector="remove_related_issue_button"
2019-09-30 21:07:59 +05:30
:title="__('Remove')"
:aria-label="__('Remove')"
2019-07-07 11:18:12 +05:30
@click="onRemoveRequest"
2020-11-24 15:15:51 +05:30
/>
2019-07-07 11:18:12 +05:30
</div>
</template>