Skip to content

Commit

Permalink
BUGFIX: computed.alias (and even property) seems bust in components
Browse files Browse the repository at this point in the history
  • Loading branch information
SamSaffron committed Jan 20, 2014
1 parent b85e5dc commit 12b7276
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,17 @@ Discourse.PrivateMessageMapComponent = Ember.Component.extend({
templateName: 'components/private-message-map',
tagName: 'section',
classNames: ['information'],
postStream: Em.computed.alias('topic.postStream'),

details: Em.computed.alias('topic.details'),

actions: {
removeAllowedUser: function(user) {
console.log(user);
var self = this;
bootbox.dialog(I18n.t("private_message_info.remove_allowed_user", {name: user.get('username')}), [
{label: I18n.t("no_value"),
'class': 'btn-danger rightg'},
{label: I18n.t("yes_value"),
'class': 'btn-primary',
callback: function() {
self.get('details').removeAllowedUser(user);
self.get('topic.details').removeAllowedUser(user);
}
}
]);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<h3><i class='fa fa-envelope'></i> {{i18n private_message_info.title}}</h3>
<div class='participants clearfix'>
{{#groupedEach details.allowed_groups}}
{{#groupedEach topic.details.allowed_groups}}
<div class='user group'>
#{{unbound name}}
</div>
{{/groupedEach}}
{{#groupedEach details.allowed_users}}
{{#groupedEach topic.details.allowed_users}}
<div class='user'>
{{#link-to 'user' this}}
{{avatar this imageSize="small"}}
{{/link-to}}
{{#link-to 'user' this}}
{{unbound username}}
{{/link-to}}
{{#if view.details.can_remove_allowed_users}}
{{#if topic.details.can_remove_allowed_users}}
<a class='remove-invited' {{action removeAllowedUser this}}><i class="fa fa-times"></i></a>
{{/if}}
</div>
{{/groupedEach}}
</div>
{{#if details.can_invite_to}}
{{#if topic.details.can_invite_to}}
<div class='controls'>
<button class='btn' {{action showPrivateInvite}}>{{i18n private_message_info.invite}}</button>
</div>
Expand Down

0 comments on commit 12b7276

Please sign in to comment.