discourse-user-card-directory/javascripts/discourse/initializers/user-card-directory.js.es6

113 lines
3.5 KiB
Plaintext
Raw Normal View History

2020-02-28 07:01:48 -08:00
import { withPluginApi } from "discourse/lib/plugin-api";
import discourseComputed from "discourse-common/utils/decorators";
import User from "discourse/models/user";
import EmberObject from "@ember/object";
import { ajax } from "discourse/lib/ajax";
export default {
name: "user-card-directory",
initialize(container) {
withPluginApi("0.8.7", (api) => {
api.modifyClass("route:users", {
pluginId: 'user-card-directory',
2020-03-10 03:09:30 -07:00
resetController(controller, isExiting) {
this._super(...arguments);
if (isExiting) {
controller.set("cachedUserCardInfo", {});
}
},
queryParams: {
cards: { refreshModel: true },
},
beforeModel(transition) {
this._super(transition);
if (
settings.default_view === "cards" &&
!transition.to.queryParams.cards
) {
this.transitionTo({ queryParams: { cards: "yes" } });
}
},
model(params) {
return this._super(params).then((model) => {
model.showAsCards = params["cards"] === "yes";
return model;
});
},
renderTemplate(controller, model) {
if (model.showAsCards) {
return this.render("users-as-card-directory");
}
return this._super();
},
});
2020-02-28 07:01:48 -08:00
api.modifyClass("controller:users", {
pluginId: 'user-card-directory',
2020-03-10 03:09:30 -07:00
cachedUserCardInfo: null,
init(){
this.set("cachedUserCardInfo", {});
this._super(...arguments);
},
2020-02-28 07:01:48 -08:00
@discourseComputed("model.content.@each")
userCards(allUsers) {
2020-06-19 13:24:06 -07:00
if (!allUsers) return [];
const toLoad = [];
if (settings.hide_current_user && this.currentUser) {
allUsers = allUsers.filter((u) => u.id !== this.currentUser.id);
}
const userCardInfos = allUsers.map(u => {
if (this.cachedUserCardInfo[u.id]) {
return this.cachedUserCardInfo[u.id];
}
2020-02-28 07:01:48 -08:00
const userCardInfo = (this.cachedUserCardInfo[
u.id
] = EmberObject.create({
user: User.create(u.user),
directoryItem: u,
loading: true
}));
2020-02-28 07:01:48 -08:00
toLoad.push(userCardInfo);
2020-02-28 07:01:48 -08:00
return userCardInfo;
});
2020-02-28 07:01:48 -08:00
const loadMax = 50;
2020-02-28 07:01:48 -08:00
while (toLoad.length > 0) {
const thisBatch = toLoad.splice(0, loadMax);
const promise = ajax("/user-cards.json", {
data: { user_ids: thisBatch.map(uc => uc.user.id).join(",") }
});
thisBatch.forEach(uc => {
2020-03-10 03:09:30 -07:00
// Each user card expects its own promise
// Rather than making a separate AJAX request for each
// We re-use the `user-cards.json` promise, and manipulate the data
const convertedPromise = promise.then(data => {
// Find the correct user from users, and put it in the user attribute
// Use Object.assign to avoid contaminating the source object
return Object.assign({}, data, {
user: data.users.find(u => u.id === uc.user.id)
});
2020-02-28 07:01:48 -08:00
});
return uc.user
.findDetails({ existingRequest: convertedPromise })
2020-03-10 03:09:30 -07:00
.finally(() => uc.set("loading", false));
});
}
2020-02-28 07:01:48 -08:00
return userCardInfos;
2020-02-28 07:01:48 -08:00
}
});
});
}
};