import { Box } from '@mui/material'; import React, { useState } from 'react'; import ToolTextInput from '../../../components/input/ToolTextInput'; import ToolTextResult from '../../../components/result/ToolTextResult'; import ToolOptions from '../../../components/options/ToolOptions'; import { shuffleList, SplitOperatorType } from './service'; import ToolInputAndResult from '../../../components/ToolInputAndResult'; import SimpleRadio from '../../../components/options/SimpleRadio'; import TextFieldWithDesc from '../../../components/options/TextFieldWithDesc'; import { isNumber } from '../../../utils/string'; const initialValues = { splitOperatorType: 'symbol' as SplitOperatorType, splitSeparator: ',', joinSeparator: ',', length: '' }; const splitOperators: { title: string; description: string; type: SplitOperatorType; }[] = [ { title: 'Use a Symbol for Splitting', description: 'Delimit input list items with a character.', type: 'symbol' }, { title: 'Use a Regex for Splitting', type: 'regex', description: 'Delimit input list items with a regular expression.' } ]; export default function Shuffle() { const [input, setInput] = useState(''); const [result, setResult] = useState(''); const compute = (optionsValues: typeof initialValues, input: any) => { const { splitOperatorType, splitSeparator, joinSeparator, length } = optionsValues; setResult( shuffleList( splitOperatorType, input, splitSeparator, joinSeparator, isNumber(length) ? Number(length) : undefined ) ); }; return ( } result={} /> [ { title: 'Input list separator', component: ( {splitOperators.map(({ title, description, type }) => ( updateField('splitOperatorType', type)} title={title} description={description} checked={values.splitOperatorType === type} /> ))} updateField('splitSeparator', val)} /> ) }, { title: 'Shuffled List Length', component: ( updateField('length', val)} /> ) }, { title: 'Shuffled List Separator', component: ( updateField('joinSeparator', value)} description={'Use this separator in the randomized list.'} /> ) } ]} initialValues={initialValues} input={input} /> ); }