gitlab-org--gitlab-foss/app/assets/javascripts/notes/mixins/resolvable.js

57 lines
1.5 KiB
JavaScript

import createFlash from '~/flash';
import { __ } from '~/locale';
export default {
computed: {
discussionResolved() {
if (this.discussion) {
return Boolean(this.discussion.resolved);
}
return this.note.resolved;
},
resolveButtonTitle() {
if (this.updatedNoteBody) {
if (this.discussionResolved) {
return __('Comment & unresolve thread');
}
return __('Comment & resolve thread');
}
return this.discussionResolved ? __('Unresolve thread') : __('Resolve thread');
},
},
methods: {
resolveHandler(resolvedState = false) {
if (this.note && this.note.isDraft) {
return this.$emit('toggleResolveStatus');
}
this.isResolving = true;
const isResolved = this.discussionResolved || resolvedState;
const discussion = this.resolveAsThread;
let endpoint =
discussion && this.discussion ? this.discussion.resolve_path : `${this.note.path}/resolve`;
if (this.discussionResolvePath) {
endpoint = this.discussionResolvePath;
}
return this.toggleResolveNote({ endpoint, isResolved, discussion })
.then(() => {
this.isResolving = false;
})
.catch(() => {
this.isResolving = false;
const msg = __('Something went wrong while resolving this discussion. Please try again.');
createFlash({
message: msg,
parent: this.$el,
});
});
},
},
};