dashboard-settings.tpl.html 6.77 KB
<!--

    Copyright © 2016 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.

-->
<md-dialog aria-label="{{ 'dashboard.settings' | translate }}">
    <form name="theForm" ng-submit="vm.save()">
        <md-toolbar>
            <div class="md-toolbar-tools">
                <h2 translate>dashboard.settings</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>
        <md-progress-linear class="md-warn" md-mode="indeterminate" ng-show="loading"></md-progress-linear>
        <span style="min-height: 5px;" flex="" ng-show="!loading"></span>
        <md-dialog-content>
            <div class="md-dialog-content">
                <fieldset ng-disabled="loading">
                    <md-input-container class="md-block">
                        <label translate>dashboard.columns-count</label>
                        <input required type="number" step="any" name="columns" ng-model="vm.gridSettings.columns" min="10"
                               max="1000" />
                        <div ng-messages="theForm.columns.$error" multiple md-auto-hide="false">
                            <div ng-message="required" translate>dashboard.columns-count-required</div>
                            <div ng-message="min" translate>dashboard.min-columns-count-message</div>
                            <div ng-message="max">dashboard.max-columns-count-message</div>
                        </div>
                    </md-input-container>
                    <small translate>dashboard.widgets-margins</small>
                    <div flex layout="row">
                        <md-input-container flex class="md-block">
                            <label translate>dashboard.horizontal-margin</label>
                            <input required type="number" step="any" name="hMargin" ng-model="vm.hMargin" min="0"
                                   max="50" />
                            <div ng-messages="theForm.hMargin.$error" multiple md-auto-hide="false">
                                <div ng-message="required" translate>dashboard.horizontal-margin-required</div>
                                <div ng-message="min" translate>dashboard.min-horizontal-margin-message</div>
                                <div ng-message="max" translate>dashboard.max-horizontal-margin-message</div>
                            </div>
                        </md-input-container>
                        <md-input-container flex class="md-block">
                            <label translate>dashboard.vertical-margin</label>
                            <input required type="number" step="any" name="vMargin" ng-model="vm.vMargin" min="0"
                                   max="50" />
                            <div ng-messages="theForm.vMargin.$error" multiple md-auto-hide="false">
                                <div ng-message="required" translate>dashboard.vertical-margin-required</div>
                                <div ng-message="min" translate>dashboard.min-vertical-margin-message</div>
                                <div ng-message="max" translate>dashboard.max-vertical-margin-message</div>
                            </div>
                        </md-input-container>
                    </div>
                    <div flex
                         ng-required="false"
                         md-color-picker
                         ng-model="vm.gridSettings.backgroundColor"
                         label="{{ 'dashboard.background-color' | translate }}"
                         icon="format_color_fill"
                         default="rgba(0,0,0,0)"
                         md-color-clear-button="false"
                         open-on-input="true"
                         md-color-generic-palette="false"
                         md-color-history="false"
                    ></div>
                    <div class="tb-container">
                        <label class="tb-label" translate>dashboard.background-image</label>
                        <div flow-init="{singleFile:true}"
                             flow-file-added="vm.imageAdded( $file )" class="tb-image-select-container">
                            <div class="tb-image-preview-container">
                                <div ng-show="!vm.gridSettings.backgroundImageUrl" translate>dashboard.no-image</div>
                                <img ng-show="vm.gridSettings.backgroundImageUrl" class="tb-image-preview" src="{{vm.gridSettings.backgroundImageUrl}}" />
                            </div>
                            <div class="tb-image-clear-container">
                                <md-button ng-click="vm.clearImage()"
                                           class="tb-image-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>dashboard.drop-image</label>
                                <input class="file-input" flow-btn flow-attrs="{accept:'image/*'}" id="select">
                            </div>
                        </div>
                    </div>
                </fieldset>
            </div>
        </md-dialog-content>
        <md-dialog-actions layout="row">
            <span flex></span>
            <md-button ng-disabled="loading || !theForm.$dirty || !theForm.$valid" type="submit" class="md-raised md-primary">
                {{ 'action.save' | 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>