import { Component, Element, Event, EventEmitter, Prop, State, Watch } from '@stencil/core'; import { CheckboxInput, CheckedInputChangeEvent, Color, Mode, StyleEvent } from '../../interface'; import { deferEvent, renderHiddenInput } from '../../utils/helpers'; import { createColorClasses, hostContext } from '../../utils/theme'; @Component({ tag: 'ion-checkbox', styleUrls: { ios: 'checkbox.ios.scss', md: 'checkbox.md.scss' }, shadow: true }) export class Checkbox implements CheckboxInput { private inputId = `ion-cb-${checkboxIds++}`; private labelId = `${this.inputId}-lbl`; @Element() el!: HTMLElement; @State() keyFocus = false; /** * The color to use for the checkbox. */ @Prop() color?: Color; /** * The mode determines which platform styles to use. * Possible values are: `"ios"` or `"md"`. */ @Prop() mode!: Mode; /** * The name of the control, which is submitted with the form data. */ @Prop() name: string = this.inputId; /** * If true, the checkbox is selected. Defaults to `false`. */ @Prop({ mutable: true }) checked = false; /** * If true, the user cannot interact with the checkbox. Defaults to `false`. */ @Prop() disabled = false; /** * The value of the checkbox. */ @Prop() value = 'on'; /** * Emitted when the checked property has changed. */ @Event() ionChange!: EventEmitter; /** * Emitted when the toggle has focus. */ @Event() ionFocus!: EventEmitter; /** * Emitted when the toggle loses focus. */ @Event() ionBlur!: EventEmitter; /** * Emitted when the styles change. */ @Event() ionStyle!: EventEmitter; componentWillLoad() { this.emitStyle(); } componentDidLoad() { this.ionStyle = deferEvent(this.ionStyle); } @Watch('checked') checkedChanged(isChecked: boolean) { this.ionChange.emit({ checked: isChecked, value: this.value }); this.emitStyle(); } @Watch('disabled') emitStyle() { this.ionStyle.emit({ 'checkbox-checked': this.checked, 'interactive-disabled': this.disabled, }); } onChange() { this.checked = !this.checked; } onKeyUp() { this.keyFocus = true; } onFocus() { this.ionFocus.emit(); } onBlur() { this.keyFocus = false; this.ionBlur.emit(); } hostData() { return { class: { ...createColorClasses(this.color), 'in-item': hostContext('.item', this.el), 'checkbox-checked': this.checked, 'checkbox-disabled': this.disabled, 'checkbox-key': this.keyFocus, 'interactive': true } }; } render() { renderHiddenInput(this.el, this.name, this.value, this.disabled); return [
, ]; } } let checkboxIds = 0;