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,
|
2018-12-05 23:21:45 +05:30
|
|
|
required: false,
|
|
|
|
default: null,
|
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-12-05 23:21:45 +05:30
|
|
|
type: [String, Number],
|
|
|
|
required: false,
|
|
|
|
default: null,
|
2018-05-09 12:01:36 +05:30
|
|
|
},
|
|
|
|
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}`;
|
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
hasAuthor() {
|
|
|
|
return this.author && Object.keys(this.author).length;
|
|
|
|
},
|
2018-05-09 12:01:36 +05:30
|
|
|
},
|
|
|
|
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">
|
2019-02-15 15:39:39 +05:30
|
|
|
<div v-if="includeToggle" class="discussion-actions">
|
2018-11-08 19:23:39 +05:30
|
|
|
<button
|
|
|
|
class="note-action-button discussion-toggle-button js-vue-toggle-button"
|
|
|
|
type="button"
|
2019-02-15 15:39:39 +05:30
|
|
|
@click="handleToggle"
|
|
|
|
>
|
2019-07-07 11:18:12 +05:30
|
|
|
<i :class="toggleChevronClass" class="fa" aria-hidden="true"></i>
|
2019-09-30 21:07:59 +05:30
|
|
|
{{ __('Toggle thread') }}
|
2018-11-08 19:23:39 +05:30
|
|
|
</button>
|
|
|
|
</div>
|
2018-11-20 20:47:30 +05:30
|
|
|
<a
|
2018-12-13 13:39:08 +05:30
|
|
|
v-if="hasAuthor"
|
2019-02-15 15:39:39 +05:30
|
|
|
v-once
|
2018-11-20 20:47:30 +05:30
|
|
|
:href="author.path"
|
2019-02-15 15:39:39 +05:30
|
|
|
class="js-user-link"
|
|
|
|
:data-user-id="author.id"
|
|
|
|
:data-username="author.username"
|
2018-11-20 20:47:30 +05:30
|
|
|
>
|
2019-07-07 11:18:12 +05:30
|
|
|
<slot name="note-header-info"></slot>
|
2019-09-04 21:01:54 +05:30
|
|
|
<span class="note-header-author-name bold">{{ author.name }}</span>
|
2019-02-15 15:39:39 +05:30
|
|
|
<span v-if="author.status_tooltip_html" v-html="author.status_tooltip_html"></span>
|
2019-07-07 11:18:12 +05:30
|
|
|
<span class="note-headline-light">@{{ author.username }}</span>
|
2018-03-17 18:26:18 +05:30
|
|
|
</a>
|
2019-07-07 11:18:12 +05:30
|
|
|
<span v-else>{{ __('A deleted user') }}</span>
|
|
|
|
<span class="note-headline-light note-headline-meta">
|
|
|
|
<span class="system-note-message"> <slot></slot> </span>
|
|
|
|
<template v-if="createdAt">
|
|
|
|
<span class="system-note-separator">
|
|
|
|
<template v-if="actionText">{{ actionText }}</template>
|
|
|
|
</span>
|
|
|
|
<a
|
|
|
|
:href="noteTimestampLink"
|
|
|
|
class="note-timestamp system-note-separator"
|
|
|
|
@click="updateTargetNoteHash"
|
2018-03-17 18:26:18 +05:30
|
|
|
>
|
2019-07-07 11:18:12 +05:30
|
|
|
<time-ago-tooltip :time="createdAt" tooltip-placement="bottom" />
|
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
<i
|
|
|
|
class="fa fa-spinner fa-spin editing-spinner"
|
2019-09-30 21:07:59 +05:30
|
|
|
:aria-label="__('Comment is being updated')"
|
2019-07-07 11:18:12 +05:30
|
|
|
aria-hidden="true"
|
|
|
|
></i>
|
2018-03-17 18:26:18 +05:30
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</template>
|