},
handleFavouriteClick (status) {
- this.props.dispatch(favourite(status));
+ if (status.get('favourited')) {
+ this.props.dispatch(unfavourite(status));
+ } else {
+ this.props.dispatch(favourite(status));
+ }
},
handleReplyClick (status) {
},
handleReblogClick (status) {
- this.props.dispatch(reblog(status));
+ if (status.get('reblogged')) {
+ this.props.dispatch(unreblog(status));
+ } else {
+ this.props.dispatch(reblog(status));
+ }
},
handleDeleteClick (status) {
--- /dev/null
+class AddReblogOfIdForeignKeyToStatuses < ActiveRecord::Migration[5.0]
+ def change
+ add_foreign_key :statuses, :statuses, column: :reblog_of_id, on_delete: :cascade
+ end
+end
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20170214110202) do
+ActiveRecord::Schema.define(version: 20170217012631) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
t.index ["user_id"], name: "index_web_settings_on_user_id", unique: true, using: :btree
end
+ add_foreign_key "statuses", "statuses", column: "reblog_of_id", on_delete: :cascade
end