搜索栏允许用户搜索 列表视图 元素。或者它可以作为您自定义搜索实现的视觉 UI 组件。
以下组件包含在内
搜索栏
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
clearButton | 布尔值 | true | 添加输入清除按钮 |
colors | 对象 | 具有 Tailwind CSS 颜色类的对象 | |
colors.inputBgIos | 字符串 | '' | |
colors.inputBgMaterial | 字符串 | 'bg-md-light-secondary-container dark:bg-md-dark-secondary-container' | |
colors.placeholderIos | 字符串 | '' | |
colors.placeholderMaterial | 字符串 | 'placeholder-md-light-on-surface-variant dark:placeholder-md-dark-on-surface-variant' | |
component | 字符串 | 'div' | 组件的 HTML 元素 |
disableButton | 布尔值 | false | 添加用于取消搜索的按钮并设置其初始状态 |
disableButtonText | 字符串 | '取消' | 禁用按钮文本 |
inputId | 字符串 | 输入 id 属性 | |
inputStyle | CSSProperties | 其他输入类 | |
placeholder | 字符串 | 数字 | '搜索' | 搜索栏占位符 |
value | 任何 | 搜索栏值 | |
onBlur | function(e) |
| |
onChange | function(e) |
| |
onClear | function(e) | 在清除按钮单击时触发 | |
onDisable | function(e) | 在搜索栏禁用时触发 | |
onFocus | function(e) |
| |
onInput | function(e) |
|
import React, { useState } from 'react';import {Page,Navbar,NavbarBackLink,Searchbar,List,ListItem,} from 'konsta/react';const items = [{ title: 'FC Ajax' },{ title: 'FC Arsenal' },{ title: 'FC Athletic' },{ title: 'FC Barcelona' },{ title: 'FC Bayern München' },{ title: 'FC Bordeaux' },{ title: 'FC Borussia Dortmund' },{ title: 'FC Chelsea' },{ title: 'FC Galatasaray' },{ title: 'FC Juventus' },{ title: 'FC Liverpool' },{ title: 'FC Manchester City' },{ title: 'FC Manchester United' },{ title: 'FC Paris Saint-Germain' },{ title: 'FC Real Madrid' },{ title: 'FC Tottenham Hotspur' },{ title: 'FC Valencia' },{ title: 'FC West Ham United' },];export default function SearchbarPage() {const [searchQuery, setSearchQuery] = useState('');const handleSearch = (e) => {setSearchQuery(e.target.value);};const handleClear = () => {setSearchQuery('');};const handleDisable = () => {console.log('Disable');};const filteredItems = searchQuery? items.filter((item) =>item.title.toLowerCase().includes(searchQuery.toLowerCase())): items;return (<Page><Navbartitle="Searchbar"subnavbar={<SearchbaronInput={handleSearch}value={searchQuery}onClear={handleClear}disableButtondisableButtonText="Cancel"onDisable={handleDisable}/>}/><List strong insetMaterial outlineIos>{filteredItems.length === 0 ? (<ListItem title="Nothing found" className="text-center" />) : (filteredItems.map((item) => (<ListItem key={item.title} title={item.title} />)))}</List></Page>);}