mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 09:33:37 +08:00
Support for deleting small post actions
This commit is contained in:
parent
e09e5016ce
commit
510813769f
|
@ -30,6 +30,10 @@ export default Ember.Component.extend({
|
|||
actions: {
|
||||
edit: function() {
|
||||
this.sendAction('editPost', this.get('post'));
|
||||
},
|
||||
|
||||
delete: function() {
|
||||
this.sendAction('deletePost', this.get('post'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
<div class='topic-avatar'>{{fa-icon icon}}</div>
|
||||
<div class='small-action-desc'>
|
||||
{{#if post}}
|
||||
{{#if post.can_delete}}
|
||||
<button {{action "delete"}} title={{i18n "post.controls.delete"}}>{{fa-icon "times"}}</button>
|
||||
{{/if}}
|
||||
{{#if post.can_edit}}
|
||||
<button {{action "edit"}} title="{{i18n "post.controls.edit"}}">{{fa-icon "pencil"}}</button>
|
||||
<button {{action "edit"}} title={{i18n "post.controls.edit"}}>{{fa-icon "pencil"}}</button>
|
||||
{{/if}}
|
||||
<a href={{post.usernameUrl}} data-user-card={{post.username}}>
|
||||
{{avatar post imageSize="small"}}
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
{{post-gap post=this postStream=controller.model.postStream before="true"}}
|
||||
{{small-action actionCode=action_code post=this daysAgo=view.daysAgo editPost="editPost"}}
|
||||
|
||||
{{small-action actionCode=action_code
|
||||
post=this
|
||||
daysAgo=view.daysAgo
|
||||
editPost="editPost"
|
||||
deletePost="deletePost"}}
|
||||
|
||||
{{post-gap post=this postStream=controller.model.postStream before="false"}}
|
||||
|
|
|
@ -587,7 +587,7 @@ a.mention {
|
|||
}
|
||||
|
||||
.deleted {
|
||||
.topic-body {
|
||||
.topic-body, .small-action {
|
||||
background-color: dark-light-diff(rgba($danger,.7), $secondary, 50%, -60%);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user