Commit a0dad62b authored by Andrew Fontaine's avatar Andrew Fontaine

Show ref of the latest deployment

If the ref is a branch, display branch. If it is a tag, display tag.

Either way, link to the tree of the ref.
parent 7db82023
...@@ -6,10 +6,10 @@ import { ...@@ -6,10 +6,10 @@ import {
GlIcon, GlIcon,
GlLink, GlLink,
GlTooltipDirective as GlTooltip, GlTooltipDirective as GlTooltip,
GlTruncate,
} from '@gitlab/ui'; } from '@gitlab/ui';
import { GlBreakpointInstance } from '@gitlab/ui/dist/utils'; import { GlBreakpointInstance } from '@gitlab/ui/dist/utils';
import { __, s__ } from '~/locale'; import { __, s__ } from '~/locale';
import { truncate } from '~/lib/utils/text_utility';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue'; import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import TimeAgoTooltip from '~/vue_shared/components/time_ago_tooltip.vue'; import TimeAgoTooltip from '~/vue_shared/components/time_ago_tooltip.vue';
import DeploymentStatusBadge from './deployment_status_badge.vue'; import DeploymentStatusBadge from './deployment_status_badge.vue';
...@@ -25,6 +25,7 @@ export default { ...@@ -25,6 +25,7 @@ export default {
GlCollapse, GlCollapse,
GlIcon, GlIcon,
GlLink, GlLink,
GlTruncate,
TimeAgoTooltip, TimeAgoTooltip,
}, },
directives: { directives: {
...@@ -75,7 +76,7 @@ export default { ...@@ -75,7 +76,7 @@ export default {
return this.deployment?.user; return this.deployment?.user;
}, },
username() { username() {
return truncate(this.user?.username, 25); return `@${this.user.username}`;
}, },
userPath() { userPath() {
return this.user?.path; return this.user?.path;
...@@ -84,11 +85,23 @@ export default { ...@@ -84,11 +85,23 @@ export default {
return this.deployment?.deployable; return this.deployment?.deployable;
}, },
jobName() { jobName() {
return truncate(this.deployable?.name ?? '', 25); return this.deployable?.name;
}, },
jobPath() { jobPath() {
return this.deployable?.buildPath; return this.deployable?.buildPath;
}, },
refLabel() {
return this.deployment?.tag ? this.$options.i18n.tag : this.$options.i18n.branch;
},
ref() {
return this.deployment?.ref;
},
refName() {
return this.ref?.name;
},
refPath() {
return this.ref?.refPath;
},
}, },
methods: { methods: {
toggleCollapse() { toggleCollapse() {
...@@ -105,6 +118,8 @@ export default { ...@@ -105,6 +118,8 @@ export default {
triggerer: s__('Deployment|Triggerer'), triggerer: s__('Deployment|Triggerer'),
job: __('Job'), job: __('Job'),
api: __('API'), api: __('API'),
branch: __('Branch'),
tag: __('Tag'),
}, },
headerClasses: [ headerClasses: [
'gl-display-flex', 'gl-display-flex',
...@@ -144,10 +159,12 @@ export default { ...@@ -144,10 +159,12 @@ export default {
<div <div
v-if="iid" v-if="iid"
v-gl-tooltip v-gl-tooltip
class="gl-display-flex"
:title="$options.i18n.deploymentId" :title="$options.i18n.deploymentId"
:aria-label="$options.i18n.deploymentId" :aria-label="$options.i18n.deploymentId"
> >
<gl-icon ref="deployment-iid-icon" name="deployments" /> #{{ iid }} <gl-icon ref="deployment-iid-icon" name="deployments" />
<span class="gl-ml-2">#{{ iid }}</span>
</div> </div>
<div <div
v-if="shortSha" v-if="shortSha"
...@@ -163,8 +180,11 @@ export default { ...@@ -163,8 +180,11 @@ export default {
size="small" size="small"
/> />
</div> </div>
<time-ago-tooltip v-if="createdAt" :time="createdAt"> <time-ago-tooltip v-if="createdAt" :time="createdAt" class="gl-display-flex">
<template #default="{ timeAgo }"> <gl-icon name="calendar" /> {{ timeAgo }} </template> <template #default="{ timeAgo }">
<gl-icon name="calendar" />
<span class="gl-mr-2 gl-white-space-nowrap">{{ timeAgo }}</span>
</template>
</time-ago-tooltip> </time-ago-tooltip>
</div> </div>
</div> </div>
...@@ -180,25 +200,40 @@ export default { ...@@ -180,25 +200,40 @@ export default {
</div> </div>
<commit v-if="commit" :commit="commit" class="gl-mt-3" /> <commit v-if="commit" :commit="commit" class="gl-mt-3" />
<gl-collapse :visible="visible"> <gl-collapse :visible="visible">
<div class="gl-display-flex gl-align-items-center gl-mt-5"> <div
<div v-if="user" class="gl-display-flex gl-flex-direction-column"> class="gl-display-flex gl-md-align-items-center gl-mt-5 gl-flex-direction-column gl-md-flex-direction-row gl-pr-4 gl-md-pr-0"
<span class="gl-text-gray-500 gl-font-weight-bold">{{ $options.i18n.triggerer }}</span> >
<gl-link :href="userPath" class="gl-font-monospace gl-mt-3"> @{{ username }} </gl-link> <div v-if="user" class="gl-display-flex gl-flex-direction-column gl-md-max-w-15p">
<span class="gl-text-gray-500">{{ $options.i18n.triggerer }}</span>
<gl-link :href="userPath" class="gl-font-monospace gl-mt-3">
<gl-truncate :text="username" with-tooltip />
</gl-link>
</div> </div>
<div class="gl-display-flex gl-flex-direction-column gl-ml-5"> <div
<span class="gl-text-gray-500 gl-font-weight-bold" :class="{ 'gl-ml-3': !deployable }"> class="gl-display-flex gl-flex-direction-column gl-md-pl-7 gl-md-max-w-15p gl-mt-4 gl-md-mt-0"
>
<span class="gl-text-gray-500" :class="{ 'gl-ml-3': !deployable }">
{{ $options.i18n.job }} {{ $options.i18n.job }}
</span> </span>
<gl-link v-if="jobPath" :href="jobPath" class="gl-font-monospace gl-mt-3"> <gl-link v-if="jobPath" :href="jobPath" class="gl-font-monospace gl-mt-3">
{{ jobName }} <gl-truncate :text="jobName" with-tooltip position="middle" />
</gl-link> </gl-link>
<span v-else-if="jobName" class="gl-font-monospace gl-mt-3"> <span v-else-if="jobName" class="gl-font-monospace gl-mt-3">
{{ jobName }} <gl-truncate :text="jobName" with-tooltip position="middle" />
</span> </span>
<gl-badge v-else class="gl-font-monospace gl-mt-3" variant="info"> <gl-badge v-else class="gl-font-monospace gl-mt-3" variant="info">
{{ $options.i18n.api }} {{ $options.i18n.api }}
</gl-badge> </gl-badge>
</div> </div>
<div
v-if="ref"
class="gl-display-flex gl-flex-direction-column gl-md-pl-7 gl-md-max-w-15p gl-mt-4 gl-md-mt-0"
>
<span class="gl-text-gray-500">{{ refLabel }}</span>
<gl-link :href="refPath" class="gl-font-monospace gl-mt-3">
<gl-truncate :text="refName" with-tooltip />
</gl-link>
</div>
</div> </div>
</gl-collapse> </gl-collapse>
</div> </div>
......
...@@ -213,8 +213,28 @@ describe('~/environments/components/deployment.vue', () => { ...@@ -213,8 +213,28 @@ describe('~/environments/components/deployment.vue', () => {
expect(job.attributes('href')).toBe(deployment.deployable.buildPath); expect(job.attributes('href')).toBe(deployment.deployable.buildPath);
const apiBadge = wrapper.findByText(__('API')); const apiBadge = wrapper.findByText(__('API'));
expect(apiBadge.exists()).toBe(false); expect(apiBadge.exists()).toBe(false);
const branchLabel = wrapper.findByText(__('Branch'));
expect(branchLabel.exists()).toBe(true);
const tagLabel = wrapper.findByText(__('Tag'));
expect(tagLabel.exists()).toBe(false);
const ref = wrapper.findByRole('link', { name: deployment.ref.name });
expect(ref.attributes('href')).toBe(deployment.ref.refPath);
}); });
}); });
describe('with tagged deployment', () => {
beforeEach(async () => {
wrapper = createWrapper({ propsData: { deployment: { ...deployment, tag: true } } });
await wrapper.findComponent({ ref: 'details-toggle' }).trigger('click');
});
it('shows tag instead of branch', () => {
const refLabel = wrapper.findByText(__('Tag'));
expect(refLabel.exists()).toBe(true);
});
});
describe('with API deployment', () => { describe('with API deployment', () => {
beforeEach(async () => { beforeEach(async () => {
wrapper = createWrapper({ propsData: { deployment: { ...deployment, deployable: null } } }); wrapper = createWrapper({ propsData: { deployment: { ...deployment, deployable: null } } });
...@@ -237,7 +257,7 @@ describe('~/environments/components/deployment.vue', () => { ...@@ -237,7 +257,7 @@ describe('~/environments/components/deployment.vue', () => {
}); });
it('shows a span instead of a link', () => { it('shows a span instead of a link', () => {
const job = wrapper.findByText(deployment.deployable.name); const job = wrapper.findByTitle(deployment.deployable.name);
expect(job.attributes('href')).toBeUndefined(); expect(job.attributes('href')).toBeUndefined();
}); });
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment