blob: c4c0948f0a87e03d477da578d722344cf7203c90 [file] [log] [blame]
Derick Montaguefded0d12019-12-11 06:16:40 -06001import Vue from 'vue';
2import Vuex from 'vuex';
Derick Montaguea2988f42020-01-17 13:46:30 -06003
Derick Montaguefded0d12019-12-11 06:16:40 -06004import GlobalStore from './modules/GlobalStore';
5import AuthenticationStore from './modules/Authentication/AuthenticanStore';
Yoshie Muranakac4e38ab2020-04-09 12:41:27 -07006import LdapStore from './modules/AccessControl/LdapStore';
Derick Montaguefded0d12019-12-11 06:16:40 -06007import LocalUserManagementStore from './modules/AccessControl/LocalUserMangementStore';
Yoshie Muranaka37393812020-03-24 15:25:24 -07008import SslCertificatesStore from './modules/AccessControl/SslCertificatesStore';
Dixsie Wolmersf65ee342020-01-22 19:47:56 -06009import FirmwareStore from './modules/Configuration/FirmwareStore';
Yoshie Muranakac05ff642020-02-26 14:23:15 -080010import BootSettingsStore from './modules/Control/BootSettingsStore';
Yoshie Muranakac11d3892020-02-19 08:07:40 -080011import ControlStore from './modules/Control/ControlStore';
Dixsie Wolmers4c69f5b2020-02-26 11:23:52 -060012import PowerControlStore from './modules/Control/PowerControlStore';
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060013import NetworkSettingStore from './modules/Configuration/NetworkSettingsStore';
14import EventLogStore from './modules/Health/EventLogStore';
Yoshie Muranaka30abccb2020-03-11 12:44:24 -070015import SensorsStore from './modules/Health/SensorsStore';
SurenNeware090c2d42020-04-01 14:07:27 +053016import ServerLedStore from './modules/Control/ServerLedStore';
Yoshie Muranaka56ee7692020-05-28 13:28:29 -070017import SystemStore from './modules/Health/SystemStore';
Yoshie Muranaka5918b482020-06-08 08:18:23 -070018import PowerSupplyStore from './modules/Health/PowerSupplyStore';
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070019import MemoryStore from './modules/Health/MemoryStore';
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070020import FanStore from './modules/Health/FanStore';
Yoshie Muranaka35080ac2020-01-17 15:38:57 -060021
Yoshie Muranakadc04feb2019-12-04 08:41:22 -080022import WebSocketPlugin from './plugins/WebSocketPlugin';
23
Derick Montaguea2988f42020-01-17 13:46:30 -060024Vue.use(Vuex);
25
26export default new Vuex.Store({
27 state: {},
28 mutations: {},
29 actions: {},
Yoshie Muranaka35080ac2020-01-17 15:38:57 -060030 modules: {
Yoshie Muranakab8b6f792019-12-03 14:47:32 -080031 global: GlobalStore,
Derick Montaguee080a1a2019-12-04 16:30:08 -060032 authentication: AuthenticationStore,
Yoshie Muranakac4e38ab2020-04-09 12:41:27 -070033 ldap: LdapStore,
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060034 localUsers: LocalUserManagementStore,
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060035 firmware: FirmwareStore,
Yoshie Muranakac05ff642020-02-26 14:23:15 -080036 hostBootSettings: BootSettingsStore,
Yoshie Muranakac11d3892020-02-19 08:07:40 -080037 controls: ControlStore,
Dixsie Wolmers4c69f5b2020-02-26 11:23:52 -060038 powerControl: PowerControlStore,
Yoshie Muranaka5918b482020-06-08 08:18:23 -070039 powerSupply: PowerSupplyStore,
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060040 networkSettings: NetworkSettingStore,
Yoshie Muranaka30abccb2020-03-11 12:44:24 -070041 eventLog: EventLogStore,
Yoshie Muranaka37393812020-03-24 15:25:24 -070042 sensors: SensorsStore,
SurenNeware090c2d42020-04-01 14:07:27 +053043 sslCertificates: SslCertificatesStore,
Yoshie Muranaka56ee7692020-05-28 13:28:29 -070044 serverLed: ServerLedStore,
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070045 system: SystemStore,
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070046 memory: MemoryStore,
47 fan: FanStore
Yoshie Muranakadc04feb2019-12-04 08:41:22 -080048 },
49 plugins: [WebSocketPlugin]
Derick Montaguea2988f42020-01-17 13:46:30 -060050});