blob: 8678187e6aedb81ff1bf578b831ebba13b024d6f [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview 'settings-textarea' is a component similar to native textarea,
* and inherits styling from cr-input.
*/
import '//resources/cr_elements/hidden_style_css.m.js';
import '//resources/cr_elements/shared_style_css.m.js';
import '//resources/cr_elements/cr_input/cr_input_style_css.m.js';
import {html, PolymerElement} from '//resources/polymer/v3_0/polymer/polymer_bundled.min.js';
interface SettingsTextareaElement {
$: {
input: HTMLTextAreaElement,
};
}
class SettingsTextareaElement extends PolymerElement {
static get is() {
return 'settings-textarea';
}
static get template() {
return html`{__html_template__}`;
}
static get properties() {
return {
/**
* Whether the text area should automatically get focus when the page
* loads.
*/
autofocus: {
type: Boolean,
value: false,
reflectToAttribute: true,
},
/**
* Whether the text area is disabled. When disabled, the text area loses
* focus and is not reachable by tabbing.
*/
disabled: {
type: Boolean,
value: false,
reflectToAttribute: true,
observer: 'onDisabledChanged_'
},
/** Number of rows (lines) of the text area. */
rows: {
type: Number,
value: 3,
reflectToAttribute: true,
},
/** Caption of the text area. */
label: {
type: String,
value: '',
},
/**
* Text inside the text area. If the text exceeds the bounds of the text
* area, i.e. if it has more than |rows| lines, a scrollbar is shown by
* default.
*/
value: {
type: String,
value: '',
notify: true,
},
};
}
autofocus: boolean;
disabled: boolean;
rows: number;
label: string;
value: string;
/**
* 'change' event fires when <input> value changes and user presses 'Enter'.
* This function helps propagate it to host since change events don't
* propagate across Shadow DOM boundary by default.
*/
private onInputChange_(e: Event) {
this.dispatchEvent(new CustomEvent(
'change', {bubbles: true, composed: true, detail: {sourceEvent: e}}));
}
private onInputFocusChange_() {
// focused_ is used instead of :focus-within, so focus on elements within
// the suffix slot does not trigger a change in input styles.
if (this.shadowRoot!.activeElement === this.$.input) {
this.setAttribute('focused_', '');
} else {
this.removeAttribute('focused_');
}
}
private onDisabledChanged_() {
this.setAttribute('aria-disabled', this.disabled ? 'true' : 'false');
}
}
customElements.define(SettingsTextareaElement.is, SettingsTextareaElement);