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