| | |
| | | import {HttpClient} from '@angular/common/http'; |
| | | import {Router} from '@angular/router'; |
| | | |
| | | |
| | | @Component({ |
| | | selector: 'app-demo', |
| | | templateUrl: './demo.component.html', |
| | |
| | | }) |
| | | |
| | | export class DemoComponent implements OnInit { |
| | | [x: string]: any; |
| | | query: any = { |
| | | }; |
| | | time: any = { |
| | | format: 'YYYY', |
| | | mode: 'month' |
| | | }; |
| | | |
| | | private sensorOptions = []; |
| | | |
| | | private monitorPointOptions = []; |
| | | private deviceOptions = []; |
| | | private monitorPointbOptions = []; |
| | | private devicebOptions = []; |
| | | |
| | | constructor( |
| | | public http: HttpClient, |
| | | public dateSrv: DateService, |
| | | public router: Router, |
| | | public msgSrv: NzMessageService |
| | | ) {} |
| | | |
| | | |
| | | ) { |
| | | const timeType = this.timeType = this.typeOptions[1]; |
| | | this.query.type = timeType.value; |
| | | this.time.format = timeType.format.toUpperCase(); |
| | | this.query.reportType = this.reportOptions[1].value; |
| | | } |
| | | [x: string]: any; |
| | | public query: any = {}; |
| | | public sensorOptions = []; |
| | | public typeOptions = [ |
| | | {value: 'year', label: '年', xAxisName: '月', format: 'yyyy', typeFormat: '%Y-%m', timeLength: 12}, |
| | | {value: 'month', label: '月', xAxisName: '日', format: 'yyyy-MM', typeFormat: '%Y-%m-%d', timeLength: 28}, |
| | | {value: 'day', label: '日', xAxisName: '时', format: 'yyyy-MM-dd', typeFormat: '%Y-%m-%d %H', timeLength: 24}, |
| | | {value: 'hour', label: '时', xAxisName: '分', format: 'yyyy-MM-dd HH', typeFormat: '%Y-%m-%d %H:%i', timeLength: 60} |
| | | ]; |
| | | public reportOptions = [ |
| | | {value: 'bar', label: '柱状图'}, |
| | | {value: 'line', label: '折线图'} |
| | | ]; |
| | | public monitorPointOptions = []; |
| | | public time: any = {}; |
| | | public timeType: any = {}; |
| | | public items = [{ |
| | | id: 0, |
| | | monitorPoint: null, |
| | | mac: '', |
| | | time: null, |
| | | formatTime: null, |
| | | monitorPointName: '', |
| | | deviceName: '', |
| | | monitorPointAddress: '', |
| | | deviceCount: '', |
| | | deviceOptions: [] |
| | | }]; |
| | | |
| | | ngOnInit() { |
| | | this.query.time = null; |
| | | this.query.timeb = null; |
| | | this.http.get(environment.SERVER_BASH_URL + 'sensor/all').subscribe((res: any) => { |
| | | if (res.code === 0) { |
| | | this.msgSrv.error(res.message); |
| | |
| | | }); |
| | | } |
| | | |
| | | searchChange(searchText) { |
| | | typeChange(searchText) { |
| | | this.typeOptions.forEach(types => { |
| | | if (types.value === searchText) { |
| | | this.timeType = types; |
| | | this.time.format = types.format.toUpperCase(); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | addItem() { |
| | | const id = (this.items.length > 0) ? this.items[this.items.length - 1].id + 1 : 0; |
| | | const index = this.items.push({ |
| | | id: id, |
| | | monitorPoint: null, |
| | | mac: '', |
| | | time: null, |
| | | formatTime: null, |
| | | monitorPointName: '', |
| | | deviceName: '', |
| | | monitorPointAddress: '', |
| | | deviceCount: '', |
| | | deviceOptions: [] |
| | | }); |
| | | } |
| | | |
| | | searchChange(searchText, i) { |
| | | if (searchText) { |
| | | const query = encodeURI(searchText); |
| | | if (query) { |
| | |
| | | } |
| | | } |
| | | |
| | | monitorPointChange(value) { |
| | | this.query.mac = null; |
| | | this.deviceOptions = []; |
| | | monitorPointChange(value, i) { |
| | | this.items[i].deviceOptions = []; |
| | | if (value) { |
| | | this.monitorPointOptions.forEach(monitorPoint => { |
| | | if (monitorPoint.id === value) { |
| | | this.monitorPointa = monitorPoint; |
| | | this.items[i].monitorPointName = monitorPoint.name; |
| | | this.items[i].monitorPointAddress = monitorPoint.address; |
| | | } |
| | | }); |
| | | this.http.get(environment.SERVER_BASH_URL + 'device/monitorPointId', {params: {monitorPointId: value}}).subscribe((res: any) => { |
| | | if (res.code === 0) { |
| | | this.msgSrv.error(res.message); |
| | | } else { |
| | | this.deviceOptions = res.data; |
| | | this.items[i].deviceOptions = res.data; |
| | | this.items[i].deviceCount = res.data.length; |
| | | this.items[i].mac = null; |
| | | } |
| | | }); |
| | | } else { |
| | | this.monitorPointa = null; |
| | | this.items[i].monitorPoint = null; |
| | | this.items[i].mac = null; |
| | | this.items[i].monitorPointName = ''; |
| | | } |
| | | } |
| | | |
| | | searchChangeb(searchText) { |
| | | if (searchText) { |
| | | const query = encodeURI(searchText); |
| | | if (query) { |
| | | this.http.get(environment.SERVER_BASH_URL + '/monitor-point/list/' + query).subscribe((res: any) => { |
| | | if (res.code === 0) { |
| | | this.msgSrv.error(res.message); |
| | | } else { |
| | | this.monitorPointbOptions = res.data; |
| | | } |
| | | }); |
| | | } |
| | | } |
| | | } |
| | | |
| | | devicebChange(value) { |
| | | deviceChange(value, i) { |
| | | if (value) { |
| | | this.devicebOptions.forEach(device => { |
| | | this.items[i].deviceOptions.forEach(device => { |
| | | if (device.mac === value) { |
| | | this.deviceb = device; |
| | | this.items[i].deviceName = device.name; |
| | | } |
| | | }); |
| | | } else { |
| | | this.deviceb = null; |
| | | this.items[i].deviceName = ''; |
| | | } |
| | | } |
| | | |
| | | deviceChange(value) { |
| | | this.devicea = null; |
| | | if (value) { |
| | | this.deviceOptions.forEach(device => { |
| | | if (device.mac === value) { |
| | | this.devicea = device; |
| | | } |
| | | }); |
| | | } else { |
| | | this.devicea = null; |
| | | } |
| | | } |
| | | |
| | | monitorPointbChange(searchText) { |
| | | this.query.macb = null; |
| | | this.devicebOptions = []; |
| | | if (searchText) { |
| | | this.monitorPointbOptions.forEach(monitorPoint => { |
| | | if (monitorPoint.id === searchText) { |
| | | this.monitorPointb = monitorPoint; |
| | | } |
| | | }); |
| | | this.http.get(environment.SERVER_BASH_URL + 'device/monitorPointId', {params: {monitorPointId: searchText}}).subscribe((res: any) => { |
| | | if (res.code === 0) { |
| | | this.msgSrv.error(res.message); |
| | | } else { |
| | | this.devicebOptions = res.data; |
| | | } |
| | | }); |
| | | } |
| | | } |
| | | |
| | | private typeOptions = [ |
| | | {value: 'year', label: '年', mode: 'month', xAxisName: '月', format: 'yyyy', typeFormat: '%Y-%m'}, |
| | | {value: 'month', label: '月', mode: 'month', xAxisName: '日', format: 'yyyy-MM', typeFormat: '%Y-%m-%d'}, |
| | | {value: 'day', label: '日', mode: 'day', xAxisName: '时', format: 'yyyy-MM-dd', typeFormat: '%Y-%m-%d %H'}, |
| | | {value: 'hour', label: '时', mode: 'day', xAxisName: '分', format: 'yyyy-MM-dd HH', typeFormat: '%Y-%m-%d %H:%i'} |
| | | ]; |
| | | |
| | | |
| | | typeChange(searchText) { |
| | | this.typeOptions.forEach(types => { |
| | | if (types.value === searchText) { |
| | | this.timeType = types; |
| | | this.time.format = types.format.toUpperCase(); |
| | | this.time.mode = types.mode; |
| | | } |
| | | }); |
| | | _disabledDate(current: Date): boolean { |
| | | return current && current.getTime() > Date.now(); |
| | | } |
| | | |
| | | reportQuery() { |
| | | const query = this.query; |
| | | if (query.sensorKey && query.type && ((query.monitorPoint && query.time) || (query.monitorPointb && query.timeb))) { |
| | | if (query.time) { |
| | | query.time = this.dateSrv.date_format(query.time, this.time.format); |
| | | let validate = true; |
| | | for (let i = 0; i < this.items.length; i++) { |
| | | let item = this.items[i]; |
| | | if (item.monitorPoint && item.time) { |
| | | item.formatTime = this.dateSrv.date_format(item.time, this.time.format); |
| | | } else { |
| | | validate = false; |
| | | break; |
| | | } |
| | | if (query.timeb) { |
| | | query.timeb = this.dateSrv.date_format(query.timeb, this.time.format); |
| | | } |
| | | if (validate && query.type && query.reportType) { |
| | | query.sensors = null; |
| | | if (query.sensorKey && query.sensorKey.length > 0) { |
| | | const sensors = []; |
| | | query.sensorKey.forEach(sensor => { |
| | | sensors.push(sensor.sensorKey + '-' + sensor.name + '-' + sensor.unit); |
| | | }); |
| | | query.sensors = JSON.stringify(sensors); |
| | | } |
| | | query.format = this.timeType.format; |
| | | query.typeFormat = this.timeType.typeFormat; |
| | | query.xAxisName = this.timeType.xAxisName; |
| | | query.label = this.timeType.label; |
| | | query.sensorName = this.sensor.name; |
| | | query.sensorUnit = this.sensor.unit; |
| | | if (this.devicea) { |
| | | query.deviceaName = this.devicea.name; |
| | | } |
| | | if (this.deviceb) { |
| | | query.devicebName = this.deviceb.name; |
| | | } |
| | | if (this.monitorPointa) { |
| | | query.monitorPointaName = this.monitorPointa.name; |
| | | } |
| | | if (this.monitorPointb) { |
| | | query.monitorPointbName = this.monitorPointb.name; |
| | | } |
| | | query.timeType = JSON.stringify(this.timeType); |
| | | query.items = JSON.stringify(this.items); |
| | | this.router.navigate(['report'], {queryParams: query}); |
| | | |
| | | } else { |
| | | this.msgSrv.error('请完善搜索项'); |
| | | this.msgSrv.error('请完善搜索项或删除查询条目'); |
| | | } |
| | | |
| | | } |
| | | |
| | | sensorChange(value) { |
| | | this.sensorOptions.forEach(sensor => { |
| | | if (sensor.sensorKey === value) { |
| | | this.sensor = sensor; |
| | | } |
| | | }); |
| | | } |
| | | |
| | | } |