5f3a960814ad9075db65e0fbadd6008838dc574b
[src/xds/xds-agent.git] / webapp / src / app / pages / dashboard / dashboard.module.ts
1 /**
2 * @license
3 * Copyright (C) 2017 "IoT.bzh"
4 * Author Sebastien Douheret <sebastien@iot.bzh>
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 *   http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19 import { NgModule } from '@angular/core';
20 import { AngularEchartsModule } from 'ngx-echarts';
21
22 import { ThemeModule } from '../../@theme/theme.module';
23 import { DashboardComponent } from './dashboard.component';
24 import { StatusCardComponent } from './status-card/status-card.component';
25 /*
26 import { ContactsComponent } from './contacts/contacts.component';
27 import { RoomsComponent } from './rooms/rooms.component';
28 import { RoomSelectorComponent } from './rooms/room-selector/room-selector.component';
29 import { TemperatureComponent } from './temperature/temperature.component';
30 import { TemperatureDraggerComponent } from './temperature/temperature-dragger/temperature-dragger.component';
31 import { TeamComponent } from './team/team.component';
32 import { KittenComponent } from './kitten/kitten.component';
33 import { SecurityCamerasComponent } from './security-cameras/security-cameras.component';
34 import { ElectricityComponent } from './electricity/electricity.component';
35 import { ElectricityChartComponent } from './electricity/electricity-chart/electricity-chart.component';
36 import { WeatherComponent } from './weather/weather.component';
37 import { SolarComponent } from './solar/solar.component';
38 import { PlayerComponent } from './rooms/player/player.component';
39 import { TrafficComponent } from './traffic/traffic.component';
40 import { TrafficChartComponent } from './traffic/traffic-chart.component';
41 */
42
43 @NgModule({
44   imports: [
45     ThemeModule,
46     AngularEchartsModule,
47   ],
48   declarations: [
49     DashboardComponent,
50     StatusCardComponent,
51     /*
52     TemperatureDraggerComponent,
53     ContactsComponent,
54     RoomSelectorComponent,
55     TemperatureComponent,
56     RoomsComponent,
57     TeamComponent,
58     KittenComponent,
59     SecurityCamerasComponent,
60     ElectricityComponent,
61     ElectricityChartComponent,
62     WeatherComponent,
63     PlayerComponent,
64     SolarComponent,
65     TrafficComponent,
66     TrafficChartComponent,
67     */
68   ],
69 })
70 export class DashboardModule { }