debian-mirror-gitlab/app/assets/javascripts/notes/mixins/resolvable.js

56 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-10-24 23:57:45 +05:30
import { deprecatedCreateFlash as Flash } from '~/flash';
2018-03-27 19:54:05 +05:30
import { __ } from '~/locale';
export default {
computed: {
discussionResolved() {
2018-11-08 19:23:39 +05:30
if (this.discussion) {
const { notes, resolved } = this.discussion;
if (notes) {
// Decide resolved state using store. Only valid for discussions.
return notes.filter(note => !note.system).every(note => note.resolved);
}
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
return resolved;
2018-03-27 19:54:05 +05:30
}
2018-11-08 19:23:39 +05:30
return this.note.resolved;
2018-03-27 19:54:05 +05:30
},
resolveButtonTitle() {
if (this.updatedNoteBody) {
if (this.discussionResolved) {
2019-09-30 21:07:59 +05:30
return __('Comment & unresolve thread');
2018-03-27 19:54:05 +05:30
}
2019-09-30 21:07:59 +05:30
return __('Comment & resolve thread');
2018-03-27 19:54:05 +05:30
}
2018-11-08 19:23:39 +05:30
2019-09-30 21:07:59 +05:30
return this.discussionResolved ? __('Unresolve thread') : __('Resolve thread');
2018-03-27 19:54:05 +05:30
},
},
methods: {
resolveHandler(resolvedState = false) {
2019-07-07 11:18:12 +05:30
if (this.note && this.note.isDraft) {
return this.$emit('toggleResolveStatus');
}
2018-03-27 19:54:05 +05:30
this.isResolving = true;
const isResolved = this.discussionResolved || resolvedState;
const discussion = this.resolveAsThread;
2018-11-08 19:23:39 +05:30
const endpoint = discussion ? this.discussion.resolve_path : `${this.note.path}/resolve`;
2018-03-27 19:54:05 +05:30
2019-02-15 15:39:39 +05:30
return this.toggleResolveNote({ endpoint, isResolved, discussion })
2018-03-27 19:54:05 +05:30
.then(() => {
this.isResolving = false;
})
.catch(() => {
this.isResolving = false;
2018-11-08 19:23:39 +05:30
const msg = __('Something went wrong while resolving this discussion. Please try again.');
2018-03-27 19:54:05 +05:30
Flash(msg, 'alert', this.$el);
});
},
},
};