
The 'polymer-cli lint' is a replacement for the deprecated polylint tool. The polymer-cli tool has a known bug - it breaks when there is an empty style block - https://github.com/Polymer/tools/issues/408. A workaround is to add some comment inside empty style block. Change-Id: Iec82362ec9e72ae5aeff92f352992333b461a5cf
120 lines
5.1 KiB
HTML
120 lines
5.1 KiB
HTML
<!--
|
|
@license
|
|
Copyright (C) 2018 The Android Open Source Project
|
|
|
|
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.
|
|
-->
|
|
|
|
<link rel="import" href="/bower_components/polymer/polymer.html">
|
|
<link rel="import" href="/bower_components/iron-input/iron-input.html">
|
|
<link rel="import" href="/bower_components/paper-toggle-button/paper-toggle-button.html">
|
|
|
|
<link rel="import" href="../../../behaviors/gr-repo-plugin-config-behavior/gr-repo-plugin-config-behavior.html">
|
|
<link rel="import" href="../../../styles/gr-form-styles.html">
|
|
<link rel="import" href="../../../styles/gr-subpage-styles.html">
|
|
<link rel="import" href="../../../styles/shared-styles.html">
|
|
<link rel="import" href="../../shared/gr-icons/gr-icons.html">
|
|
<link rel="import" href="../../shared/gr-select/gr-select.html">
|
|
<link rel="import" href="../../shared/gr-tooltip-content/gr-tooltip-content.html">
|
|
<link rel="import" href="../gr-plugin-config-array-editor/gr-plugin-config-array-editor.html">
|
|
|
|
<dom-module id="gr-repo-plugin-config">
|
|
<template>
|
|
<style include="shared-styles">
|
|
/* Workaround for empty style block - see https://github.com/Polymer/tools/issues/408 */
|
|
</style>
|
|
<style include="gr-form-styles">
|
|
/* Workaround for empty style block - see https://github.com/Polymer/tools/issues/408 */
|
|
</style>
|
|
<style include="gr-subpage-styles">
|
|
.inherited {
|
|
color: var(--deemphasized-text-color);
|
|
margin-left: var(--spacing-m);
|
|
}
|
|
section.section:not(.ARRAY) .title {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
section.section.ARRAY .title {
|
|
padding-top: var(--spacing-m);
|
|
}
|
|
</style>
|
|
<div class="gr-form-styles">
|
|
<fieldset>
|
|
<h4>[[pluginData.name]]</h4>
|
|
<template is="dom-repeat" items="[[_pluginConfigOptions]]" as="option">
|
|
<section class$="section [[option.info.type]]">
|
|
<span class="title">
|
|
<gr-tooltip-content
|
|
has-tooltip="[[option.info.description]]"
|
|
show-icon="[[option.info.description]]"
|
|
title="[[option.info.description]]">
|
|
<span>[[option.info.display_name]]</span>
|
|
</gr-tooltip-content>
|
|
</span>
|
|
<span class="value">
|
|
<template is="dom-if" if="[[_isArray(option.info.type)]]">
|
|
<gr-plugin-config-array-editor
|
|
on-plugin-config-option-changed="_handleArrayChange"
|
|
plugin-option="[[option]]"></gr-plugin-config-array-editor>
|
|
</template>
|
|
<template is="dom-if" if="[[_isBoolean(option.info.type)]]">
|
|
<paper-toggle-button
|
|
checked="[[_computeChecked(option.info.value)]]"
|
|
on-change="_handleBooleanChange"
|
|
data-option-key$="[[option._key]]"
|
|
disabled$="[[_computeDisabled(option.info.editable)]]"></paper-toggle-button>
|
|
</template>
|
|
<template is="dom-if" if="[[_isList(option.info.type)]]">
|
|
<gr-select
|
|
bind-value$="[[option.info.value]]"
|
|
on-change="_handleListChange">
|
|
<select
|
|
data-option-key$="[[option._key]]"
|
|
disabled$="[[_computeDisabled(option.info.editable)]]">
|
|
<template is="dom-repeat"
|
|
items="[[option.info.permitted_values]]"
|
|
as="value">
|
|
<option value$="[[value]]">[[value]]</option>
|
|
</template>
|
|
</select>
|
|
</gr-select>
|
|
</template>
|
|
<template is="dom-if" if="[[_isString(option.info.type)]]">
|
|
<iron-input
|
|
bind-value="[[option.info.value]]"
|
|
on-input="_handleStringChange"
|
|
data-option-key$="[[option._key]]"
|
|
disabled$="[[_computeDisabled(option.info.editable)]]">
|
|
<input
|
|
is="iron-input"
|
|
value="[[option.info.value]]"
|
|
on-input="_handleStringChange"
|
|
data-option-key$="[[option._key]]"
|
|
disabled$="[[_computeDisabled(option.info.editable)]]">
|
|
</iron-input>
|
|
</template>
|
|
<template is="dom-if" if="[[option.info.inherited_value]]">
|
|
<span class="inherited">
|
|
(Inherited: [[option.info.inherited_value]])
|
|
</span>
|
|
</template>
|
|
</span>
|
|
</section>
|
|
</template>
|
|
</fieldset>
|
|
</div>
|
|
</template>
|
|
<script src="gr-repo-plugin-config.js"></script>
|
|
</dom-module>
|