2016-12-01 11:40:28 +02:00
|
|
|
<!--
|
|
|
|
|
|
2017-01-09 23:11:09 +02:00
|
|
|
Copyright © 2016-2017 The Thingsboard Authors
|
2016-12-01 11:40:28 +02:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<md-dialog aria-label="{{ 'widget.add' | translate }}" style="width: 900px;" tb-help="vm.helpLinkIdForWidgetType()" help-container-id="help-container">
|
|
|
|
|
<form name="theForm" ng-submit="vm.add()">
|
|
|
|
|
<md-toolbar>
|
|
|
|
|
<div class="md-toolbar-tools">
|
|
|
|
|
<h2 translate>widget.add</h2>
|
|
|
|
|
<span flex></span>
|
|
|
|
|
<div id="help-container"></div>
|
|
|
|
|
<md-button class="md-icon-button" ng-click="vm.cancel()">
|
|
|
|
|
<ng-md-icon icon="close" aria-label="{{ 'dialog.close' | translate }}"></ng-md-icon>
|
|
|
|
|
</md-button>
|
|
|
|
|
</div>
|
|
|
|
|
</md-toolbar>
|
2017-03-03 18:09:14 +02:00
|
|
|
<md-progress-linear class="md-warn" md-mode="indeterminate" ng-disabled="!loading" ng-show="loading"></md-progress-linear>
|
2016-12-01 11:40:28 +02:00
|
|
|
<span style="min-height: 5px;" flex="" ng-show="!loading"></span>
|
|
|
|
|
<md-dialog-content>
|
|
|
|
|
<div class="md-dialog-content" style="padding-top: 0px;">
|
|
|
|
|
<fieldset ng-disabled="loading" style="position: relative; height: 600px;">
|
|
|
|
|
<tb-widget-config widget-type="vm.widget.type"
|
2017-06-19 19:22:48 +03:00
|
|
|
type-parameters="vm.widgetInfo.typeParameters"
|
2017-06-21 13:43:49 +03:00
|
|
|
action-sources="vm.widgetInfo.actionSources"
|
2016-12-01 11:40:28 +02:00
|
|
|
force-expand-datasources="true"
|
|
|
|
|
ng-model="vm.widgetConfig"
|
|
|
|
|
widget-settings-schema="vm.settingsSchema"
|
|
|
|
|
datakey-settings-schema="vm.dataKeySettingsSchema"
|
2017-06-07 17:09:04 +03:00
|
|
|
alias-controller="vm.aliasController"
|
2016-12-01 11:40:28 +02:00
|
|
|
functions-only="vm.functionsOnly"
|
2017-05-24 10:39:33 +03:00
|
|
|
fetch-entity-keys="vm.fetchEntityKeys(entityAliasId, query, type)"
|
|
|
|
|
on-create-entity-alias="vm.createEntityAlias(event, alias, allowedEntityTypes)"
|
2016-12-01 11:40:28 +02:00
|
|
|
the-form="theForm"></tb-widget-config>
|
|
|
|
|
</fieldset>
|
|
|
|
|
</div>
|
|
|
|
|
</md-dialog-content>
|
|
|
|
|
<md-dialog-actions layout="row">
|
|
|
|
|
<span flex></span>
|
|
|
|
|
<md-button ng-disabled="loading || theForm.$invalid" type="submit"
|
|
|
|
|
class="md-raised md-primary">
|
|
|
|
|
{{ 'action.add' | translate }}
|
|
|
|
|
</md-button>
|
|
|
|
|
<md-button ng-disabled="loading" ng-click="vm.cancel()" style="margin-right:20px;">{{ 'action.cancel' |
|
|
|
|
|
translate }}
|
|
|
|
|
</md-button>
|
|
|
|
|
</md-dialog-actions>
|
|
|
|
|
</form>
|
|
|
|
|
</md-dialog>
|