45 lines
2.0 KiB
HTML
45 lines
2.0 KiB
HTML
<!--
|
|
|
|
Copyright © 2016-2017 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-autocomplete ng-required="tbRequired"
|
|
md-input-name="plugin"
|
|
ng-model="plugin"
|
|
md-selected-item="plugin"
|
|
md-search-text="pluginSearchText"
|
|
md-search-text-change="pluginSearchTextChanged()"
|
|
md-items="item in fetchPlugins(pluginSearchText)"
|
|
md-item-text="item.name"
|
|
md-min-length="0"
|
|
placeholder="{{ 'plugin.select-plugin' | translate }}"
|
|
md-menu-class="tb-plugin-autocomplete">
|
|
<md-item-template>
|
|
<div class="tb-plugin-item">
|
|
<span md-highlight-text="pluginSearchText" md-highlight-flags="^i">{{item.name}}</span>
|
|
<span translate class="tb-plugin-system" ng-if="isSystem(item)">plugin.system</span>
|
|
</div>
|
|
</md-item-template>
|
|
<md-not-found>
|
|
<div class="tb-not-found">
|
|
<span translate translate-values='{ plugin: pluginSearchText }'>plugin.no-plugins-matching</span>
|
|
</div>
|
|
</md-not-found>
|
|
</md-autocomplete>
|
|
<div ng-if="searchTextChanged" class="tb-error-messages" ng-messages="theForm.plugin.$error" role="alert">
|
|
<div translate ng-message="required" class="tb-error-message">plugin.plugin-required</div>
|
|
<div translate ng-message="md-require-match" class="tb-error-message">plugin.plugin-require-match</div>
|
|
</div>
|