mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-26 09:29:30 +02:00
121 lines
3.6 KiB
TypeScript
121 lines
3.6 KiB
TypeScript
import { Box } from '@mui/material';
|
|
import React, { useState } from 'react';
|
|
import ToolTextInput from '@components/input/ToolTextInput';
|
|
import ToolTextResult from '@components/result/ToolTextResult';
|
|
import ToolContent from '@components/ToolContent';
|
|
import { shuffleList, SplitOperatorType } from './service';
|
|
import SimpleRadio from '@components/options/SimpleRadio';
|
|
import TextFieldWithDesc from '@components/options/TextFieldWithDesc';
|
|
import { isNumber } from '@utils/string';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
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 { t } = useTranslation();
|
|
const [input, setInput] = useState<string>('');
|
|
const [result, setResult] = useState<string>('');
|
|
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 (
|
|
<ToolContent
|
|
title={t('list.shuffle.title')}
|
|
initialValues={initialValues}
|
|
compute={compute}
|
|
input={input}
|
|
setInput={setInput}
|
|
inputComponent={
|
|
<ToolTextInput
|
|
title={t('list.shuffle.inputTitle')}
|
|
value={input}
|
|
onChange={setInput}
|
|
/>
|
|
}
|
|
resultComponent={
|
|
<ToolTextResult title={t('list.shuffle.resultTitle')} value={result} />
|
|
}
|
|
getGroups={({ values, updateField }) => [
|
|
{
|
|
title: t('list.shuffle.inputListSeparator'),
|
|
component: (
|
|
<Box>
|
|
{splitOperators.map(({ title, description, type }) => (
|
|
<SimpleRadio
|
|
key={type}
|
|
onClick={() => updateField('splitOperatorType', type)}
|
|
title={title}
|
|
description={description}
|
|
checked={values.splitOperatorType === type}
|
|
/>
|
|
))}
|
|
<TextFieldWithDesc
|
|
description={t('list.shuffle.delimiterDescription')}
|
|
value={values.splitSeparator}
|
|
onOwnChange={(val) => updateField('splitSeparator', val)}
|
|
/>
|
|
</Box>
|
|
)
|
|
},
|
|
{
|
|
title: t('list.shuffle.shuffledListLength'),
|
|
component: (
|
|
<Box>
|
|
<TextFieldWithDesc
|
|
description={t('list.shuffle.outputLengthDescription')}
|
|
value={values.length}
|
|
onOwnChange={(val) => updateField('length', val)}
|
|
/>
|
|
</Box>
|
|
)
|
|
},
|
|
{
|
|
title: t('list.shuffle.shuffledListSeparator'),
|
|
component: (
|
|
<Box>
|
|
<TextFieldWithDesc
|
|
value={values.joinSeparator}
|
|
onOwnChange={(value) => updateField('joinSeparator', value)}
|
|
description={t('list.shuffle.joinSeparatorDescription')}
|
|
/>
|
|
</Box>
|
|
)
|
|
}
|
|
]}
|
|
/>
|
|
);
|
|
}
|