mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
import { Component, ComponentInterface, Listen, Prop } from '@stencil/core';
|
|
|
|
import { Mode, SelectPopoverOption } from '../../interface';
|
|
import { createThemedClasses } from '../../utils/theme';
|
|
|
|
@Component({
|
|
tag: 'ion-select-popover',
|
|
styleUrl: 'select-popover.scss',
|
|
scoped: true
|
|
})
|
|
export class SelectPopover implements ComponentInterface {
|
|
|
|
mode!: Mode;
|
|
|
|
/** Header text for the popover */
|
|
@Prop() header?: string;
|
|
|
|
/** Subheader text for the popover */
|
|
@Prop() subHeader?: string;
|
|
|
|
/** Text for popover body */
|
|
@Prop() message?: string;
|
|
|
|
/** Array of options for the popover */
|
|
@Prop() options: SelectPopoverOption[] = [];
|
|
|
|
@Listen('ionSelect')
|
|
onSelect(ev: any) {
|
|
const option = this.options.find(o => o.value === ev.target.value);
|
|
if (option && option.handler) {
|
|
option.handler();
|
|
}
|
|
}
|
|
|
|
hostData() {
|
|
return {
|
|
class: createThemedClasses(this.mode, 'select-popover')
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<ion-list>
|
|
{this.header !== undefined && <ion-list-header>{this.header}</ion-list-header>}
|
|
{ (this.subHeader !== undefined || this.message !== undefined) &&
|
|
<ion-item>
|
|
<ion-label text-wrap>
|
|
{this.subHeader !== undefined && <h3>{this.subHeader}</h3>}
|
|
{this.message !== undefined && <p>{this.message}</p>}
|
|
</ion-label>
|
|
</ion-item>
|
|
}
|
|
<ion-radio-group>
|
|
{this.options.map(option =>
|
|
<ion-item>
|
|
<ion-label>
|
|
{option.text}
|
|
</ion-label>
|
|
<ion-radio
|
|
checked={option.checked}
|
|
value={option.value}
|
|
disabled={option.disabled}
|
|
>
|
|
</ion-radio>
|
|
</ion-item>
|
|
)}
|
|
</ion-radio-group>
|
|
</ion-list>
|
|
);
|
|
}
|
|
}
|