REFACTOR: user route (#7704)

This commit is contained in:
Joffrey JAFFEUX 2019-06-05 13:05:27 +02:00 committed by GitHub
parent 1178f4865b
commit f506843074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 22 deletions

View File

@ -1,6 +1,6 @@
export default Discourse.Route.extend({
titleToken() {
const username = this.modelFor("user").get("username");
const username = this.modelFor("user").username;
if (username) {
return [I18n.t("user.profile"), username];
}
@ -32,12 +32,11 @@ export default Discourse.Route.extend({
model(params) {
// If we're viewing the currently logged in user, return that object instead
const currentUser = this.currentUser;
if (
currentUser &&
params.username.toLowerCase() === currentUser.get("username_lower")
this.currentUser &&
params.username.toLowerCase() === this.currentUser.username_lower
) {
return currentUser;
return this.currentUser;
}
return Discourse.User.create({ username: params.username });
@ -45,43 +44,38 @@ export default Discourse.Route.extend({
afterModel() {
const user = this.modelFor("user");
const self = this;
return user
.findDetails()
.then(function() {
return user.findStaffInfo();
})
.catch(function() {
return self.replaceWith("/404");
});
.then(() => user.findStaffInfo())
.catch(() => this.replaceWith("/404"));
},
serialize(model) {
if (!model) return {};
return { username: (Ember.get(model, "username") || "").toLowerCase() };
return { username: (model.username || "").toLowerCase() };
},
setupController(controller, user) {
controller.set("model", user);
this.searchService.set("searchContext", user.get("searchContext"));
this.searchService.set("searchContext", user.searchContext);
},
activate() {
this._super(...arguments);
const user = this.modelFor("user");
this.messageBus.subscribe("/u/" + user.get("username_lower"), function(
data
) {
user.loadUserAction(data);
});
this.messageBus.subscribe(`/u/${user.username_lower}`, data =>
user.loadUserAction(data)
);
},
deactivate() {
this._super(...arguments);
this.messageBus.unsubscribe(
"/u/" + this.modelFor("user").get("username_lower")
);
const user = this.modelFor("user");
this.messageBus.unsubscribe(`/u/${user.username_lower}`);
// Remove the search context
this.searchService.set("searchContext", null);