File size: 4,940 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | import React, { Component } from 'react';
import { storiesOf } from '@storybook/react';
import { object, boolean } from '@storybook/addon-knobs';
import { action } from '@storybook/addon-actions';
import { Panel, SearchBox } from 'react-instantsearch-dom';
import { WrapWithHits } from './util';
const stories = storiesOf('SearchBox', module);
stories
.add('default', () => (
<WrapWithHits
searchBox={false}
hasPlayground={true}
linkedStoryGroup="SearchBox.stories.js"
>
<SearchBox showLoadingIndicator={boolean('showLoadingIndicator', true)} />
</WrapWithHits>
))
.add('with a default query', () => (
<WrapWithHits
searchBox={false}
hasPlayground={true}
linkedStoryGroup="SearchBox.stories.js"
>
<SearchBox defaultRefinement="battery" />
</WrapWithHits>
))
.add('with submit and reset components', () => (
<WrapWithHits
searchBox={false}
hasPlayground={true}
linkedStoryGroup="SearchBox.stories.js"
>
<SearchBox
submit={<span>🔍</span>}
reset={
<svg viewBox="200 198 108 122">
<path d="M200.8 220l45 46.7-20 47.4 31.7-34 50.4 39.3-34.3-52.6 30.2-68.3-49.7 51.7" />
</svg>
}
/>
</WrapWithHits>
))
.add('Display feedback when search is stalled (custom component)', () => (
<WrapWithHits searchBox={false} linkedStoryGroup="SearchBox.stories.js">
<SearchBox
showLoadingIndicator={true}
loadingIndicator={<span>✨</span>}
/>
</WrapWithHits>
))
.add('without search as you type', () => (
<WrapWithHits searchBox={false} linkedStoryGroup="SearchBox.stories.js">
<SearchBox searchAsYouType={false} />
</WrapWithHits>
))
.add('with Panel', () => (
<WrapWithHits
searchBox={false}
hasPlayground={true}
linkedStoryGroup="SearchBox.stories.js"
>
<Panel header="SearchBox" footer="Footer">
<SearchBox />
</Panel>
</WrapWithHits>
))
.add('playground', () => (
<WrapWithHits searchBox={false} linkedStoryGroup="SearchBox.stories.js">
<SearchBox
focusShortcuts={['s']}
searchAsYouType={true}
autoFocus={true}
translations={object('translations', {
submitTitle: 'Submit your search query.',
resetTitle: 'Clear your search query.',
placeholder: 'Search your website.',
})}
/>
</WrapWithHits>
));
// with event listeners
// --------------------
class SearchBoxContainer extends Component {
state = { selectedEvents: { onChange: true } };
get supportedEvents() {
return [
'onChange',
'onFocus',
'onBlur',
'onSelect',
'onKeyDown',
'onKeyPress',
'onSubmit',
'onReset',
];
}
handleSelectedEvent =
(eventName) =>
({ target: { checked } }) => {
const { selectedEvents } = this.state;
this.setState({
selectedEvents: { ...selectedEvents, [eventName]: checked },
});
};
handleSubmit = (event) => {
// we dont want the page to reload after the submit event
event.preventDefault();
event.stopPropagation();
this.logAction('onSubmit')(event);
};
logAction = (eventName) => (event) => {
// we dont want to log unselected event
if (this.state.selectedEvents[eventName]) {
action(eventName)(event);
}
};
render() {
return (
<WrapWithHits
searchBox={false}
hasPlayground={true}
linkedStoryGroup="SearchBox.stories.js"
>
<div
style={{
color: '#999',
borderBottom: '1px solid #E4E4E4',
marginBottom: 10,
}}
>
{/* events checkboxes */}
{this.supportedEvents.map((eventName) => (
<label key={eventName} style={{ marginRight: 10 }}>
<input
name={`selectEvent-${eventName}`}
type="checkbox"
checked={this.state.selectedEvents[eventName]}
onChange={this.handleSelectedEvent(eventName)}
/>
{eventName}
</label>
))}
<div style={{ marginBottom: 5, marginTop: 5, fontSize: 12 }}>
<em>
(Click on the action logger tab of the right sidebar to see event
logs)
</em>
</div>
</div>
<SearchBox
onSubmit={this.handleSubmit}
onReset={this.logAction('onReset')}
onChange={this.logAction('onChange')}
onFocus={this.logAction('onFocus')}
onBlur={this.logAction('onBlur')}
onSelect={this.logAction('onSelect')}
onKeyDown={this.logAction('onKeyDown')}
onKeyPress={this.logAction('onKeyPress')}
/>
</WrapWithHits>
);
}
}
stories.add('with event listeners', () => <SearchBoxContainer />);
|