61 lines
2.6 KiB
TypeScript
61 lines
2.6 KiB
TypeScript
///
|
|
/// Copyright © 2016-2021 The Thingsboard Authors
|
|
///
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
/// you may not use this file except in compliance with the License.
|
|
/// You may obtain a copy of the License at
|
|
///
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
///
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
/// See the License for the specific language governing permissions and
|
|
/// limitations under the License.
|
|
///
|
|
|
|
import { Type } from '@angular/core';
|
|
import { DeviceService } from '@core/http/device.service';
|
|
import { AssetService } from '@core/http/asset.service';
|
|
import { AttributeService } from '@core/http/attribute.service';
|
|
import { EntityRelationService } from '@core/http/entity-relation.service';
|
|
import { EntityService } from '@core/http/entity.service';
|
|
import { DialogService } from '@core/services/dialog.service';
|
|
import { CustomDialogService } from '@home/components/widget/dialog/custom-dialog.service';
|
|
import { DatePipe } from '@angular/common';
|
|
import { UtilsService } from '@core/services/utils.service';
|
|
import { TranslateService } from '@ngx-translate/core';
|
|
import { HttpClient } from '@angular/common/http';
|
|
import { EntityViewService } from '@core/http/entity-view.service';
|
|
import { CustomerService } from '@core/http/customer.service';
|
|
import { DashboardService } from '@core/http/dashboard.service';
|
|
import { UserService } from '@core/http/user.service';
|
|
import { AlarmService } from '@core/http/alarm.service';
|
|
import { Router } from '@angular/router';
|
|
import { BroadcastService } from '@core/services/broadcast.service';
|
|
import { ImportExportService } from '@home/components/import-export/import-export.service';
|
|
|
|
export const ServicesMap = new Map<string, Type<any>>(
|
|
[
|
|
['broadcastService', BroadcastService],
|
|
['deviceService', DeviceService],
|
|
['alarmService', AlarmService],
|
|
['assetService', AssetService],
|
|
['entityViewService', EntityViewService],
|
|
['customerService', CustomerService],
|
|
['dashboardService', DashboardService],
|
|
['userService', UserService],
|
|
['attributeService', AttributeService],
|
|
['entityRelationService', EntityRelationService],
|
|
['entityService', EntityService],
|
|
['dialogs', DialogService],
|
|
['customDialog', CustomDialogService],
|
|
['date', DatePipe],
|
|
['utils', UtilsService],
|
|
['translate', TranslateService],
|
|
['http', HttpClient],
|
|
['router', Router],
|
|
['importExport', ImportExportService]
|
|
]
|
|
);
|