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

176 lines
4.7 KiB
Vue
Raw Normal View History

2018-03-17 18:26:18 +05:30
<script>
2020-06-23 00:09:42 +05:30
import { mapActions, mapGetters, mapState } from 'vuex';
2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2019-12-04 20:38:33 +05:30
import '~/behaviors/markdown/render_gfm';
2018-05-09 12:01:36 +05:30
import noteEditedText from './note_edited_text.vue';
import noteAwardsList from './note_awards_list.vue';
import noteAttachment from './note_attachment.vue';
import noteForm from './note_form.vue';
import autosave from '../mixins/autosave';
2019-02-15 15:39:39 +05:30
import Suggestions from '~/vue_shared/components/markdown/suggestions.vue';
2018-03-17 18:26:18 +05:30
2018-05-09 12:01:36 +05:30
export default {
components: {
noteEditedText,
noteAwardsList,
noteAttachment,
noteForm,
2019-02-15 15:39:39 +05:30
Suggestions,
2018-05-09 12:01:36 +05:30
},
2020-06-23 00:09:42 +05:30
mixins: [autosave],
2018-05-09 12:01:36 +05:30
props: {
note: {
type: Object,
required: true,
2018-03-17 18:26:18 +05:30
},
2019-02-15 15:39:39 +05:30
line: {
type: Object,
required: false,
default: null,
},
2018-05-09 12:01:36 +05:30
canEdit: {
type: Boolean,
required: true,
2018-03-17 18:26:18 +05:30
},
2018-05-09 12:01:36 +05:30
isEditing: {
type: Boolean,
required: false,
default: false,
2018-03-17 18:26:18 +05:30
},
2019-02-15 15:39:39 +05:30
helpPagePath: {
type: String,
required: false,
default: '',
},
2018-05-09 12:01:36 +05:30
},
computed: {
2020-06-23 00:09:42 +05:30
...mapGetters(['getDiscussion']),
discussion() {
if (!this.note.isDraft) return {};
return this.getDiscussion(this.note.discussion_id);
},
...mapState({
batchSuggestionsInfo: state => state.notes.batchSuggestionsInfo,
}),
2018-05-09 12:01:36 +05:30
noteBody() {
return this.note.note;
},
2019-02-15 15:39:39 +05:30
hasSuggestion() {
return this.note.suggestions && this.note.suggestions.length;
},
lineType() {
return this.line ? this.line.type : null;
},
2018-05-09 12:01:36 +05:30
},
mounted() {
this.renderGFM();
if (this.isEditing) {
2018-11-08 19:23:39 +05:30
this.initAutoSave(this.note);
2018-05-09 12:01:36 +05:30
}
},
updated() {
this.renderGFM();
2018-03-17 18:26:18 +05:30
2018-05-09 12:01:36 +05:30
if (this.isEditing) {
if (!this.autosave) {
2018-11-08 19:23:39 +05:30
this.initAutoSave(this.note);
2018-05-09 12:01:36 +05:30
} else {
this.setAutoSave();
2018-03-17 18:26:18 +05:30
}
2018-05-09 12:01:36 +05:30
}
},
methods: {
2020-06-23 00:09:42 +05:30
...mapActions([
'submitSuggestion',
'submitSuggestionBatch',
'addSuggestionInfoToBatch',
'removeSuggestionInfoFromBatch',
]),
2018-05-09 12:01:36 +05:30
renderGFM() {
$(this.$refs['note-body']).renderGFM();
2018-03-17 18:26:18 +05:30
},
2019-07-31 22:56:46 +05:30
handleFormUpdate(note, parentElement, callback, resolveDiscussion) {
this.$emit('handleFormUpdate', note, parentElement, callback, resolveDiscussion);
2018-05-09 12:01:36 +05:30
},
formCancelHandler(shouldConfirm, isDirty) {
2018-11-08 19:23:39 +05:30
this.$emit('cancelForm', shouldConfirm, isDirty);
2018-03-17 18:26:18 +05:30
},
2019-07-31 22:56:46 +05:30
applySuggestion({ suggestionId, flashContainer, callback = () => {} }) {
2019-02-15 15:39:39 +05:30
const { discussion_id: discussionId, id: noteId } = this.note;
2019-07-31 22:56:46 +05:30
return this.submitSuggestion({ discussionId, noteId, suggestionId, flashContainer }).then(
callback,
);
2019-02-15 15:39:39 +05:30
},
2020-06-23 00:09:42 +05:30
applySuggestionBatch({ flashContainer }) {
return this.submitSuggestionBatch({ flashContainer });
},
addSuggestionToBatch(suggestionId) {
const { discussion_id: discussionId, id: noteId } = this.note;
this.addSuggestionInfoToBatch({ suggestionId, discussionId, noteId });
},
removeSuggestionFromBatch(suggestionId) {
this.removeSuggestionInfoFromBatch(suggestionId);
},
2018-05-09 12:01:36 +05:30
},
};
2018-03-17 18:26:18 +05:30
</script>
<template>
2019-02-15 15:39:39 +05:30
<div ref="note-body" :class="{ 'js-task-list-container': canEdit }" class="note-body">
<suggestions
v-if="hasSuggestion && !isEditing"
:suggestions="note.suggestions"
2020-06-23 00:09:42 +05:30
:batch-suggestions-info="batchSuggestionsInfo"
2019-02-15 15:39:39 +05:30
:note-html="note.note_html"
:line-type="lineType"
:help-page-path="helpPagePath"
@apply="applySuggestion"
2020-06-23 00:09:42 +05:30
@applyBatch="applySuggestionBatch"
@addToBatch="addSuggestionToBatch"
@removeFromBatch="removeSuggestionFromBatch"
2019-02-15 15:39:39 +05:30
/>
<div v-else class="note-text md" v-html="note.note_html"></div>
2018-03-17 18:26:18 +05:30
<note-form
v-if="isEditing"
ref="noteForm"
:is-editing="isEditing"
:note-body="noteBody"
:note-id="note.id"
2019-02-15 15:39:39 +05:30
:line="line"
:note="note"
:help-page-path="helpPagePath"
2019-07-31 22:56:46 +05:30
:discussion="discussion"
:resolve-discussion="note.resolve_discussion"
2018-11-08 19:23:39 +05:30
@handleFormUpdate="handleFormUpdate"
@cancelForm="formCancelHandler"
2018-03-17 18:26:18 +05:30
/>
<textarea
v-if="canEdit"
v-model="note.note"
:data-update-url="note.path"
2019-02-15 15:39:39 +05:30
class="hidden js-task-list-field"
2019-07-31 22:56:46 +05:30
dir="auto"
2019-02-15 15:39:39 +05:30
></textarea>
2018-03-17 18:26:18 +05:30
<note-edited-text
v-if="note.last_edited_at"
:edited-at="note.last_edited_at"
:edited-by="note.last_edited_by"
action-text="Edited"
2018-11-08 19:23:39 +05:30
class="note_edited_ago"
2018-03-17 18:26:18 +05:30
/>
<note-awards-list
2018-12-05 23:21:45 +05:30
v-if="note.award_emoji && note.award_emoji.length"
2018-03-17 18:26:18 +05:30
:note-id="note.id"
:note-author-id="note.author.id"
:awards="note.award_emoji"
:toggle-award-path="note.toggle_award_path"
2018-05-09 12:01:36 +05:30
:can-award-emoji="note.current_user.can_award_emoji"
2018-03-17 18:26:18 +05:30
/>
2019-02-15 15:39:39 +05:30
<note-attachment v-if="note.attachment" :attachment="note.attachment" />
2018-03-17 18:26:18 +05:30
</div>
</template>