import React, { useState } from 'react' import { useTranslate } from '../utils'; import InputNumber from '.'; import Cell from '../cell'; import Toast from '../toast'; import { DemoPage, DemoCard } from '../configprovider/styles/demo.page' interface IValState { val1: number | string val2: number | string val3: number | string val4: number | string val5: number | string val6: number | string val7: number | string val8: number | string } interface T { '6333c786': string '0137871a': string '84aa6bce': string '55cc5fb7': string '9636103a': string '181965e2': string e7b2ce1f: string '3a42134b': string '65bafb1d': string '7e2394ae': string } const InputNumberDemo = () => { const [translated] = useTranslate({ 'zh-CN': { '6333c786': '超出限制事件触发', '0137871a': '异步演示2秒后更改', '84aa6bce': '基础用法', '55cc5fb7': '步长设置', '9636103a': '限制输入范围', '181965e2': '禁用操作', e7b2ce1f: '只读禁用输入框', '3a42134b': '支持小数点', '65bafb1d': '支持异步修改', '7e2394ae': '自定义按钮大小', }, 'zh-TW': { '6333c786': '超出限制事件觸發', '0137871a': '異步演示2秒後更改', '84aa6bce': '基礎用法', '55cc5fb7': '步長設置', '9636103a': '限制輸入範圍', '181965e2': '禁用操作', e7b2ce1f: '只讀禁用輸入框', '3a42134b': '支持小數點', '65bafb1d': '支持異步修改', '7e2394ae': '自定義按鈕大小', }, 'en-US': { '6333c786': 'Exceeded limit event triggered', '0137871a': 'Async demo changes after 2 seconds', '84aa6bce': 'Basic usage', '55cc5fb7': 'Step size setting', '9636103a': 'Limit input range', '181965e2': 'Disable operation', e7b2ce1f: 'read-only disabled input box', '3a42134b': 'support decimal point', '65bafb1d': 'Support for asynchronous modification', '7e2394ae': 'custom button size', }, }) const [inputState, setInputState] = useState({ val1: 1, val2: 0, val3: 10, val4: 0, val5: 1, val6: 5.5, val7: 1, val8: 1, }) const overlimit = (e: MouseEvent) => { console.log(e) Toast.warn(translated['6333c786']) } const onChange = (value: string | number) => { Toast.loading('异步演示 2 秒后更改'); setTimeout(() => { inputState.val7 = Number(value) setInputState({ ...inputState }) }, 2000) } return ( ) } export default InputNumberDemo