Chip React コンポーネント

    Chips (Tags) Reactコンポーネントは、連絡先のような複雑なエンティティを小さなブロックで表現します。写真、短いタイトル文字列、簡単な情報を含むことができます。

    チップコンポーネント

    以下のコンポーネントが含まれています。

    • Chip(チップ

    チップのプロパティ

    PropTypeDefaultDescription
    <Chip> properties
    textstringチップラベルテキスト
    mediastringチップメディアのテキストコンテンツ
    mediaBgColorstringチップメディア要素の背景色。デフォルトカラーのいずれか。
    mediaTextColorstringChip メディア要素のテキストの色。デフォルトカラーのうちの1つ。
    deleteablebooleanfalseChip に "delete" ボタンを追加するかどうかを定義する。
    outlinebooleanfalseチップのアウトライン化
    tooltipstringtooltip のテキストをホバー/プレス時に表示するかどうかを指定します。
    tooltipTriggerstringhoverどのようにしてTooltipを起動するかを定義します。hoverclickmanual`のいずれかです。
    <Chip> icon related properties
    iconSizestring
    number
    アイコンサイズ(px)
    iconColorstringアイコンの色 デフォルトカラーのうちの1つです。
    iconstringカスタムアイコンのクラス
    iconF7stringF7アイコンのフォントアイコンの名前
    iconMaterialstringマテリアルアイコンのフォントアイコンの名称
    iconIosstringiOSテーマを使用している場合に使用されるアイコンです。アイコンファミリーとアイコン名をコロンで区切ったものです。
    iconMdstringMDテーマを使用する場合のアイコンです。アイコンファミリーとアイコン名をコロンで区切ったもの、例えば、material:homeなど。
    iconAurorastringAuroraテーマを使用する場合のアイコンです。アイコンファミリーとアイコンの名前をコロンで区切ったものです。

    チップイベント

    EventDescription
    <Chip> events
    clickチップがクリックされると、イベントが発生します。
    deleteチップの削除ボタンがクリックされると、イベントが発生します。

    Chip スロット

    Chip React コンポーネントには、カスタムエレメント用の追加スロットがあります。

    • text - チップのテキストラベルの代わりに要素が挿入されます。
    • default - (text と同じ)
    • media - チップのメディア要素に挿入される要素です。

    Examples

    import React from 'react';
    import { Page, Navbar, BlockTitle, Block, Chip, Icon, f7 } from 'framework7-react';
    
    export default () => {
      const deleteChip = (e) => {
        const target = e.target;
        f7.dialog.confirm('Do you want to delete this tiny demo Chip?', () => {
          f7.$(target).parents('.chip').remove();
        });
      };
    
      return (
        
          
        <Page>
          <Navbar title="Chips" />
          <BlockTitle>Chips With Text</BlockTitle>
          <Block strong>
            <Chip text="Example Chip" />
            <Chip text="Another Chip" />
            <Chip text="One More Chip" />
            <Chip text="Fourth Chip" />
            <Chip text="Last One" />
          </Block>
          <BlockTitle>Outline Chips</BlockTitle>
          <Block strong>
            <Chip outline text="Example Chip" />
            <Chip outline text="Another Chip" />
            <Chip outline text="One More Chip" />
            <Chip outline text="Fourth Chip" />
            <Chip outline text="Last One" />
          </Block>
          <BlockTitle>Icon Chips</BlockTitle>
          <Block strong>
            <Chip text="Add Contact" mediaBgColor="blue">
              <Icon
                slot="media"
                ios="f7:plus_circle"
                aurora="f7:plus_circle"
                md="material:add_circle"
              />
            </Chip>
            <Chip text="London" mediaBgColor="green">
              <Icon slot="media" ios="f7:compass" aurora="f7:compass" md="material:location_on" />
            </Chip>
            <Chip text="John Doe" mediaBgColor="red">
              <Icon slot="media" ios="f7:person" aurora="f7:person" md="material:person" />
            </Chip>
          </Block>
          <BlockTitle>Contact Chips</BlockTitle>
          <Block strong>
            <Chip text="Jane Doe">
              <img slot="media" src="https://cdn.framework7.io/placeholder/people-100x100-9.jpg" />
            </Chip>
            <Chip text="John Doe">
              <img slot="media" src="https://cdn.framework7.io/placeholder/people-100x100-3.jpg" />
            </Chip>
            <Chip text="Adam Smith">
              <img slot="media" src="https://cdn.framework7.io/placeholder/people-100x100-7.jpg" />
            </Chip>
            <Chip text="Jennifer" mediaBgColor="pink" media="J" />
            <Chip text="Chris" mediaBgColor="yellow" mediaTextColor="black" media="C" />
            <Chip text="Kate" mediaBgColor="red" media="K" />
          </Block>
          <BlockTitle>Deletable Chips / Tags</BlockTitle>
          <Block strong>
            <Chip text="Example Chip" deleteable onDelete={deleteChip} />
            <Chip
              text="Chris"
              media="C"
              mediaBgColor="orange"
              textColor="black"
              deleteable
              onDelete={deleteChip}
            />
            <Chip text="Jane Doe" deleteable onDelete={deleteChip}>
              <img slot="media" src="https://cdn.framework7.io/placeholder/people-100x100-9.jpg" />
            </Chip>
            <Chip text="One More Chip" deleteable onDelete={deleteChip} />
            <Chip text="Jennifer" mediaBgColor="pink" media="J" deleteable onDelete={deleteChip} />
            <Chip text="Adam Smith" deleteable onDelete={deleteChip}>
              <img slot="media" src="https://cdn.framework7.io/placeholder/people-100x100-7.jpg" />
            </Chip>
          </Block>
          <BlockTitle>Color Chips</BlockTitle>
          <Block strong>
            <Chip text="Red Chip" color="red" />
            <Chip text="Green Chip" color="green" />
            <Chip text="Blue Chip" color="blue" />
            <Chip text="Orange Chip" color="orange" />
            <Chip text="Pink Chip" color="pink" />
            <Chip outline text="Red Chip" color="red" />
            <Chip outline text="Green Chip" color="green" />
            <Chip outline text="Blue Chip" color="blue" />
            <Chip outline text="Orange Chip" color="orange" />
            <Chip outline text="Pink Chip" color="pink" />
          </Block>
        </Page>
          
        
      );
    };