mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
134 lines
4.0 KiB
TypeScript
134 lines
4.0 KiB
TypeScript
import { Component, ComponentInterface, Element, Listen, Prop, h } from '@stencil/core';
|
|
|
|
import { getIonMode } from '../../global/ionic-global';
|
|
import { Color } from '../../interface';
|
|
import { AnchorInterface, ButtonInterface } from '../../utils/element-interface';
|
|
import { createColorClasses } from '../../utils/theme';
|
|
|
|
/**
|
|
* @virtualProp {"ios" | "md"} mode - The mode determines which platform styles to use.
|
|
*
|
|
* @slot - Content is placed between the named slots if provided without a slot.
|
|
* @slot start - Content is placed to the left of the option text in LTR, and to the right in RTL.
|
|
* @slot top - Content is placed above the option text.
|
|
* @slot icon-only - Should be used on an icon in an option that has no text.
|
|
* @slot bottom - Content is placed below the option text.
|
|
* @slot end - Content is placed to the right of the option text in LTR, and to the left in RTL.
|
|
*/
|
|
@Component({
|
|
tag: 'ion-item-option',
|
|
styleUrls: {
|
|
ios: 'item-option.ios.scss',
|
|
md: 'item-option.md.scss'
|
|
},
|
|
shadow: true
|
|
})
|
|
export class ItemOption implements ComponentInterface, AnchorInterface, ButtonInterface {
|
|
|
|
@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;
|
|
|
|
/**
|
|
* If `true`, the user cannot interact with the item option.
|
|
*/
|
|
@Prop() disabled = false;
|
|
|
|
/**
|
|
* This attribute instructs browsers to download a URL instead of navigating to
|
|
* it, so the user will be prompted to save it as a local file. If the attribute
|
|
* has a value, it is used as the pre-filled file name in the Save prompt
|
|
* (the user can still change the file name if they want).
|
|
*/
|
|
@Prop() download: string | undefined;
|
|
|
|
/**
|
|
* If `true`, the option will expand to take up the available width and cover any other options.
|
|
*/
|
|
@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 | undefined;
|
|
|
|
/**
|
|
* Specifies the relationship of the target object to the link object.
|
|
* The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
|
|
*/
|
|
@Prop() rel: string | undefined;
|
|
|
|
/**
|
|
* Specifies where to display the linked URL.
|
|
* Only applies when an `href` is provided.
|
|
* Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
|
|
*/
|
|
@Prop() target: string | undefined;
|
|
|
|
/**
|
|
* The type of the button.
|
|
*/
|
|
@Prop() type: 'submit' | 'reset' | 'button' = 'button';
|
|
|
|
@Listen('click')
|
|
onClick(ev: Event) {
|
|
const el = (ev.target as HTMLElement).closest('ion-item-option');
|
|
if (el) {
|
|
ev.preventDefault();
|
|
}
|
|
}
|
|
|
|
hostData() {
|
|
const mode = getIonMode(this);
|
|
const { disabled, expandable } = this;
|
|
return {
|
|
class: {
|
|
...createColorClasses(this.color),
|
|
[`${mode}`]: true,
|
|
|
|
'item-option-disabled': disabled,
|
|
'item-option-expandable': expandable,
|
|
'ion-activatable': true,
|
|
}
|
|
};
|
|
}
|
|
|
|
render() {
|
|
const TagType = this.href === undefined ? 'button' : 'a' as any;
|
|
const mode = getIonMode(this);
|
|
const attrs = (TagType === 'button')
|
|
? { type: this.type }
|
|
: {
|
|
download: this.download,
|
|
href: this.href,
|
|
target: this.target
|
|
};
|
|
|
|
return (
|
|
<TagType
|
|
{...attrs}
|
|
class="button-native"
|
|
disabled={this.disabled}
|
|
>
|
|
<span class="button-inner">
|
|
<slot name="top"></slot>
|
|
<div class="horizontal-wrapper">
|
|
<slot name="start"></slot>
|
|
<slot name="icon-only"></slot>
|
|
<slot></slot>
|
|
<slot name="end"></slot>
|
|
</div>
|
|
<slot name="bottom"></slot>
|
|
</span>
|
|
{mode === 'md' && <ion-ripple-effect></ion-ripple-effect>}
|
|
</TagType>
|
|
);
|
|
}
|
|
}
|