You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
681 B
28 lines
681 B
import { ISprinklersApi } from "@common/sprinklers"; |
|
import { MqttApiClient } from "@common/sprinklers/mqtt"; |
|
|
|
import { UiMessage, UiStore } from "./ui"; |
|
export { UiMessage, UiStore }; |
|
export * from "./inject"; |
|
|
|
export interface IState { |
|
sprinklersApi: ISprinklersApi; |
|
uiStore: UiStore; |
|
} |
|
|
|
export class State implements IState { |
|
sprinklersApi: ISprinklersApi = new MqttApiClient(`ws://${location.hostname}:1884`); |
|
uiStore = new UiStore(); |
|
|
|
constructor() { |
|
this.uiStore.addMessage({ header: "asdf", content: "boo!", error: true }); |
|
} |
|
|
|
start() { |
|
this.sprinklersApi.start(); |
|
} |
|
} |
|
|
|
// const state = new State(); |
|
|
|
// export default state;
|
|
|