| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- import React from 'react';
- import Rating from '../index';
- import Button from '../../button'
- import { IconLikeHeart } from '@douyinfe/semi-icons';
- export default {
- title: 'Rating',
- parameters: {
- chromatic: { disableSnapshot: true },
- },
- }
- export const _Rating = () => (
- <div style={{ display: 'flex' }}>
- <div style={{ width: '50%' }}>
- <h5>default</h5>
- <Rating />
- <br />
- <h5>allowHalf</h5>
- <Rating allowHalf />
- <br />
- <h5>disabled</h5>
- <Rating disabled defaultValue={4} />
- <br />
- <h5>allowClear = false</h5>
- <Rating allowClear={false} />
- <br />
- <h5>character</h5>
- <Rating size="small" character={<IconLikeHeart />} />
- <br />
- <Rating character={'好'} defaultValue={2} disabled />
- </div>
- <div style={{ width: '50%' }}>
- <br />
- <h5>tooltips</h5>
- <Rating tooltips={['terrible', 'bad', 'normal', 'good', 'wonderful']} />
- <br />
- <h5>defaultValue</h5>
- <Rating defaultValue={2} />
- <h5>value</h5>
- <Rating value={3} />
- <br />
- <h5>onHoverChange</h5>
- <Rating onHoverChange={e => console.log(e)} />
- <h5>size</h5>
- <Rating size="small" defaultValue={2} />
- <Rating size="large" defaultValue={2} />
- </div>
- </div>
- );
- _Rating.parameters = {
- chromatic: { disableSnapshot: false },
- };
- class Demo extends React.Component {
- constructor(props) {
- super();
- this.state = {
- value: 0,
- };
- this.handleChange = this.handleChange.bind(this);
- }
- handleChange(value) {
- this.setState({
- value,
- });
- }
- render() {
- const { value } = this.state;
- const desc = ['terrible', 'bad', 'normal', 'good', 'wonderful'];
- return (
- <div>
- <span>How was the help you received: {value ? <span id='rating-result'>{desc[value - 1]}</span> : ''}</span>
- <br />
- <Rating tooltips={desc} onChange={this.handleChange} value={value} />
- </div>
- );
- }
- }
- export const TooltipRating = () => <Demo />;
- TooltipRating.story = {
- name: 'tooltip Rating',
- };
- const KeyDownDemo = () => {
- return <Rating onKeyDown={event => console.log(event)} />;
- };
- export const Keydown = () => <KeyDownDemo />;
- Keydown.story = {
- name: 'keydown',
- };
- const AutoFocusDemo = () => {
- return <Rating defaultValue={2} autoFocus />;
- }
- export const AutoFocus = () => <AutoFocusDemo />;
- AutoFocus.story = {
- name: 'autofocus',
- };
|