blob: 6ad05390f967029822a2a75bd9c841f7fdcd2a5e [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 Muranaka09e8b5d2020-06-08 07:36:59 -070021import ChassisStore from './modules/Health/ChassisStore';
Yoshie Muranaka54c6bfc2020-06-12 08:29:42 -070022import BmcStore from './modules/Health/BmcStore';
Yoshie Muranaka35080ac2020-01-17 15:38:57 -060023
Yoshie Muranakadc04feb2019-12-04 08:41:22 -080024import WebSocketPlugin from './plugins/WebSocketPlugin';
25
Derick Montaguea2988f42020-01-17 13:46:30 -060026Vue.use(Vuex);
27
28export default new Vuex.Store({
29 state: {},
30 mutations: {},
31 actions: {},
Yoshie Muranaka35080ac2020-01-17 15:38:57 -060032 modules: {
Yoshie Muranakab8b6f792019-12-03 14:47:32 -080033 global: GlobalStore,
Derick Montaguee080a1a2019-12-04 16:30:08 -060034 authentication: AuthenticationStore,
Yoshie Muranakac4e38ab2020-04-09 12:41:27 -070035 ldap: LdapStore,
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060036 localUsers: LocalUserManagementStore,
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060037 firmware: FirmwareStore,
Yoshie Muranakac05ff642020-02-26 14:23:15 -080038 hostBootSettings: BootSettingsStore,
Yoshie Muranakac11d3892020-02-19 08:07:40 -080039 controls: ControlStore,
Dixsie Wolmers4c69f5b2020-02-26 11:23:52 -060040 powerControl: PowerControlStore,
Yoshie Muranaka5918b482020-06-08 08:18:23 -070041 powerSupply: PowerSupplyStore,
Dixsie Wolmersf65ee342020-01-22 19:47:56 -060042 networkSettings: NetworkSettingStore,
Yoshie Muranaka30abccb2020-03-11 12:44:24 -070043 eventLog: EventLogStore,
Yoshie Muranaka37393812020-03-24 15:25:24 -070044 sensors: SensorsStore,
SurenNeware090c2d42020-04-01 14:07:27 +053045 sslCertificates: SslCertificatesStore,
Yoshie Muranaka56ee7692020-05-28 13:28:29 -070046 serverLed: ServerLedStore,
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070047 system: SystemStore,
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070048 memory: MemoryStore,
Yoshie Muranaka09e8b5d2020-06-08 07:36:59 -070049 fan: FanStore,
Yoshie Muranaka54c6bfc2020-06-12 08:29:42 -070050 chassis: ChassisStore,
51 bmc: BmcStore
Yoshie Muranakadc04feb2019-12-04 08:41:22 -080052 },
53 plugins: [WebSocketPlugin]
Derick Montaguea2988f42020-01-17 13:46:30 -060054});