Started work on adding a server backend
This commit is contained in:
parent
8c94246f33
commit
18dbefbdb7
@ -1,11 +1,11 @@
|
||||
import { observer } from "mobx-react";
|
||||
import DevTools from "mobx-react-devtools";
|
||||
import * as React from "react";
|
||||
|
||||
import { Item } from "semantic-ui-react";
|
||||
|
||||
import { UiStore } from "app/ui";
|
||||
import { SprinklersDevice } from "common/sprinklers";
|
||||
import { DeviceView, MessagesView } from ".";
|
||||
import { SprinklersDevice } from "../sprinklers";
|
||||
import { UiStore } from "../ui";
|
||||
|
||||
import "app/style/app.css";
|
||||
import "font-awesome/css/font-awesome.css";
|
||||
|
@ -1,11 +1,11 @@
|
||||
import * as classNames from "classnames";
|
||||
import { observer } from "mobx-react";
|
||||
import * as React from "react";
|
||||
import FontAwesome = require("react-fontawesome");
|
||||
import { Header, Item } from "semantic-ui-react";
|
||||
import { ProgramTable, RunSectionForm, SectionRunnerView, SectionTable } from ".";
|
||||
|
||||
import { SprinklersDevice } from "../sprinklers";
|
||||
import FontAwesome = require("react-fontawesome");
|
||||
import { SprinklersDevice } from "common/sprinklers";
|
||||
|
||||
const ConnectionState = ({ connected }: { connected: boolean }) => {
|
||||
const classes = classNames({
|
||||
|
@ -1,6 +1,7 @@
|
||||
import * as React from "react";
|
||||
import { Input, InputOnChangeData } from "semantic-ui-react";
|
||||
import { Duration } from "../sprinklers";
|
||||
|
||||
import { Duration } from "common/sprinklers";
|
||||
|
||||
export default class DurationInput extends React.Component<{
|
||||
duration: Duration,
|
||||
|
@ -1,7 +1,8 @@
|
||||
import { observer } from "mobx-react";
|
||||
import * as React from "react";
|
||||
import { Message, MessageList, TransitionGroup } from "semantic-ui-react";
|
||||
import { Message as UiMessage, UiStore } from "../ui";
|
||||
|
||||
import { Message as UiMessage, UiStore } from "app/ui";
|
||||
|
||||
class MessageView extends React.Component<{
|
||||
uiStore: UiStore,
|
||||
|
@ -1,7 +1,8 @@
|
||||
import { observer } from "mobx-react";
|
||||
import * as React from "react";
|
||||
import { Table } from "semantic-ui-react";
|
||||
import { Program, Schedule } from "../sprinklers";
|
||||
|
||||
import { Program, Schedule } from "common/sprinklers";
|
||||
|
||||
@observer
|
||||
export class ScheduleView extends React.Component<{ schedule: Schedule }> {
|
||||
|
@ -2,8 +2,9 @@ import {computed} from "mobx";
|
||||
import {observer} from "mobx-react";
|
||||
import * as React from "react";
|
||||
import {DropdownItemProps, DropdownProps, Form, Header, Segment} from "semantic-ui-react";
|
||||
|
||||
import {Duration, Section} from "common/sprinklers";
|
||||
import {DurationInput} from ".";
|
||||
import {Duration, Section} from "../sprinklers";
|
||||
|
||||
@observer
|
||||
export default class RunSectionForm extends React.Component<{
|
||||
|
@ -1,7 +1,8 @@
|
||||
import {observer} from "mobx-react";
|
||||
import * as React from "react";
|
||||
import {Segment} from "semantic-ui-react";
|
||||
import {SectionRunner} from "../sprinklers";
|
||||
|
||||
import {SectionRunner} from "common/sprinklers";
|
||||
|
||||
@observer
|
||||
export default class SectionRunnerView extends React.Component<{ sectionRunner: SectionRunner }, {}> {
|
||||
|
@ -1,10 +1,10 @@
|
||||
import * as classNames from "classnames";
|
||||
import { observer } from "mobx-react";
|
||||
import * as React from "react";
|
||||
import FontAwesome = require("react-fontawesome");
|
||||
import { Table } from "semantic-ui-react";
|
||||
|
||||
import { Section } from "../sprinklers";
|
||||
import FontAwesome = require("react-fontawesome");
|
||||
import { Section } from "common/sprinklers";
|
||||
|
||||
/* tslint:disable:object-literal-sort-keys */
|
||||
|
||||
|
@ -25,8 +25,8 @@ const doRender = (Component: typeof App) => {
|
||||
doRender(App);
|
||||
|
||||
if (module.hot) {
|
||||
module.hot.accept("./components/App", () => {
|
||||
const NextApp = require<any>("./components/App").default as typeof App;
|
||||
module.hot.accept("app/components/App", () => {
|
||||
const NextApp = require<any>("app/components/App").default as typeof App;
|
||||
doRender(NextApp);
|
||||
});
|
||||
}
|
||||
|
@ -1,5 +1,7 @@
|
||||
import { EventEmitter } from "events";
|
||||
import "paho-mqtt";
|
||||
import MQTT = Paho.MQTT;
|
||||
|
||||
import {
|
||||
Duration,
|
||||
ISprinklersApi,
|
||||
@ -11,9 +13,8 @@ import {
|
||||
SectionRunner,
|
||||
SprinklersDevice,
|
||||
TimeOfDay,
|
||||
} from "./sprinklers";
|
||||
import { checkedIndexOf } from "./utils";
|
||||
import MQTT = Paho.MQTT;
|
||||
} from "common/sprinklers";
|
||||
import { checkedIndexOf, getRandomId } from "common/utils";
|
||||
|
||||
export class MqttApiClient implements ISprinklersApi {
|
||||
client: MQTT.Client;
|
||||
|
@ -1,5 +1,6 @@
|
||||
import {observable} from "mobx";
|
||||
import { getRandomId } from "./utils";
|
||||
|
||||
import { getRandomId } from "common/utils";
|
||||
|
||||
export class Message {
|
||||
id: string;
|
||||
|
@ -6,7 +6,12 @@
|
||||
"target": "es5",
|
||||
"lib": ["es6", "dom"],
|
||||
"typeRoots": ["node_modules/@types"],
|
||||
"strict": true
|
||||
"strict": true,
|
||||
"baseUrl": "..",
|
||||
"paths": {
|
||||
"common/*": [ "../common/*" ],
|
||||
"app/*": [ "./*" ]
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"./node_modules/@types/webpack-env/index.d.ts",
|
@ -3,7 +3,7 @@ const webpack = require("webpack");
|
||||
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
||||
|
||||
module.exports = {
|
||||
devtool: "inline-source-map",
|
||||
devtool: "eval-source-map",
|
||||
output: {
|
||||
path: path.resolve(__dirname, "..", "build"),
|
||||
filename: "bundle.js"
|
||||
@ -11,14 +11,20 @@ module.exports = {
|
||||
resolve: {
|
||||
extensions: [".ts", ".tsx", ".js"],
|
||||
alias: {
|
||||
app: path.resolve(__dirname, "..", "app")
|
||||
app: path.resolve(__dirname, "..", "app"),
|
||||
common: path.resolve(__dirname, "..", "common"),
|
||||
}
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{ test: /\.css$/, loader: "style-loader!css-loader" },
|
||||
{ test: /\.(ttf|eot|svg|woff(2)?|png|jpg)(\?[a-z0-9=&.]+)?$/, loader: "file-loader" },
|
||||
{ test: /\.tsx?$/, loader: "awesome-typescript-loader" },
|
||||
{ test: /\.css$/, use: "style-loader!css-loader" },
|
||||
{ test: /\.(ttf|eot|svg|woff(2)?|png|jpg)(\?[a-z0-9=&.]+)?$/, use: "file-loader" },
|
||||
{
|
||||
test: /\.tsx?$/, use: {
|
||||
loader: "awesome-typescript-loader",
|
||||
options: { configFileName: path.resolve(__dirname, "..", "app", "tsconfig.json") }
|
||||
},
|
||||
},
|
||||
]
|
||||
},
|
||||
plugins: [
|
||||
|
@ -10,7 +10,7 @@ module.exports = webpackMerge.smart(base, {
|
||||
"core-js",
|
||||
"./app/script/index.tsx"
|
||||
],
|
||||
devtool: "inline-source-map",
|
||||
devtool: "eval-source-map",
|
||||
plugins: [
|
||||
new webpack.NamedModulesPlugin(),
|
||||
// new webpack.HotModuleReplacementPlugin(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user