-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathcontext.js
51 lines (46 loc) · 1.32 KB
/
context.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import merge from 'lodash/merge'
import find from 'lodash/find'
import { VuexOrmPluginConfig } from '../support/interfaces';
export default class Context {
/**
* Private constructor, called by the setup method
*
* @constructor
* @param {Components} components The Vuex-ORM Components collection
* @param {Options} options The options passed to VuexORM.install
*/
constructor(components, options) {
this.components = components;
this.options = merge({}, VuexOrmPluginConfig, options);
this.database = options.database;
if (!options.database) {
throw new Error('database option is required to initialise!');
}
}
/**
* This is called only once and creates a new instance of the Context.
* @param {Components} components The Vuex-ORM Components collection
* @param {Options} options The options passed to VuexORM.install
* @returns {Context}
*/
static setup(components, options) {
this.instance = new Context(components, options);
return this.instance;
}
/**
* Get the singleton instance of the context.
* @returns {Context}
*/
static getInstance() {
return this.instance;
}
/**
* Get Model from State
* @param {object} state
*/
getModelFromState(state) {
return find(this.database.entities, {
name: state.$name
}).model;
}
}