Last active
January 30, 2019 13:48
-
-
Save A6Brgeuka/c92e2ff39890d5117746316070f27dec to your computer and use it in GitHub Desktop.
subscribe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
currentUser: Ember.computed(function () { | |
return this.store.createRecord('user', {name:'current'}) | |
}), | |
users: Ember.computed(function() { | |
return [ | |
this.store.createRecord('user', {name:'one'}), | |
this.store.createRecord('user', {name:'two'}), | |
this.store.createRecord('user', {name:'three'}), | |
this.store.createRecord('user', {name:'four'}), | |
this.store.createRecord('user', {name:'five'}) | |
] | |
}), | |
actions: { | |
subscribe(user) { | |
if (user.followers.mapBy('following.id').includes(this.currentUser.id)) { | |
return | |
} | |
const subscribe = this.store.createRecord('subscribe', { | |
follower: this.currentUser, | |
following: user | |
}) | |
}, | |
subscribeToCurrentUser(user) { | |
if (this.currentUser.followers.mapBy('follower.id').includes(user.id)) { | |
return | |
} | |
const subscribe = this.store.createRecord('subscribe', { | |
follower: user, | |
following: this.currentUser | |
}) | |
} | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Model from 'ember-data/model'; | |
import attr from 'ember-data/attr'; | |
import { belongsTo, hasMany } from 'ember-data/relationships'; | |
export default Model.extend({ | |
follower: belongsTo('user', { inverse: 'followings' }), | |
following: belongsTo('user', { inverse: 'followers' }) | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Model from 'ember-data/model'; | |
import attr from 'ember-data/attr'; | |
import { belongsTo, hasMany } from 'ember-data/relationships'; | |
export default Model.extend({ | |
name: attr('string', { defaultValue() { return "asd" } }), | |
followers: hasMany('subscribe', { inverse: 'following' }), | |
followings: hasMany('subscribe', { inverse: 'follower' }) | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.15.1", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js", | |
"ember": "3.4.3", | |
"ember-template-compiler": "3.4.3", | |
"ember-testing": "3.4.3" | |
}, | |
"addons": { | |
"ember-data": "3.4.2" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment