2017-06-13 20:27:11 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-07-02 16:18:09 +03:00
|
|
|
import {
|
|
|
|
|
NbActionsModule,
|
|
|
|
|
NbButtonModule,
|
|
|
|
|
NbCardModule,
|
|
|
|
|
NbTabsetModule,
|
|
|
|
|
NbUserModule,
|
|
|
|
|
NbRadioModule,
|
|
|
|
|
NbSelectModule,
|
|
|
|
|
NbListModule,
|
|
|
|
|
NbIconModule,
|
|
|
|
|
} from '@nebular/theme';
|
2018-01-04 15:49:27 +03:00
|
|
|
import { NgxEchartsModule } from 'ngx-echarts';
|
2017-06-13 20:27:11 +03:00
|
|
|
|
2017-08-04 19:27:16 +03:00
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
2017-06-13 20:27:11 +03:00
|
|
|
import { DashboardComponent } from './dashboard.component';
|
2017-07-13 16:25:12 +03:00
|
|
|
import { StatusCardComponent } from './status-card/status-card.component';
|
2017-06-27 12:26:09 +03:00
|
|
|
import { ContactsComponent } from './contacts/contacts.component';
|
2017-07-06 19:10:31 +03:00
|
|
|
import { RoomsComponent } from './rooms/rooms.component';
|
|
|
|
|
import { RoomSelectorComponent } from './rooms/room-selector/room-selector.component';
|
|
|
|
|
import { TemperatureComponent } from './temperature/temperature.component';
|
|
|
|
|
import { TemperatureDraggerComponent } from './temperature/temperature-dragger/temperature-dragger.component';
|
2017-08-29 15:49:52 +03:00
|
|
|
import { KittenComponent } from './kitten/kitten.component';
|
2017-07-11 17:17:51 +03:00
|
|
|
import { SecurityCamerasComponent } from './security-cameras/security-cameras.component';
|
2017-07-11 18:59:08 +03:00
|
|
|
import { ElectricityComponent } from './electricity/electricity.component';
|
2017-07-14 18:55:38 +03:00
|
|
|
import { ElectricityChartComponent } from './electricity/electricity-chart/electricity-chart.component';
|
2017-07-12 19:33:43 +03:00
|
|
|
import { WeatherComponent } from './weather/weather.component';
|
2017-07-14 17:11:26 +03:00
|
|
|
import { SolarComponent } from './solar/solar.component';
|
2017-09-12 19:21:49 +03:00
|
|
|
import { PlayerComponent } from './rooms/player/player.component';
|
2017-07-14 19:46:28 +03:00
|
|
|
import { TrafficComponent } from './traffic/traffic.component';
|
2017-07-24 19:10:59 +03:00
|
|
|
import { TrafficChartComponent } from './traffic/traffic-chart.component';
|
2019-07-02 16:18:09 +03:00
|
|
|
import { FormsModule } from '@angular/forms';
|
2017-06-13 20:27:11 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
2019-07-02 16:18:09 +03:00
|
|
|
FormsModule,
|
2017-08-04 19:27:16 +03:00
|
|
|
ThemeModule,
|
2019-07-02 16:18:09 +03:00
|
|
|
NbCardModule,
|
|
|
|
|
NbUserModule,
|
|
|
|
|
NbButtonModule,
|
|
|
|
|
NbTabsetModule,
|
|
|
|
|
NbActionsModule,
|
|
|
|
|
NbRadioModule,
|
|
|
|
|
NbSelectModule,
|
|
|
|
|
NbListModule,
|
|
|
|
|
NbIconModule,
|
|
|
|
|
NbButtonModule,
|
2018-01-04 15:49:27 +03:00
|
|
|
NgxEchartsModule,
|
2017-06-13 20:27:11 +03:00
|
|
|
],
|
|
|
|
|
declarations: [
|
|
|
|
|
DashboardComponent,
|
2017-07-13 16:25:12 +03:00
|
|
|
StatusCardComponent,
|
2017-06-22 12:07:42 +03:00
|
|
|
TemperatureDraggerComponent,
|
2017-06-27 12:26:09 +03:00
|
|
|
ContactsComponent,
|
|
|
|
|
RoomSelectorComponent,
|
2017-07-06 19:10:31 +03:00
|
|
|
TemperatureComponent,
|
|
|
|
|
RoomsComponent,
|
2017-08-29 15:49:52 +03:00
|
|
|
KittenComponent,
|
2017-07-11 17:17:51 +03:00
|
|
|
SecurityCamerasComponent,
|
2017-07-11 18:59:08 +03:00
|
|
|
ElectricityComponent,
|
2017-07-14 18:55:38 +03:00
|
|
|
ElectricityChartComponent,
|
2017-07-12 19:33:43 +03:00
|
|
|
WeatherComponent,
|
2017-07-14 14:38:25 +03:00
|
|
|
PlayerComponent,
|
2017-07-14 17:11:26 +03:00
|
|
|
SolarComponent,
|
2017-07-14 19:46:28 +03:00
|
|
|
TrafficComponent,
|
2017-07-24 19:10:59 +03:00
|
|
|
TrafficChartComponent,
|
2017-06-13 20:27:11 +03:00
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
export class DashboardModule { }
|