diff --git a/plugins/poll/assets/javascripts/components/poll-results-number-voters.js.es6 b/plugins/poll/assets/javascripts/components/poll-results-number-voters.js.es6 index 63449af066a..e75ad84cbbf 100644 --- a/plugins/poll/assets/javascripts/components/poll-results-number-voters.js.es6 +++ b/plugins/poll/assets/javascripts/components/poll-results-number-voters.js.es6 @@ -3,29 +3,14 @@ import User from 'discourse/models/user'; import PollVoters from 'discourse/plugins/poll/components/poll-voters'; export default PollVoters.extend({ - @computed("pollsVoters", "poll.options", "showMore", "isExpanded", "numOfVotersToShow") - users(pollsVoters, options, showMore, isExpanded, numOfVotersToShow) { - var users = []; - var voterIds = []; - const shouldLimit = showMore && !isExpanded; - - options.forEach(option => { - option.voter_ids.forEach(voterId => { - if (shouldLimit) { - if (!(users.length > numOfVotersToShow - 1)) { - users.push(pollsVoters[voterId]); - } - } else { - users.push(pollsVoters[voterId]); - } - }) - }); - - return users; + @computed("poll.voters", "pollsVoters") + canLoadMore(voters, pollsVoters) { + return pollsVoters.length < voters; }, - @computed("pollsVoters", "numOfVotersToShow") - showMore(pollsVoters, numOfVotersToShow) { - return !(Object.keys(pollsVoters).length < numOfVotersToShow); + @computed("poll.options", "offset") + voterIds(options) { + const ids = [].concat(...(options.map(option => option.voter_ids))); + return this._getIds(ids); } }); diff --git a/plugins/poll/assets/javascripts/components/poll-results-number.js.es6 b/plugins/poll/assets/javascripts/components/poll-results-number.js.es6 index 5718642b327..bbaf1813bc1 100644 --- a/plugins/poll/assets/javascripts/components/poll-results-number.js.es6 +++ b/plugins/poll/assets/javascripts/components/poll-results-number.js.es6 @@ -2,8 +2,6 @@ import round from "discourse/lib/round"; import computed from 'ember-addons/ember-computed-decorators'; export default Em.Component.extend({ - tagName: "span", - @computed("poll.options.@each.{html,votes}") totalScore() { return _.reduce(this.get("poll.options"), function(total, o) { diff --git a/plugins/poll/assets/javascripts/components/poll-results-standard-voters.js.es6 b/plugins/poll/assets/javascripts/components/poll-results-standard-voters.js.es6 index 1e51dc23c44..80dc1ef8b3f 100644 --- a/plugins/poll/assets/javascripts/components/poll-results-standard-voters.js.es6 +++ b/plugins/poll/assets/javascripts/components/poll-results-standard-voters.js.es6 @@ -3,23 +3,13 @@ import User from 'discourse/models/user'; import PollVoters from 'discourse/plugins/poll/components/poll-voters'; export default PollVoters.extend({ - @computed("pollsVoters", "option.voter_ids", "showMore", "isExpanded", "numOfVotersToShow") - users(pollsVoters, voterIds, showMore, isExpanded, numOfVotersToShow) { - var users = []; - - if (showMore && !isExpanded) { - voterIds = voterIds.slice(0, numOfVotersToShow); - } - - voterIds.forEach(voterId => { - users.push(pollsVoters[voterId]); - }); - - return users; + @computed("option.votes", "pollsVoters") + canLoadMore(voters, pollsVoters) { + return pollsVoters.length < voters; }, - @computed("option.votes", "numOfVotersToShow") - showMore(numOfVotes, numOfVotersToShow) { - return !(numOfVotes < numOfVotersToShow); + @computed("option.voter_ids", "offset") + voterIds(ids) { + return this._getIds(ids); } }); diff --git a/plugins/poll/assets/javascripts/components/poll-voters.js.es6 b/plugins/poll/assets/javascripts/components/poll-voters.js.es6 index b580f111821..d2b8af9ae9f 100644 --- a/plugins/poll/assets/javascripts/components/poll-voters.js.es6 +++ b/plugins/poll/assets/javascripts/components/poll-voters.js.es6 @@ -3,11 +3,51 @@ export default Ember.Component.extend({ tagName: 'ul', classNames: ["poll-voters-list"], isExpanded: false, - numOfVotersToShow: 20, + numOfVotersToShow: 0, + offset: 0, + loading: false, + pollsVoters: null, + + init() { + this._super(); + this.set("pollsVoters", []); + }, + + _fetchUsers() { + this.set("loading", true); + + Discourse.ajax("/polls/voters.json", { + type: "get", + data: { user_ids: this.get("voterIds") } + }).then(result => { + if (this.isDestroyed) return; + this.set("pollsVoters", this.get("pollsVoters").concat(result.users)); + this.incrementProperty("offset"); + this.set("loading", false); + }).catch((error) => { + Ember.logger.log(error); + bootbox.alert(I18n.t('poll.error_while_fetching_voters')); + }); + }, + + _getIds(ids) { + const numOfVotersToShow = this.get("numOfVotersToShow"); + const offset = this.get("offset"); + return ids.slice(numOfVotersToShow * offset, numOfVotersToShow * (offset + 1)); + }, + + didInsertElement() { + this._super(); + + Ember.run.schedule("afterRender", () => { + this.set("numOfVotersToShow", Math.round(this.$().width() / 25) * 2); + if (this.get("voterIds").length > 0) this._fetchUsers(); + }); + }, actions: { - toggleExpand() { - this.toggleProperty("isExpanded"); + loadMore() { + this._fetchUsers(); } } }); diff --git a/plugins/poll/assets/javascripts/controllers/poll.js.es6 b/plugins/poll/assets/javascripts/controllers/poll.js.es6 index 50b80eb6d8c..841a3beb8ab 100644 --- a/plugins/poll/assets/javascripts/controllers/poll.js.es6 +++ b/plugins/poll/assets/javascripts/controllers/poll.js.es6 @@ -6,7 +6,6 @@ export default Ember.Controller.extend({ isRandom : Ember.computed.equal("poll.order", "random"), isClosed: Ember.computed.equal("poll.status", "closed"), isPublic: Ember.computed.equal("poll.public", "true"), - pollsVoters: Ember.computed.alias("post.polls_voters"), // shows the results when // - poll is closed @@ -152,10 +151,6 @@ export default Ember.Controller.extend({ this.setProperties({ vote: votes, showResults: true }); this.set("model", Em.Object.create(poll)); - - if (poll.public) { - this.get("pollsVoters")[currentUser.get("id")] = currentUser; - } }).catch(() => { bootbox.alert(I18n.t("poll.error_while_casting_votes")); }).finally(() => { diff --git a/plugins/poll/assets/javascripts/discourse/templates/components/poll-results-number.hbs b/plugins/poll/assets/javascripts/discourse/templates/components/poll-results-number.hbs index 48e73ff2fc8..c00255a0988 100644 --- a/plugins/poll/assets/javascripts/discourse/templates/components/poll-results-number.hbs +++ b/plugins/poll/assets/javascripts/discourse/templates/components/poll-results-number.hbs @@ -1,5 +1,7 @@ -{{{averageRating}}} +
{{#if poll.public}} - {{poll-results-number-voters poll=poll pollsVoters=pollsVoters}} + {{poll-results-number-voters poll=poll}} {{/if}} diff --git a/plugins/poll/assets/javascripts/discourse/templates/components/poll-results-standard.hbs b/plugins/poll/assets/javascripts/discourse/templates/components/poll-results-standard.hbs index e412d61a772..5f939cbc87c 100644 --- a/plugins/poll/assets/javascripts/discourse/templates/components/poll-results-standard.hbs +++ b/plugins/poll/assets/javascripts/discourse/templates/components/poll-results-standard.hbs @@ -11,7 +11,7 @@ {{#if poll.public}} - {{poll-results-standard-voters option=option pollsVoters=pollsVoters}} + {{poll-results-standard-voters option=option}} {{/if}} {{/each}} diff --git a/plugins/poll/assets/javascripts/discourse/templates/components/poll-voters.hbs b/plugins/poll/assets/javascripts/discourse/templates/components/poll-voters.hbs index 5c5a57aa594..53f6fcdc7b5 100644 --- a/plugins/poll/assets/javascripts/discourse/templates/components/poll-voters.hbs +++ b/plugins/poll/assets/javascripts/discourse/templates/components/poll-voters.hbs @@ -1,5 +1,5 @@