2017-01-06 19:49:00 +02:00
|
|
|
<!--
|
|
|
|
|
|
2019-02-01 16:39:33 +02:00
|
|
|
Copyright © 2016-2019 The Thingsboard Authors
|
2017-01-06 19:49:00 +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="{{ vm.importTitle | translate }}">
|
|
|
|
|
<form name="theForm" ng-submit="vm.importFromJson()">
|
|
|
|
|
<md-toolbar>
|
|
|
|
|
<div class="md-toolbar-tools">
|
|
|
|
|
<h2 translate>{{ vm.importTitle }}</h2>
|
|
|
|
|
<span flex></span>
|
|
|
|
|
<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-12-29 19:09:34 +02:00
|
|
|
<md-progress-linear class="md-warn" md-mode="indeterminate" ng-disabled="!$root.loading" ng-show="$root.loading"></md-progress-linear>
|
|
|
|
|
<span style="min-height: 5px;" flex="" ng-show="!$root.loading"></span>
|
2017-01-06 19:49:00 +02:00
|
|
|
<md-dialog-content>
|
|
|
|
|
<div class="md-dialog-content">
|
2017-12-29 19:09:34 +02:00
|
|
|
<fieldset ng-disabled="$root.loading">
|
2017-01-06 19:49:00 +02:00
|
|
|
<div layout="column" layout-padding>
|
|
|
|
|
<div class="tb-container">
|
|
|
|
|
<label class="tb-label" translate>{{ vm.importFileLabel }}</label>
|
|
|
|
|
<div flow-init="{singleFile:true}"
|
|
|
|
|
flow-file-added="vm.fileAdded( $file )" class="tb-file-select-container">
|
|
|
|
|
<div class="tb-file-clear-container">
|
|
|
|
|
<md-button ng-click="vm.clearFile()"
|
|
|
|
|
class="tb-file-clear-btn md-icon-button md-primary" aria-label="{{ 'action.remove' | translate }}">
|
|
|
|
|
<md-tooltip md-direction="top">
|
|
|
|
|
{{ 'action.remove' | translate }}
|
|
|
|
|
</md-tooltip>
|
|
|
|
|
<md-icon aria-label="{{ 'action.remove' | translate }}" class="material-icons">
|
|
|
|
|
close
|
|
|
|
|
</md-icon>
|
|
|
|
|
</md-button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="alert tb-flow-drop" flow-drop>
|
|
|
|
|
<label for="select" translate>import.drop-file</label>
|
|
|
|
|
<input class="file-input" flow-btn flow-attrs="{accept:'.json,application/json'}" id="select">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<div ng-show="!vm.fileName" translate>import.no-file</div>
|
|
|
|
|
<div ng-show="vm.fileName">{{ vm.fileName }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</fieldset>
|
|
|
|
|
</div>
|
|
|
|
|
</md-dialog-content>
|
|
|
|
|
<md-dialog-actions layout="row">
|
|
|
|
|
<span flex></span>
|
2017-12-29 19:09:34 +02:00
|
|
|
<md-button ng-disabled="$root.loading || !theForm.$dirty || !theForm.$valid || !vm.importData" type="submit" class="md-raised md-primary">
|
2017-01-06 19:49:00 +02:00
|
|
|
{{ 'action.import' | translate }}
|
|
|
|
|
</md-button>
|
2017-12-29 19:09:34 +02:00
|
|
|
<md-button ng-disabled="$root.loading" ng-click="vm.cancel()" style="margin-right:20px;">{{ 'action.cancel' | translate }}</md-button>
|
2017-01-06 19:49:00 +02:00
|
|
|
</md-dialog-actions>
|
|
|
|
|
</form>
|
|
|
|
|
</md-dialog>
|