25 lines
587 B
JavaScript
25 lines
587 B
JavaScript
/* eslint-disable comma-dangle, object-shorthand, func-names, no-param-reassign */
|
|
/* global DiscussionMixins */
|
|
/* global CommentsStore */
|
|
|
|
import Vue from 'vue';
|
|
|
|
window.ResolveCount = Vue.extend({
|
|
mixins: [DiscussionMixins],
|
|
props: {
|
|
loggedOut: Boolean
|
|
},
|
|
data: function () {
|
|
return {
|
|
discussions: CommentsStore.state
|
|
};
|
|
},
|
|
computed: {
|
|
allResolved: function () {
|
|
return this.resolvedDiscussionCount === this.discussionCount;
|
|
},
|
|
resolvedCountText() {
|
|
return this.discussionCount === 1 ? 'discussion' : 'discussions';
|
|
}
|
|
}
|
|
});
|