mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 07:09:29 +08:00
91 lines
2.3 KiB
JavaScript
91 lines
2.3 KiB
JavaScript
import Invite from 'discourse/models/invite';
|
|
import debounce from 'discourse/lib/debounce';
|
|
|
|
// This controller handles actions related to a user's invitations
|
|
export default Ember.Controller.extend({
|
|
user: null,
|
|
model: null,
|
|
filter: null,
|
|
totalInvites: null,
|
|
canLoadMore: true,
|
|
invitesLoading: false,
|
|
|
|
init: function() {
|
|
this._super();
|
|
this.set('searchTerm', '');
|
|
},
|
|
|
|
uploadText: function() { return I18n.t("user.invited.bulk_invite.text"); }.property(),
|
|
|
|
/**
|
|
Observe the search term box with a debouncer and change the results.
|
|
|
|
@observes searchTerm
|
|
**/
|
|
_searchTermChanged: debounce(function() {
|
|
var self = this;
|
|
Invite.findInvitedBy(self.get('user'), this.get('filter'), this.get('searchTerm')).then(function (invites) {
|
|
self.set('model', invites);
|
|
});
|
|
}, 250).observes('searchTerm'),
|
|
|
|
inviteRedeemed: Em.computed.equal('filter', 'redeemed'),
|
|
|
|
/**
|
|
Can the currently logged in user invite users to the site
|
|
|
|
@property canInviteToForum
|
|
**/
|
|
canInviteToForum: function() {
|
|
return Discourse.User.currentProp('can_invite_to_forum');
|
|
}.property(),
|
|
|
|
/**
|
|
Can the currently logged in user bulk invite users to the site (only Admin is allowed to perform this operation)
|
|
|
|
@property canBulkInvite
|
|
**/
|
|
canBulkInvite: function() {
|
|
return Discourse.User.currentProp('admin');
|
|
}.property(),
|
|
|
|
/**
|
|
Should the search filter input box be displayed?
|
|
|
|
@property showSearch
|
|
**/
|
|
showSearch: function() {
|
|
return this.get('totalInvites') > 9;
|
|
}.property('totalInvites'),
|
|
|
|
actions: {
|
|
|
|
rescind(invite) {
|
|
invite.rescind();
|
|
return false;
|
|
},
|
|
|
|
reinvite(invite) {
|
|
invite.reinvite();
|
|
return false;
|
|
},
|
|
|
|
loadMore() {
|
|
var self = this;
|
|
var model = self.get('model');
|
|
|
|
if (self.get('canLoadMore') && !self.get('invitesLoading')) {
|
|
self.set('invitesLoading', true);
|
|
Invite.findInvitedBy(self.get('user'), self.get('filter'), self.get('searchTerm'), model.invites.length).then(function(invite_model) {
|
|
self.set('invitesLoading', false);
|
|
model.invites.pushObjects(invite_model.invites);
|
|
if(invite_model.invites.length === 0 || invite_model.invites.length < Discourse.SiteSettings.invites_per_page) {
|
|
self.set('canLoadMore', false);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
});
|