parent
2496cece91
commit
45e8331e26
150 changed files with 610 additions and 609 deletions
8
src/web/app/common/mixins/api.js
Normal file
8
src/web/app/common/mixins/api.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import * as riot from 'riot';
|
||||
import api from '../scripts/api';
|
||||
|
||||
export default me => {
|
||||
riot.mixin('api', {
|
||||
api: api.bind(null, me ? me.token : null)
|
||||
});
|
||||
};
|
||||
20
src/web/app/common/mixins/i.js
Normal file
20
src/web/app/common/mixins/i.js
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import * as riot from 'riot';
|
||||
|
||||
export default me => {
|
||||
riot.mixin('i', {
|
||||
init: function() {
|
||||
this.I = me;
|
||||
this.SIGNIN = me != null;
|
||||
|
||||
if (this.SIGNIN) {
|
||||
this.on('mount', () => {
|
||||
me.on('updated', this.update);
|
||||
});
|
||||
this.on('unmount', () => {
|
||||
me.off('updated', this.update);
|
||||
});
|
||||
}
|
||||
},
|
||||
me: me
|
||||
});
|
||||
};
|
||||
9
src/web/app/common/mixins/index.js
Normal file
9
src/web/app/common/mixins/index.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import activateMe from './i';
|
||||
import activateApi from './api';
|
||||
import activateStream from './stream';
|
||||
|
||||
export default me => {
|
||||
activateMe(me);
|
||||
activateApi(me);
|
||||
activateStream(me);
|
||||
};
|
||||
9
src/web/app/common/mixins/stream.js
Normal file
9
src/web/app/common/mixins/stream.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import * as riot from 'riot';
|
||||
import Connection from '../scripts/stream';
|
||||
|
||||
export default me => {
|
||||
const stream = me ? new Connection(me) : null;
|
||||
riot.mixin('stream', {
|
||||
stream: stream
|
||||
});
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue