debian-mirror-gitlab/app/assets/javascripts/notes/components/note_header.vue

121 lines
2.7 KiB
Vue
Raw Normal View History

2018-03-17 18:26:18 +05:30
<script>
2018-05-09 12:01:36 +05:30
import { mapActions } from 'vuex';
import timeAgoTooltip from '../../vue_shared/components/time_ago_tooltip.vue';
2018-03-17 18:26:18 +05:30
2018-05-09 12:01:36 +05:30
export default {
components: {
timeAgoTooltip,
},
props: {
author: {
type: Object,
2018-11-20 20:47:30 +05:30
required: false,
default: () => ({}),
2018-03-17 18:26:18 +05:30
},
2018-05-09 12:01:36 +05:30
createdAt: {
type: String,
required: true,
2018-03-17 18:26:18 +05:30
},
2018-05-09 12:01:36 +05:30
actionText: {
type: String,
required: false,
default: '',
2018-03-17 18:26:18 +05:30
},
2018-05-09 12:01:36 +05:30
noteId: {
2018-11-20 20:47:30 +05:30
type: String,
2018-05-09 12:01:36 +05:30
required: true,
},
includeToggle: {
type: Boolean,
required: false,
default: false,
},
expanded: {
type: Boolean,
required: false,
default: true,
},
},
computed: {
toggleChevronClass() {
return this.expanded ? 'fa-chevron-up' : 'fa-chevron-down';
},
noteTimestampLink() {
return `#note_${this.noteId}`;
},
},
methods: {
...mapActions(['setTargetNoteHash']),
handleToggle() {
this.$emit('toggleHandler');
},
updateTargetNoteHash() {
this.setTargetNoteHash(this.noteTimestampLink);
},
},
};
2018-03-17 18:26:18 +05:30
</script>
<template>
<div class="note-header-info">
2018-11-08 19:23:39 +05:30
<div
v-if="includeToggle"
class="discussion-actions">
<button
class="note-action-button discussion-toggle-button js-vue-toggle-button"
type="button"
@click="handleToggle">
<i
:class="toggleChevronClass"
class="fa"
aria-hidden="true">
</i>
{{ __('Toggle discussion') }}
</button>
</div>
2018-11-20 20:47:30 +05:30
<a
v-if="Object.keys(author).length"
:href="author.path"
>
2018-03-17 18:26:18 +05:30
<span class="note-header-author-name">{{ author.name }}</span>
2018-11-18 11:00:15 +05:30
<span
v-if="author.status_tooltip_html"
v-html="author.status_tooltip_html"></span>
2018-03-17 18:26:18 +05:30
<span class="note-headline-light">
@{{ author.username }}
</span>
</a>
2018-11-20 20:47:30 +05:30
<span v-else>
{{ __('A deleted user') }}
</span>
2018-03-17 18:26:18 +05:30
<span class="note-headline-light">
<span class="note-headline-meta">
<template v-if="actionText">
{{ actionText }}
</template>
2018-11-08 19:23:39 +05:30
<span class="system-note-message">
<slot></slot>
</span>
<span class="system-note-separator">
&middot;
2018-03-17 18:26:18 +05:30
</span>
<a
:href="noteTimestampLink"
2018-11-08 19:23:39 +05:30
class="note-timestamp system-note-separator"
@click="updateTargetNoteHash">
2018-03-17 18:26:18 +05:30
<time-ago-tooltip
:time="createdAt"
tooltip-placement="bottom"
/>
</a>
<i
class="fa fa-spinner fa-spin editing-spinner"
aria-label="Comment is being updated"
aria-hidden="true"
>
</i>
</span>
</span>
</div>
</template>