diff --git a/client/components/App.tsx b/client/components/App.tsx index 7f9a4c3..2d8a52a 100644 --- a/client/components/App.tsx +++ b/client/components/App.tsx @@ -5,7 +5,7 @@ import { Container } from "semantic-ui-react"; import { MessagesView, NavBar } from "@client/components"; import * as p from "@client/pages"; -import * as rp from "@client/routePaths"; +import * as route from "@client/routePaths"; // tslint:disable:ordered-imports import "font-awesome/css/font-awesome.css"; @@ -18,8 +18,8 @@ function NavContainer() { - - + + @@ -31,8 +31,8 @@ function NavContainer() { export default function App() { return ( - - + + ); diff --git a/client/components/DeviceView.tsx b/client/components/DeviceView.tsx index fd5a5b5..6ed54c8 100644 --- a/client/components/DeviceView.tsx +++ b/client/components/DeviceView.tsx @@ -4,7 +4,7 @@ import * as React from "react"; import { Grid, Header, Icon, Item, SemanticICONS } from "semantic-ui-react"; import * as p from "@client/pages"; -import * as rp from "@client/routePaths"; +import * as route from "@client/routePaths"; import { AppState, injectState } from "@client/state"; import { ConnectionState as ConState } from "@common/sprinklersRpc"; import { Route, RouteComponentProps, withRouter } from "react-router"; @@ -67,7 +67,7 @@ class DeviceView extends React.Component - + ); return ( diff --git a/client/components/NavBar.tsx b/client/components/NavBar.tsx index e3ce604..541fae2 100644 --- a/client/components/NavBar.tsx +++ b/client/components/NavBar.tsx @@ -3,7 +3,7 @@ import * as React from "react"; import { Link } from "react-router-dom"; import { Menu } from "semantic-ui-react"; -import * as rp from "@client/routePaths"; +import * as route from "@client/routePaths"; import { AppState, ConsumeState, injectState } from "@client/state"; interface NavItemProps { @@ -26,17 +26,17 @@ function NavBar({ appState }: { appState: AppState }) { let loginMenu; if (appState.isLoggedIn) { loginMenu = ( - Logout + Logout ); } else { loginMenu = ( - Login + Login ); } return ( - Device grinklers - Messages test + Device grinklers + Messages test {loginMenu} diff --git a/client/components/ProgramTable.tsx b/client/components/ProgramTable.tsx index a6aa60e..c67eaeb 100644 --- a/client/components/ProgramTable.tsx +++ b/client/components/ProgramTable.tsx @@ -5,7 +5,7 @@ import { Link } from "react-router-dom"; import { Button, ButtonProps, Form, Icon, Table } from "semantic-ui-react"; import { ProgramSequenceView, ScheduleView } from "@client/components"; -import * as rp from "@client/routePaths"; +import * as route from "@client/routePaths"; import { Program, SprinklersDevice } from "@common/sprinklersRpc"; @observer @@ -21,7 +21,7 @@ class ProgramRows extends React.Component<{ const { name, running, enabled, schedule, sequence } = program; const buttonStyle: ButtonProps = { size: "small", compact: false }; - const detailUrl = rp.program(device.id, program.id); + const detailUrl = route.program(device.id, program.id); const stopStartButton = (