Added ui's(create palindrome, extract substring, palindrome check, randomize case, reverse, uppercase)

This commit is contained in:
‘lukasHerajt’
2025-03-08 07:32:13 -05:00
parent 4e1d2468df
commit 6402001d80
7 changed files with 667 additions and 53 deletions

View File

@@ -1,11 +1,151 @@
import { Box } from '@mui/material';
import React from 'react';
import * as Yup from 'yup';
import React, { useState, useRef } from 'react';
import ToolTextInput from '@components/input/ToolTextInput';
import ToolTextResult from '@components/result/ToolTextResult';
import ToolOptions, { GetGroupsType } from '@components/options/ToolOptions';
import { extractSubstring } from './service';
import TextFieldWithDesc from '@components/options/TextFieldWithDesc';
import CheckboxWithDesc from '@components/options/CheckboxWithDesc';
import ToolInputAndResult from '@components/ToolInputAndResult';
import ToolExamples, {
CardExampleType
} from '@components/examples/ToolExamples';
import { ToolComponentProps } from '@tools/defineTool';
import { FormikProps } from 'formik';
const initialValues = {};
const validationSchema = Yup.object({
// splitSeparator: Yup.string().required('The separator is required')
});
export default function ExtractSubstring() {
return <Box>Lorem ipsum</Box>;
const initialValues = {
start: '1',
length: '5',
multiLine: false,
reverse: false
};
const exampleCards: CardExampleType<typeof initialValues>[] = [
{
title: 'Extract First 5 Characters',
description: 'This example extracts the first 5 characters from the text.',
sampleText: 'The quick brown fox jumps over the lazy dog.',
sampleResult: 'The q',
sampleOptions: {
...initialValues,
start: '1',
length: '5'
}
},
{
title: 'Extract Words from the Middle',
description:
'Extract a substring starting from position 11 with a length of 10 characters.',
sampleText: 'The quick brown fox jumps over the lazy dog.',
sampleResult: 'brown fox',
sampleOptions: {
...initialValues,
start: '11',
length: '10'
}
},
{
title: 'Multi-line Extraction with Reversal',
description: 'Extract characters 1-3 from each line and reverse them.',
sampleText: 'First line\nSecond line\nThird line',
sampleResult: 'riF\neS\nihT',
sampleOptions: {
...initialValues,
start: '1',
length: '3',
multiLine: true,
reverse: true
}
}
];
export default function ExtractSubstring({ title }: ToolComponentProps) {
const [input, setInput] = useState<string>('');
const [result, setResult] = useState<string>('');
const formRef = useRef<FormikProps<typeof initialValues>>(null);
const computeExternal = (
optionsValues: typeof initialValues,
input: string
) => {
const { start, length, multiLine, reverse } = optionsValues;
try {
setResult(
extractSubstring(
input,
parseInt(start, 10),
parseInt(length, 10),
multiLine,
reverse
)
);
} catch (error) {
if (error instanceof Error) {
setResult(`Error: ${error.message}`);
} else {
setResult('An unknown error occurred');
}
}
};
const getGroups: GetGroupsType<typeof initialValues> = ({
values,
updateField
}) => [
{
title: 'Extraction options',
component: [
<TextFieldWithDesc
key="start"
value={values.start}
onOwnChange={(value) => updateField('start', value)}
description="Start position (1-based index)"
type="number"
/>,
<TextFieldWithDesc
key="length"
value={values.length}
onOwnChange={(value) => updateField('length', value)}
description="Number of characters to extract"
type="number"
/>,
<CheckboxWithDesc
key="multiLine"
checked={values.multiLine}
title="Process multi-line text"
description="Extract from each line independently"
onChange={(val) => updateField('multiLine', val)}
/>,
<CheckboxWithDesc
key="reverse"
checked={values.reverse}
title="Reverse output"
description="Reverse the extracted substring"
onChange={(val) => updateField('reverse', val)}
/>
]
}
];
return (
<Box>
<ToolInputAndResult
input={<ToolTextInput value={input} onChange={setInput} />}
result={<ToolTextResult title={'Extracted text'} value={result} />}
/>
<ToolOptions
compute={computeExternal}
getGroups={getGroups}
initialValues={initialValues}
input={input}
/>
<ToolExamples
title={title}
exampleCards={exampleCards}
getGroups={getGroups}
formRef={formRef}
setInput={setInput}
/>
</Box>
);
}