mirror of
https://github.com/flarum/framework.git
synced 2024-12-03 07:33:36 +08:00
ab6c03c0cc
- Use JSX for templates - Docblock/comment everything - Mostly passes ESLint (still some work to do) - Lots of renaming, refactoring, etc. CSS hasn't been updated yet.
33 lines
1002 B
JavaScript
33 lines
1002 B
JavaScript
import Store from 'flarum/Store';
|
|
import Forum from 'flarum/models/Forum';
|
|
import User from 'flarum/models/User';
|
|
import Discussion from 'flarum/models/Discussion';
|
|
import Post from 'flarum/models/Post';
|
|
import Group from 'flarum/models/Group';
|
|
import Activity from 'flarum/models/Activity';
|
|
import Notification from 'flarum/models/Notification';
|
|
|
|
/**
|
|
* The `store` initializer creates the application's data store and registers
|
|
* the default resource types to their models. It then preloads any data on the
|
|
* application's `preload` property into the store. Finally, it sets the
|
|
* application's `forum` instance to the one that was preloaded.
|
|
*
|
|
* @param {App} app
|
|
*/
|
|
export default function store(app) {
|
|
app.store = new Store({
|
|
forums: Forum,
|
|
users: User,
|
|
discussions: Discussion,
|
|
posts: Post,
|
|
groups: Group,
|
|
activity: Activity,
|
|
notifications: Notification
|
|
});
|
|
|
|
app.store.pushPayload({data: app.preload.data});
|
|
|
|
app.forum = app.store.getById('forums', 1);
|
|
}
|