├── .editorconfig ├── .env.example ├── .gitignore ├── .npmignore ├── .nvmrc ├── .travis.yml ├── Procfile ├── README.md ├── e2e ├── actions │ └── devices.page.actions.js ├── mqtt-api │ └── index.js ├── pobjects │ ├── pages │ │ ├── add.new.device.page.js │ │ ├── dashboard.page.js │ │ ├── devices.page.js │ │ └── scenarios.page.js │ └── widgets │ │ └── nav.widget.js ├── properties.js ├── tests │ ├── add.new.device.page.spec.js │ ├── add.remove.device.spec.js │ ├── dashboard.page.spec.js │ ├── devices.page.spec.js │ ├── navigation.spec.js │ └── scenarios.page.spec.js └── utils │ └── wait.utils.js ├── env.config.js ├── env ├── env.common.config.js ├── env.config.js ├── env.default.config.js ├── env.fakeBack.config.js ├── env.heroku-qa.config.js ├── env.heroku.config.js ├── env.production.config.js ├── karma.ci.conf.js ├── protractor.conf.js ├── webpack.common.js ├── webpack.dev.config.js ├── webpack.prod.config.js └── webpack.test.config.js ├── karma.conf.js ├── package.json ├── server ├── index.html ├── index.js ├── routes │ ├── index.js │ ├── scenarios │ │ ├── index.js │ │ ├── scenario.json │ │ └── scenarios.json │ └── sensors │ │ ├── index.js │ │ └── sensors.json └── socket │ ├── index.js │ └── sensor-events.js ├── src ├── app │ ├── app.component.test.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── app.style.scss │ ├── app.template.html │ ├── config.routing.ts │ ├── constructor │ ├── core │ │ ├── auth │ │ │ ├── auth.interfaces.ts │ │ │ ├── auth.service.test.ts │ │ │ └── auth.service.ts │ │ ├── browser │ │ │ ├── window-ref.service.test.ts │ │ │ └── window-ref.service.ts │ │ ├── core.module.ts │ │ ├── files │ │ │ ├── files.service.test.ts │ │ │ └── files.service.ts │ │ ├── header │ │ │ ├── header-navigation-routes.ts │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ ├── header.component.test.ts │ │ │ ├── header.component.ts │ │ │ ├── partials │ │ │ │ ├── Index.png │ │ │ │ ├── avatar.png │ │ │ │ ├── dashboard.svg │ │ │ │ ├── deviceList.svg │ │ │ │ ├── help.svg │ │ │ │ ├── login.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── logout.svg │ │ │ │ ├── registration.svg │ │ │ │ ├── scenarioList.png │ │ │ │ ├── settings.svg │ │ │ │ └── statistic.svg │ │ │ ├── timepiece │ │ │ │ ├── timepiece.component.html │ │ │ │ ├── timepiece.component.scss │ │ │ │ ├── timepiece.component.ts │ │ │ │ ├── timepiece.controller.test.ts │ │ │ │ └── timepiece.module.ts │ │ │ └── user │ │ │ │ ├── config.avatar.ts │ │ │ │ ├── user.component.html │ │ │ │ ├── user.component.scss │ │ │ │ ├── user.component.test.ts │ │ │ │ ├── user.component.ts │ │ │ │ └── user.interfaces.ts │ │ ├── main │ │ │ ├── main.component.html │ │ │ ├── main.component.scss │ │ │ ├── main.component.test.ts │ │ │ └── main.component.ts │ │ ├── navigation-route.model.ts │ │ ├── profile │ │ │ ├── profile.guards.test.ts │ │ │ ├── profile.guards.ts │ │ │ ├── profile.interfaces.ts │ │ │ ├── profile.resolver.test.ts │ │ │ ├── profile.resolver.ts │ │ │ ├── profile.service.test.ts │ │ │ └── profile.service.ts │ │ ├── screen │ │ │ ├── screen.component.html │ │ │ ├── screen.component.test.ts │ │ │ └── screen.component.ts │ │ ├── sh-http │ │ │ ├── sh-http-utils.service.test.ts │ │ │ ├── sh-http-utils.service.ts │ │ │ ├── sh-http.service.test.ts │ │ │ ├── sh-http.service.ts │ │ │ ├── sh-request-options.test.ts │ │ │ └── sh-request-options.ts │ │ └── storage │ │ │ ├── storage.service.test.ts │ │ │ └── storage.service.ts │ ├── devices │ │ ├── device-list │ │ │ ├── assets │ │ │ │ ├── empty-sensors-list.png │ │ │ │ └── statistic.svg │ │ │ ├── device-list.component.test.ts │ │ │ ├── device-list.component.ts │ │ │ ├── device-list.style.scss │ │ │ └── device-list.template.html │ │ ├── device-widgets │ │ │ ├── assets │ │ │ │ ├── close-icon.svg │ │ │ │ ├── statistic.svg │ │ │ │ └── statistics-icon.svg │ │ │ ├── device-widget.component.test.ts │ │ │ ├── device-widget.component.ts │ │ │ ├── device-widget.service.test.ts │ │ │ ├── device-widget.service.ts │ │ │ ├── device-widget.style.scss │ │ │ ├── device-widget.template.html │ │ │ ├── sensor-widget │ │ │ │ ├── sensor-widget.component.ts │ │ │ │ └── sensor-widget.template.html │ │ │ ├── servo-widget │ │ │ │ ├── servo-widget.component.test.ts │ │ │ │ ├── servo-widget.component.ts │ │ │ │ ├── servo-widget.style.scss │ │ │ │ └── servo-widget.template.html │ │ │ ├── shared │ │ │ │ ├── base-output-sensor │ │ │ │ │ ├── base-output-sensor.test.ts │ │ │ │ │ └── base-output-sensor.ts │ │ │ │ └── base-sensor │ │ │ │ │ ├── base-sensor.test.ts │ │ │ │ │ └── base-sensor.ts │ │ │ └── switcher-widget │ │ │ │ ├── index.ts │ │ │ │ ├── switcher-widget.component.test.ts │ │ │ │ ├── switcher-widget.component.ts │ │ │ │ ├── switcher-widget.style.scss │ │ │ │ └── switcher-widget.template.html │ │ ├── device.model.ts │ │ ├── device.types.ts │ │ ├── device │ │ │ ├── device.component.test.ts │ │ │ ├── device.component.ts │ │ │ ├── device.style.scss │ │ │ └── device.template.html │ │ ├── devices.module.ts │ │ ├── devices.resolver.test.ts │ │ ├── devices.resolver.ts │ │ ├── devices.service.test.ts │ │ └── devices.service.ts │ ├── help │ │ ├── help.component.html │ │ ├── help.component.scss │ │ ├── help.component.ts │ │ ├── help.module.ts │ │ ├── help.routing.ts │ │ ├── help.test.ts │ │ └── partials │ │ │ └── FAQ.png │ ├── home │ │ ├── assets │ │ │ └── shape-copy-7.svg │ │ ├── dashboard-view │ │ │ ├── dashboard-view.component.test.ts │ │ │ ├── dashboard-view.component.ts │ │ │ ├── dashboard-view.style.scss │ │ │ └── dashboard-view.template.html │ │ ├── home-resolve.service.test.ts │ │ ├── home-resolve.service.ts │ │ ├── home.component.test.ts │ │ ├── home.component.ts │ │ ├── home.declarations.ts │ │ ├── home.module.ts │ │ ├── home.routing.config.ts │ │ ├── home.routing.ts │ │ ├── home.service.test.ts │ │ ├── home.service.ts │ │ ├── home.style.scss │ │ ├── home.template.html │ │ ├── map-view │ │ │ ├── map-view.component.test.ts │ │ │ ├── map-view.component.ts │ │ │ ├── map-view.style.scss │ │ │ └── map-view.template.html │ │ └── view-list │ │ │ ├── view-list.component.test.ts │ │ │ ├── view-list.component.ts │ │ │ ├── view-list.style.scss │ │ │ └── view-list.template.html │ ├── index.ts │ ├── login │ │ ├── fb-callback.component.html │ │ ├── fb-callback.component.test.ts │ │ ├── fb-callback.component.ts │ │ ├── login.component.html │ │ ├── login.component.scss │ │ ├── login.component.test.ts │ │ ├── login.component.ts │ │ ├── login.module.ts │ │ ├── login.routing.ts │ │ └── partials │ │ │ └── facebook.svg │ ├── logout │ │ ├── logout.component.test.ts │ │ ├── logout.component.ts │ │ ├── logout.module.ts │ │ ├── logout.routing.ts │ │ └── logout.test.ts │ ├── main.css │ ├── registration │ │ ├── equal-to-validator │ │ │ ├── equal-to.directive.test.ts │ │ │ ├── equal-to.directive.ts │ │ │ └── equal-to.interfaces.ts │ │ ├── registration.component.test.ts │ │ ├── registration.component.ts │ │ ├── registration.declarations.ts │ │ ├── registration.module.ts │ │ ├── registration.routing.ts │ │ ├── registration.style.scss │ │ └── registration.template.html │ ├── scenarios │ │ ├── scenario-details │ │ │ ├── editor │ │ │ │ ├── create-scenario-editor │ │ │ │ │ ├── create-scenario-editor.component.test.ts │ │ │ │ │ ├── create-scenario-editor.component.ts │ │ │ │ │ ├── create-scenario-editor.template.html │ │ │ │ │ └── scenario-editor.style.scss │ │ │ │ ├── edit-scenario-editor │ │ │ │ │ ├── edit-scenario-editor.component.test.ts │ │ │ │ │ └── edit-scenario-editor.component.ts │ │ │ │ └── scenario-editor │ │ │ │ │ ├── code-mirror-events.const.ts │ │ │ │ │ ├── scenario-editor.component.test.ts │ │ │ │ │ └── scenario-editor.component.ts │ │ │ ├── scenario-details.component.test.ts │ │ │ ├── scenario-details.component.ts │ │ │ ├── scenario-details.style.scss │ │ │ ├── scenario-details.template.html │ │ │ └── wizard │ │ │ │ ├── create-scenario-wizard │ │ │ │ ├── create-scenario-wizard.component.test.ts │ │ │ │ ├── create-scenario-wizard.component.ts │ │ │ │ └── create-scenario-wizard.template.html │ │ │ │ ├── edit-scenario-wizard │ │ │ │ ├── edit-scenario-wizard.component.test.ts │ │ │ │ ├── edit-scenario-wizard.component.ts │ │ │ │ └── edit-scenario-wizard.template.html │ │ │ │ ├── scenario-entities │ │ │ │ ├── action.ts │ │ │ │ ├── condition.ts │ │ │ │ ├── logical-operators.const.ts │ │ │ │ └── scenario.ts │ │ │ │ └── scenario-wizard │ │ │ │ ├── scenario-wizard.component.test.ts │ │ │ │ ├── scenario-wizard.component.ts │ │ │ │ ├── scenario-wizard.style.scss │ │ │ │ └── scenario-wizard.template.html │ │ ├── scenarios-list │ │ │ ├── assets │ │ │ │ └── empty-scenarios-list.png │ │ │ ├── scenario-list.component.test.ts │ │ │ ├── scenario-list.component.ts │ │ │ ├── scenario-list.resolve.service.test.ts │ │ │ ├── scenario-list.resolve.service.ts │ │ │ ├── scenario-list.style.scss │ │ │ ├── scenario-list.template.html │ │ │ ├── scenario-status.service.test.ts │ │ │ └── scenario-status.service.ts │ │ ├── scenarios.declarations.ts │ │ ├── scenarios.module.ts │ │ ├── scenarios.routing.ts │ │ └── shared │ │ │ ├── scenario.service.test.ts │ │ │ └── scenario.service.ts │ ├── settings │ │ ├── devices │ │ │ ├── device-details-page │ │ │ │ ├── device-details-page.component.test.ts │ │ │ │ ├── device-details-page.component.ts │ │ │ │ ├── device-details-page.style.scss │ │ │ │ └── device-details-page.template.html │ │ │ └── device-list-page │ │ │ │ ├── device-list-page.component.test.ts │ │ │ │ ├── device-list-page.component.ts │ │ │ │ └── device-list-page.template.html │ │ ├── general │ │ │ ├── general.component.ts │ │ │ └── general.template.html │ │ ├── roles │ │ │ ├── roles.component.test.ts │ │ │ ├── roles.component.ts │ │ │ ├── roles.service.test.ts │ │ │ ├── roles.service.ts │ │ │ └── roles.template.html │ │ ├── settings-navigation-routes.ts │ │ ├── settings.component.scss │ │ ├── settings.component.test.ts │ │ ├── settings.component.ts │ │ ├── settings.declarations.ts │ │ ├── settings.module.ts │ │ ├── settings.routing.ts │ │ └── settings.template.html │ ├── shared │ │ ├── button.scss │ │ ├── components │ │ │ └── protected-component │ │ │ │ ├── protected.component.test.ts │ │ │ │ ├── protected.component.ts │ │ │ │ └── protected.template.html │ │ ├── dialog │ │ │ ├── dialog-confirm.component.test.ts │ │ │ ├── dialog-confirm.component.ts │ │ │ ├── dialog-confirm.html │ │ │ ├── dialog.service.test.ts │ │ │ └── dialog.service.ts │ │ ├── picture-resolver │ │ │ ├── picture-resolver.service.test.ts │ │ │ └── picture-resolver.service.ts │ │ ├── shared.module.ts │ │ └── view │ │ │ ├── dashboard-view.dto.ts │ │ │ ├── map-view.dto.ts │ │ │ └── view.dto.ts │ └── statistic │ │ ├── base-chart │ │ ├── base-chart.component.test.ts │ │ └── base-chart.component.ts │ │ ├── chart-widget │ │ ├── chart-widget.component.test.ts │ │ ├── chart-widget.component.ts │ │ ├── chart-widget.styles.scss │ │ └── chart-widget.template.html │ │ ├── sensor-statistic │ │ ├── sensor-statistic-resolve.service.test.ts │ │ ├── sensor-statistic-resolve.service.ts │ │ ├── sensor-statistic.component.test.ts │ │ ├── sensor-statistic.component.ts │ │ ├── sensor-statistic.styles.scss │ │ └── sensor-statistic.template.html │ │ ├── statistic.component.test.ts │ │ ├── statistic.component.ts │ │ ├── statistic.declarations.ts │ │ ├── statistic.module.ts │ │ ├── statistic.routing.config.ts │ │ ├── statistic.routing.ts │ │ ├── statistic.service.test.ts │ │ ├── statistic.service.ts │ │ ├── statistic.style.scss │ │ ├── statistic.template.html │ │ └── switcher-statistics │ │ └── switcher-column-chart │ │ ├── switcher-column-chart.component.test.ts │ │ ├── switcher-column-chart.component.ts │ │ └── switcher-column-chart.template.html ├── custom-typings.d.ts ├── index.html ├── main.browser.ts ├── polyfills.browser.ts └── vendor.browser.ts ├── test ├── index.ts └── jasmine │ └── create-spy-component.js ├── tsconfig.json ├── tslint.json ├── typedoc.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/** 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/.travis.yml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/README.md -------------------------------------------------------------------------------- /e2e/actions/devices.page.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/actions/devices.page.actions.js -------------------------------------------------------------------------------- /e2e/mqtt-api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/mqtt-api/index.js -------------------------------------------------------------------------------- /e2e/pobjects/pages/add.new.device.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/pobjects/pages/add.new.device.page.js -------------------------------------------------------------------------------- /e2e/pobjects/pages/dashboard.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/pobjects/pages/dashboard.page.js -------------------------------------------------------------------------------- /e2e/pobjects/pages/devices.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/pobjects/pages/devices.page.js -------------------------------------------------------------------------------- /e2e/pobjects/pages/scenarios.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/pobjects/pages/scenarios.page.js -------------------------------------------------------------------------------- /e2e/pobjects/widgets/nav.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/pobjects/widgets/nav.widget.js -------------------------------------------------------------------------------- /e2e/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/properties.js -------------------------------------------------------------------------------- /e2e/tests/add.new.device.page.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/tests/add.new.device.page.spec.js -------------------------------------------------------------------------------- /e2e/tests/add.remove.device.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/tests/add.remove.device.spec.js -------------------------------------------------------------------------------- /e2e/tests/dashboard.page.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/tests/dashboard.page.spec.js -------------------------------------------------------------------------------- /e2e/tests/devices.page.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/tests/devices.page.spec.js -------------------------------------------------------------------------------- /e2e/tests/navigation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/tests/navigation.spec.js -------------------------------------------------------------------------------- /e2e/tests/scenarios.page.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/tests/scenarios.page.spec.js -------------------------------------------------------------------------------- /e2e/utils/wait.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/e2e/utils/wait.utils.js -------------------------------------------------------------------------------- /env.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env.config.js -------------------------------------------------------------------------------- /env/env.common.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/env.common.config.js -------------------------------------------------------------------------------- /env/env.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/env.config.js -------------------------------------------------------------------------------- /env/env.default.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/env.default.config.js -------------------------------------------------------------------------------- /env/env.fakeBack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/env.fakeBack.config.js -------------------------------------------------------------------------------- /env/env.heroku-qa.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/env.heroku-qa.config.js -------------------------------------------------------------------------------- /env/env.heroku.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/env.heroku.config.js -------------------------------------------------------------------------------- /env/env.production.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/env.production.config.js -------------------------------------------------------------------------------- /env/karma.ci.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/karma.ci.conf.js -------------------------------------------------------------------------------- /env/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/protractor.conf.js -------------------------------------------------------------------------------- /env/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/webpack.common.js -------------------------------------------------------------------------------- /env/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/webpack.dev.config.js -------------------------------------------------------------------------------- /env/webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/webpack.prod.config.js -------------------------------------------------------------------------------- /env/webpack.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/env/webpack.test.config.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./env/karma.ci.conf'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/package.json -------------------------------------------------------------------------------- /server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/index.html -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/index.js -------------------------------------------------------------------------------- /server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/routes/index.js -------------------------------------------------------------------------------- /server/routes/scenarios/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/routes/scenarios/index.js -------------------------------------------------------------------------------- /server/routes/scenarios/scenario.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/routes/scenarios/scenario.json -------------------------------------------------------------------------------- /server/routes/scenarios/scenarios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/routes/scenarios/scenarios.json -------------------------------------------------------------------------------- /server/routes/sensors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/routes/sensors/index.js -------------------------------------------------------------------------------- /server/routes/sensors/sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/routes/sensors/sensors.json -------------------------------------------------------------------------------- /server/socket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/socket/index.js -------------------------------------------------------------------------------- /server/socket/sensor-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/server/socket/sensor-events.js -------------------------------------------------------------------------------- /src/app/app.component.test.ts: -------------------------------------------------------------------------------- 1 | describe('App', () => {}); 2 | -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/app.routing.ts -------------------------------------------------------------------------------- /src/app/app.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/app.style.scss -------------------------------------------------------------------------------- /src/app/app.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/app.template.html -------------------------------------------------------------------------------- /src/app/config.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/config.routing.ts -------------------------------------------------------------------------------- /src/app/constructor/can-deactivate-constructor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/can-deactivate-constructor.test.ts -------------------------------------------------------------------------------- /src/app/constructor/can-deactivate-constructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/can-deactivate-constructor.ts -------------------------------------------------------------------------------- /src/app/constructor/constructor.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/constructor.component.test.ts -------------------------------------------------------------------------------- /src/app/constructor/constructor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/constructor.component.ts -------------------------------------------------------------------------------- /src/app/constructor/constructor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/constructor.module.ts -------------------------------------------------------------------------------- /src/app/constructor/constructor.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/constructor.routing.ts -------------------------------------------------------------------------------- /src/app/constructor/constructor.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/constructor.service.test.ts -------------------------------------------------------------------------------- /src/app/constructor/constructor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/constructor.service.ts -------------------------------------------------------------------------------- /src/app/constructor/constructor.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/constructor.style.scss -------------------------------------------------------------------------------- /src/app/constructor/constructor.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/constructor.template.html -------------------------------------------------------------------------------- /src/app/constructor/dashboard/dashboard-constructor.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/dashboard/dashboard-constructor.component.test.ts -------------------------------------------------------------------------------- /src/app/constructor/dashboard/dashboard-constructor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/dashboard/dashboard-constructor.component.ts -------------------------------------------------------------------------------- /src/app/constructor/dashboard/dashboard-constructor.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/dashboard/dashboard-constructor.style.scss -------------------------------------------------------------------------------- /src/app/constructor/dashboard/dashboard-constructor.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/dashboard/dashboard-constructor.template.html -------------------------------------------------------------------------------- /src/app/constructor/devices/devices.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/devices/devices.component.ts -------------------------------------------------------------------------------- /src/app/constructor/devices/devices.style.scss: -------------------------------------------------------------------------------- 1 | sh-device { 2 | position: absolute; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/constructor/devices/devices.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/devices/devices.template.html -------------------------------------------------------------------------------- /src/app/constructor/map/map-constructor.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/map/map-constructor.component.test.ts -------------------------------------------------------------------------------- /src/app/constructor/map/map-constructor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/map/map-constructor.component.ts -------------------------------------------------------------------------------- /src/app/constructor/map/map-constructor.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/map/map-constructor.style.scss -------------------------------------------------------------------------------- /src/app/constructor/map/map-constructor.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/map/map-constructor.template.html -------------------------------------------------------------------------------- /src/app/constructor/options/options.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/options/options.component.test.ts -------------------------------------------------------------------------------- /src/app/constructor/options/options.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/options/options.component.ts -------------------------------------------------------------------------------- /src/app/constructor/options/options.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/options/options.style.scss -------------------------------------------------------------------------------- /src/app/constructor/options/options.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/options/options.template.html -------------------------------------------------------------------------------- /src/app/constructor/partials/add-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/add-icon.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/co2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/co2.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/electricity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/electricity.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/humidity.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/ic-add-a-photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/ic-add-a-photo.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/lock.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/pressure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/pressure.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/remove-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/remove-icon.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/servo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/servo.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/socket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/socket.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/switcherOFF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/switcherOFF.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/switcherON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/switcherON.svg -------------------------------------------------------------------------------- /src/app/constructor/partials/temperature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/partials/temperature.svg -------------------------------------------------------------------------------- /src/app/constructor/sensors-list/sensors-list.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/sensors-list/sensors-list.component.test.ts -------------------------------------------------------------------------------- /src/app/constructor/sensors-list/sensors-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/sensors-list/sensors-list.component.ts -------------------------------------------------------------------------------- /src/app/constructor/sensors-list/sensors-list.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/sensors-list/sensors-list.style.scss -------------------------------------------------------------------------------- /src/app/constructor/sensors-list/sensors-list.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/sensors-list/sensors-list.template.html -------------------------------------------------------------------------------- /src/app/constructor/view-resolve.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/view-resolve.service.test.ts -------------------------------------------------------------------------------- /src/app/constructor/view-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/constructor/view-resolve.service.ts -------------------------------------------------------------------------------- /src/app/core/auth/auth.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/auth/auth.interfaces.ts -------------------------------------------------------------------------------- /src/app/core/auth/auth.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/auth/auth.service.test.ts -------------------------------------------------------------------------------- /src/app/core/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/auth/auth.service.ts -------------------------------------------------------------------------------- /src/app/core/browser/window-ref.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/browser/window-ref.service.test.ts -------------------------------------------------------------------------------- /src/app/core/browser/window-ref.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/browser/window-ref.service.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/files/files.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/files/files.service.test.ts -------------------------------------------------------------------------------- /src/app/core/files/files.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/files/files.service.ts -------------------------------------------------------------------------------- /src/app/core/header/header-navigation-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/header-navigation-routes.ts -------------------------------------------------------------------------------- /src/app/core/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/header.component.html -------------------------------------------------------------------------------- /src/app/core/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/header.component.scss -------------------------------------------------------------------------------- /src/app/core/header/header.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/header.component.test.ts -------------------------------------------------------------------------------- /src/app/core/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/header.component.ts -------------------------------------------------------------------------------- /src/app/core/header/partials/Index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/Index.png -------------------------------------------------------------------------------- /src/app/core/header/partials/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/avatar.png -------------------------------------------------------------------------------- /src/app/core/header/partials/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/dashboard.svg -------------------------------------------------------------------------------- /src/app/core/header/partials/deviceList.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/deviceList.svg -------------------------------------------------------------------------------- /src/app/core/header/partials/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/help.svg -------------------------------------------------------------------------------- /src/app/core/header/partials/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/login.svg -------------------------------------------------------------------------------- /src/app/core/header/partials/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/logo.svg -------------------------------------------------------------------------------- /src/app/core/header/partials/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/logout.svg -------------------------------------------------------------------------------- /src/app/core/header/partials/registration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/registration.svg -------------------------------------------------------------------------------- /src/app/core/header/partials/scenarioList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/scenarioList.png -------------------------------------------------------------------------------- /src/app/core/header/partials/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/settings.svg -------------------------------------------------------------------------------- /src/app/core/header/partials/statistic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/core/header/partials/statistic.svg -------------------------------------------------------------------------------- /src/app/core/header/timepiece/timepiece.component.html: -------------------------------------------------------------------------------- 1 |
Loading...
2 | -------------------------------------------------------------------------------- /src/app/login/fb-callback.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/login/fb-callback.component.test.ts -------------------------------------------------------------------------------- /src/app/login/fb-callback.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/login/fb-callback.component.ts -------------------------------------------------------------------------------- /src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/login/login.component.html -------------------------------------------------------------------------------- /src/app/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/login/login.component.scss -------------------------------------------------------------------------------- /src/app/login/login.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/login/login.component.test.ts -------------------------------------------------------------------------------- /src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/login/login.component.ts -------------------------------------------------------------------------------- /src/app/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/login/login.module.ts -------------------------------------------------------------------------------- /src/app/login/login.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/login/login.routing.ts -------------------------------------------------------------------------------- /src/app/login/partials/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/login/partials/facebook.svg -------------------------------------------------------------------------------- /src/app/logout/logout.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/logout/logout.component.test.ts -------------------------------------------------------------------------------- /src/app/logout/logout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/logout/logout.component.ts -------------------------------------------------------------------------------- /src/app/logout/logout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/logout/logout.module.ts -------------------------------------------------------------------------------- /src/app/logout/logout.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/logout/logout.routing.ts -------------------------------------------------------------------------------- /src/app/logout/logout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/logout/logout.test.ts -------------------------------------------------------------------------------- /src/app/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/registration/equal-to-validator/equal-to.directive.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/equal-to-validator/equal-to.directive.test.ts -------------------------------------------------------------------------------- /src/app/registration/equal-to-validator/equal-to.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/equal-to-validator/equal-to.directive.ts -------------------------------------------------------------------------------- /src/app/registration/equal-to-validator/equal-to.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/equal-to-validator/equal-to.interfaces.ts -------------------------------------------------------------------------------- /src/app/registration/registration.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/registration.component.test.ts -------------------------------------------------------------------------------- /src/app/registration/registration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/registration.component.ts -------------------------------------------------------------------------------- /src/app/registration/registration.declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/registration.declarations.ts -------------------------------------------------------------------------------- /src/app/registration/registration.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/registration.module.ts -------------------------------------------------------------------------------- /src/app/registration/registration.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/registration.routing.ts -------------------------------------------------------------------------------- /src/app/registration/registration.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/registration.style.scss -------------------------------------------------------------------------------- /src/app/registration/registration.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/registration/registration.template.html -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/editor/create-scenario-editor/create-scenario-editor.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/editor/create-scenario-editor/create-scenario-editor.component.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/editor/create-scenario-editor/create-scenario-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/editor/create-scenario-editor/create-scenario-editor.component.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/editor/create-scenario-editor/create-scenario-editor.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/editor/create-scenario-editor/create-scenario-editor.template.html -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/editor/create-scenario-editor/scenario-editor.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/editor/create-scenario-editor/scenario-editor.style.scss -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/editor/edit-scenario-editor/edit-scenario-editor.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/editor/edit-scenario-editor/edit-scenario-editor.component.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/editor/edit-scenario-editor/edit-scenario-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/editor/edit-scenario-editor/edit-scenario-editor.component.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/editor/scenario-editor/code-mirror-events.const.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | SET_VALUE_EVENT: 'setValue' 3 | }; 4 | -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/editor/scenario-editor/scenario-editor.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/editor/scenario-editor/scenario-editor.component.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/editor/scenario-editor/scenario-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/editor/scenario-editor/scenario-editor.component.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/scenario-details.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/scenario-details.component.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/scenario-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/scenario-details.component.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/scenario-details.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/scenario-details.style.scss -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/scenario-details.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/scenario-details.template.html -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/create-scenario-wizard/create-scenario-wizard.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/create-scenario-wizard/create-scenario-wizard.component.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/create-scenario-wizard/create-scenario-wizard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/create-scenario-wizard/create-scenario-wizard.component.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/create-scenario-wizard/create-scenario-wizard.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/create-scenario-wizard/create-scenario-wizard.template.html -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/edit-scenario-wizard/edit-scenario-wizard.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/edit-scenario-wizard/edit-scenario-wizard.component.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/edit-scenario-wizard/edit-scenario-wizard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/edit-scenario-wizard/edit-scenario-wizard.component.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/edit-scenario-wizard/edit-scenario-wizard.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/edit-scenario-wizard/edit-scenario-wizard.template.html -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/scenario-entities/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/scenario-entities/action.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/scenario-entities/condition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/scenario-entities/condition.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/scenario-entities/logical-operators.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/scenario-entities/logical-operators.const.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/scenario-entities/scenario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/scenario-entities/scenario.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/scenario-wizard/scenario-wizard.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/scenario-wizard/scenario-wizard.component.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/scenario-wizard/scenario-wizard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/scenario-wizard/scenario-wizard.component.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/scenario-wizard/scenario-wizard.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/scenario-wizard/scenario-wizard.style.scss -------------------------------------------------------------------------------- /src/app/scenarios/scenario-details/wizard/scenario-wizard/scenario-wizard.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenario-details/wizard/scenario-wizard/scenario-wizard.template.html -------------------------------------------------------------------------------- /src/app/scenarios/scenarios-list/assets/empty-scenarios-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios-list/assets/empty-scenarios-list.png -------------------------------------------------------------------------------- /src/app/scenarios/scenarios-list/scenario-list.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios-list/scenario-list.component.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenarios-list/scenario-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios-list/scenario-list.component.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenarios-list/scenario-list.resolve.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios-list/scenario-list.resolve.service.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenarios-list/scenario-list.resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios-list/scenario-list.resolve.service.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenarios-list/scenario-list.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios-list/scenario-list.style.scss -------------------------------------------------------------------------------- /src/app/scenarios/scenarios-list/scenario-list.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios-list/scenario-list.template.html -------------------------------------------------------------------------------- /src/app/scenarios/scenarios-list/scenario-status.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios-list/scenario-status.service.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenarios-list/scenario-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios-list/scenario-status.service.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenarios.declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios.declarations.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenarios.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios.module.ts -------------------------------------------------------------------------------- /src/app/scenarios/scenarios.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/scenarios.routing.ts -------------------------------------------------------------------------------- /src/app/scenarios/shared/scenario.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/shared/scenario.service.test.ts -------------------------------------------------------------------------------- /src/app/scenarios/shared/scenario.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/scenarios/shared/scenario.service.ts -------------------------------------------------------------------------------- /src/app/settings/devices/device-details-page/device-details-page.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/devices/device-details-page/device-details-page.component.test.ts -------------------------------------------------------------------------------- /src/app/settings/devices/device-details-page/device-details-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/devices/device-details-page/device-details-page.component.ts -------------------------------------------------------------------------------- /src/app/settings/devices/device-details-page/device-details-page.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/devices/device-details-page/device-details-page.style.scss -------------------------------------------------------------------------------- /src/app/settings/devices/device-details-page/device-details-page.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/devices/device-details-page/device-details-page.template.html -------------------------------------------------------------------------------- /src/app/settings/devices/device-list-page/device-list-page.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/devices/device-list-page/device-list-page.component.test.ts -------------------------------------------------------------------------------- /src/app/settings/devices/device-list-page/device-list-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/devices/device-list-page/device-list-page.component.ts -------------------------------------------------------------------------------- /src/app/settings/devices/device-list-page/device-list-page.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/devices/device-list-page/device-list-page.template.html -------------------------------------------------------------------------------- /src/app/settings/general/general.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/general/general.component.ts -------------------------------------------------------------------------------- /src/app/settings/general/general.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/general/general.template.html -------------------------------------------------------------------------------- /src/app/settings/roles/roles.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/roles/roles.component.test.ts -------------------------------------------------------------------------------- /src/app/settings/roles/roles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/roles/roles.component.ts -------------------------------------------------------------------------------- /src/app/settings/roles/roles.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/roles/roles.service.test.ts -------------------------------------------------------------------------------- /src/app/settings/roles/roles.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/roles/roles.service.ts -------------------------------------------------------------------------------- /src/app/settings/roles/roles.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/roles/roles.template.html -------------------------------------------------------------------------------- /src/app/settings/settings-navigation-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/settings-navigation-routes.ts -------------------------------------------------------------------------------- /src/app/settings/settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/settings.component.scss -------------------------------------------------------------------------------- /src/app/settings/settings.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/settings.component.test.ts -------------------------------------------------------------------------------- /src/app/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/settings.component.ts -------------------------------------------------------------------------------- /src/app/settings/settings.declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/settings.declarations.ts -------------------------------------------------------------------------------- /src/app/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/settings.module.ts -------------------------------------------------------------------------------- /src/app/settings/settings.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/settings.routing.ts -------------------------------------------------------------------------------- /src/app/settings/settings.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/settings/settings.template.html -------------------------------------------------------------------------------- /src/app/shared/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/button.scss -------------------------------------------------------------------------------- /src/app/shared/components/protected-component/protected.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/components/protected-component/protected.component.test.ts -------------------------------------------------------------------------------- /src/app/shared/components/protected-component/protected.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/components/protected-component/protected.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/protected-component/protected.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/components/protected-component/protected.template.html -------------------------------------------------------------------------------- /src/app/shared/dialog/dialog-confirm.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/dialog/dialog-confirm.component.test.ts -------------------------------------------------------------------------------- /src/app/shared/dialog/dialog-confirm.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/dialog/dialog-confirm.component.ts -------------------------------------------------------------------------------- /src/app/shared/dialog/dialog-confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/dialog/dialog-confirm.html -------------------------------------------------------------------------------- /src/app/shared/dialog/dialog.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/dialog/dialog.service.test.ts -------------------------------------------------------------------------------- /src/app/shared/dialog/dialog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/dialog/dialog.service.ts -------------------------------------------------------------------------------- /src/app/shared/picture-resolver/picture-resolver.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/picture-resolver/picture-resolver.service.test.ts -------------------------------------------------------------------------------- /src/app/shared/picture-resolver/picture-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/picture-resolver/picture-resolver.service.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/shared/view/dashboard-view.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/view/dashboard-view.dto.ts -------------------------------------------------------------------------------- /src/app/shared/view/map-view.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/view/map-view.dto.ts -------------------------------------------------------------------------------- /src/app/shared/view/view.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/shared/view/view.dto.ts -------------------------------------------------------------------------------- /src/app/statistic/base-chart/base-chart.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/base-chart/base-chart.component.test.ts -------------------------------------------------------------------------------- /src/app/statistic/base-chart/base-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/base-chart/base-chart.component.ts -------------------------------------------------------------------------------- /src/app/statistic/chart-widget/chart-widget.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/chart-widget/chart-widget.component.test.ts -------------------------------------------------------------------------------- /src/app/statistic/chart-widget/chart-widget.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/chart-widget/chart-widget.component.ts -------------------------------------------------------------------------------- /src/app/statistic/chart-widget/chart-widget.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/chart-widget/chart-widget.styles.scss -------------------------------------------------------------------------------- /src/app/statistic/chart-widget/chart-widget.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/chart-widget/chart-widget.template.html -------------------------------------------------------------------------------- /src/app/statistic/sensor-statistic/sensor-statistic-resolve.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/sensor-statistic/sensor-statistic-resolve.service.test.ts -------------------------------------------------------------------------------- /src/app/statistic/sensor-statistic/sensor-statistic-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/sensor-statistic/sensor-statistic-resolve.service.ts -------------------------------------------------------------------------------- /src/app/statistic/sensor-statistic/sensor-statistic.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/sensor-statistic/sensor-statistic.component.test.ts -------------------------------------------------------------------------------- /src/app/statistic/sensor-statistic/sensor-statistic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/sensor-statistic/sensor-statistic.component.ts -------------------------------------------------------------------------------- /src/app/statistic/sensor-statistic/sensor-statistic.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/sensor-statistic/sensor-statistic.styles.scss -------------------------------------------------------------------------------- /src/app/statistic/sensor-statistic/sensor-statistic.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/sensor-statistic/sensor-statistic.template.html -------------------------------------------------------------------------------- /src/app/statistic/statistic.component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/statistic.component.test.ts -------------------------------------------------------------------------------- /src/app/statistic/statistic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/statistic.component.ts -------------------------------------------------------------------------------- /src/app/statistic/statistic.declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/statistic.declarations.ts -------------------------------------------------------------------------------- /src/app/statistic/statistic.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/statistic.module.ts -------------------------------------------------------------------------------- /src/app/statistic/statistic.routing.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/statistic.routing.config.ts -------------------------------------------------------------------------------- /src/app/statistic/statistic.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/statistic.routing.ts -------------------------------------------------------------------------------- /src/app/statistic/statistic.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/statistic.service.test.ts -------------------------------------------------------------------------------- /src/app/statistic/statistic.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/statistic.service.ts -------------------------------------------------------------------------------- /src/app/statistic/statistic.style.scss: -------------------------------------------------------------------------------- 1 | .statistic { 2 | display: block; 3 | } -------------------------------------------------------------------------------- /src/app/statistic/statistic.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/statistic.template.html -------------------------------------------------------------------------------- /src/app/statistic/switcher-statistics/switcher-column-chart/switcher-column-chart.component.test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/statistic/switcher-statistics/switcher-column-chart/switcher-column-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/switcher-statistics/switcher-column-chart/switcher-column-chart.component.ts -------------------------------------------------------------------------------- /src/app/statistic/switcher-statistics/switcher-column-chart/switcher-column-chart.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/app/statistic/switcher-statistics/switcher-column-chart/switcher-column-chart.template.html -------------------------------------------------------------------------------- /src/custom-typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/custom-typings.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/main.browser.ts -------------------------------------------------------------------------------- /src/polyfills.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/polyfills.browser.ts -------------------------------------------------------------------------------- /src/vendor.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/src/vendor.browser.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/jasmine/create-spy-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/test/jasmine/create-spy-component.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/tslint.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garage-it/SmartHouse-frontend/HEAD/typedoc.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./env/webpack.dev.config'); 2 | --------------------------------------------------------------------------------