Files
2018-07-29 23:10:38 +02:00

84 lines
2.1 KiB
TypeScript

import { Component, Element, Prop } from '@stencil/core';
import { Color, Mode } from '../../interface';
import { createColorClasses } from '../../utils/theme';
@Component({
tag: 'ion-item-option',
styleUrls: {
ios: 'item-option.ios.scss',
md: 'item-option.md.scss'
},
shadow: true
})
export class ItemOption {
@Element() el!: HTMLElement;
/**
* The color to use from your application's color palette.
* Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`.
* For more information on colors, see [theming](/docs/theming/basics).
*/
@Prop() color?: Color;
/**
* The mode determines which platform styles to use.
* Possible values are: `"ios"` or `"md"`.
*/
@Prop() mode!: Mode;
/**
* If true, the user cannot interact with the item option. Defaults to `false`.
*/
@Prop() disabled = false;
/**
* If true, the option will expand to take up the available width and cover any other options. Defaults to `false`.
*/
@Prop() expandable = false;
/**
* Contains a URL or a URL fragment that the hyperlink points to.
* If this property is set, an anchor tag will be rendered.
*/
@Prop() href?: string;
private clickedOptionButton(ev: Event): boolean {
const el = (ev.target as HTMLElement).closest('ion-item-option');
return !!el;
}
hostData() {
return {
class: {
...createColorClasses(this.color),
'item-option-expandable': this.expandable
}
};
}
render() {
const TagType = this.href ? 'a' : 'button';
return (
<TagType
type="button"
class="item-option-native"
disabled={this.disabled}
href={this.href}
onClick={this.clickedOptionButton.bind(this)}
>
<span class="item-option-button-inner">
<slot name="start"></slot>
<slot name="top" />
<slot name="icon-only" />
<slot></slot>
<slot name="bottom" />
<slot name="end"></slot>
</span>
</TagType>
);
}
}