mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-22 07:29:39 +02:00
Added ui's(create palindrome, extract substring, palindrome check, randomize case, reverse, uppercase)
This commit is contained in:
@@ -1,11 +1,115 @@
|
||||
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 { createPalindromeList } from './service';
|
||||
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 CreatePalindrome() {
|
||||
return <Box>Lorem ipsum</Box>;
|
||||
const initialValues = {
|
||||
lastChar: true,
|
||||
multiLine: false
|
||||
};
|
||||
|
||||
const exampleCards: CardExampleType<typeof initialValues>[] = [
|
||||
{
|
||||
title: 'Create Simple Palindrome',
|
||||
description:
|
||||
'Creates a palindrome by repeating the text in reverse order, including the last character.',
|
||||
sampleText: 'level',
|
||||
sampleResult: 'levellevel',
|
||||
sampleOptions: {
|
||||
...initialValues,
|
||||
lastChar: true
|
||||
}
|
||||
},
|
||||
{
|
||||
title: 'Create Palindrome Without Last Character Duplication',
|
||||
description:
|
||||
'Creates a palindrome without repeating the last character in the reverse part.',
|
||||
sampleText: 'radar',
|
||||
sampleResult: 'radarada',
|
||||
sampleOptions: {
|
||||
...initialValues,
|
||||
lastChar: false
|
||||
}
|
||||
},
|
||||
{
|
||||
title: 'Multi-line Palindrome Creation',
|
||||
description: 'Creates palindromes for each line independently.',
|
||||
sampleText: 'mom\ndad\nwow',
|
||||
sampleResult: 'mommom\ndaddad\nwowwow',
|
||||
sampleOptions: {
|
||||
...initialValues,
|
||||
lastChar: true,
|
||||
multiLine: true
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
export default function CreatePalindrome({ 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 { lastChar, multiLine } = optionsValues;
|
||||
setResult(createPalindromeList(input, lastChar, multiLine));
|
||||
};
|
||||
|
||||
const getGroups: GetGroupsType<typeof initialValues> = ({
|
||||
values,
|
||||
updateField
|
||||
}) => [
|
||||
{
|
||||
title: 'Palindrome options',
|
||||
component: [
|
||||
<CheckboxWithDesc
|
||||
key="lastChar"
|
||||
checked={values.lastChar}
|
||||
title="Include last character"
|
||||
description="Repeat the last character in the reversed part"
|
||||
onChange={(val) => updateField('lastChar', val)}
|
||||
/>,
|
||||
<CheckboxWithDesc
|
||||
key="multiLine"
|
||||
checked={values.multiLine}
|
||||
title="Process multi-line text"
|
||||
description="Create palindromes for each line independently"
|
||||
onChange={(val) => updateField('multiLine', val)}
|
||||
/>
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<Box>
|
||||
<ToolInputAndResult
|
||||
input={<ToolTextInput value={input} onChange={setInput} />}
|
||||
result={<ToolTextResult title={'Palindrome text'} value={result} />}
|
||||
/>
|
||||
<ToolOptions
|
||||
compute={computeExternal}
|
||||
getGroups={getGroups}
|
||||
initialValues={initialValues}
|
||||
input={input}
|
||||
/>
|
||||
<ToolExamples
|
||||
title={title}
|
||||
exampleCards={exampleCards}
|
||||
getGroups={getGroups}
|
||||
formRef={formRef}
|
||||
setInput={setInput}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
@@ -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>
|
||||
);
|
||||
}
|
||||
|
@@ -20,11 +20,11 @@ export const stringTools = [
|
||||
stringRemoveDuplicateLines,
|
||||
stringToMorse,
|
||||
stringReplace,
|
||||
stringRepeat
|
||||
// stringReverse,
|
||||
// stringRandomizeCase,
|
||||
// stringUppercase,
|
||||
// stringExtractSubstring,
|
||||
// stringCreatePalindrome,
|
||||
// stringPalindrome
|
||||
stringRepeat,
|
||||
stringReverse,
|
||||
stringRandomizeCase,
|
||||
stringUppercase,
|
||||
stringExtractSubstring,
|
||||
stringCreatePalindrome,
|
||||
stringPalindrome
|
||||
];
|
||||
|
@@ -1,11 +1,132 @@
|
||||
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 { palindromeList, SplitOperatorType } from './service';
|
||||
import RadioWithTextField from '@components/options/RadioWithTextField';
|
||||
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 Palindrome() {
|
||||
return <Box>Lorem ipsum</Box>;
|
||||
const initialValues = {
|
||||
splitOperatorType: 'symbol' as SplitOperatorType,
|
||||
symbolValue: ' ',
|
||||
regexValue: '\\s+'
|
||||
};
|
||||
|
||||
const splitOperators: {
|
||||
title: string;
|
||||
description: string;
|
||||
type: SplitOperatorType;
|
||||
}[] = [
|
||||
{
|
||||
title: 'Use a Symbol for Splitting',
|
||||
description:
|
||||
'Character that will be used to split text into parts for palindrome checking.',
|
||||
type: 'symbol'
|
||||
},
|
||||
{
|
||||
title: 'Use a Regex for Splitting',
|
||||
type: 'regex',
|
||||
description:
|
||||
'Regular expression that will be used to split text into parts for palindrome checking.'
|
||||
}
|
||||
];
|
||||
|
||||
const exampleCards: CardExampleType<typeof initialValues>[] = [
|
||||
{
|
||||
title: 'Check for Word Palindromes',
|
||||
description:
|
||||
'Checks if each word in the text is a palindrome. Returns "true" for palindromes and "false" for non-palindromes.',
|
||||
sampleText: 'radar level hello anna',
|
||||
sampleResult: 'true true false true',
|
||||
sampleOptions: {
|
||||
...initialValues,
|
||||
symbolValue: ' '
|
||||
}
|
||||
},
|
||||
{
|
||||
title: 'Check CSV Words',
|
||||
description: 'Checks palindrome status for comma-separated words.',
|
||||
sampleText: 'mom,dad,wow,test',
|
||||
sampleResult: 'true true true false',
|
||||
sampleOptions: {
|
||||
...initialValues,
|
||||
symbolValue: ','
|
||||
}
|
||||
},
|
||||
{
|
||||
title: 'Check with Regular Expression',
|
||||
description:
|
||||
'Use a regular expression to split text and check for palindromes.',
|
||||
sampleText: 'level:madam;noon|test',
|
||||
sampleResult: 'true true true false',
|
||||
sampleOptions: {
|
||||
...initialValues,
|
||||
splitOperatorType: 'regex',
|
||||
regexValue: '[:|;]|\\|'
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
export default function Palindrome({ 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 { splitOperatorType, symbolValue, regexValue } = optionsValues;
|
||||
const separator = splitOperatorType === 'symbol' ? symbolValue : regexValue;
|
||||
setResult(palindromeList(splitOperatorType, input, separator));
|
||||
};
|
||||
|
||||
const getGroups: GetGroupsType<typeof initialValues> = ({
|
||||
values,
|
||||
updateField
|
||||
}) => [
|
||||
{
|
||||
title: 'Splitting options',
|
||||
component: splitOperators.map(({ title, description, type }) => (
|
||||
<RadioWithTextField
|
||||
key={type}
|
||||
checked={type === values.splitOperatorType}
|
||||
title={title}
|
||||
fieldName={'splitOperatorType'}
|
||||
description={description}
|
||||
value={values[`${type}Value`]}
|
||||
onRadioClick={() => updateField('splitOperatorType', type)}
|
||||
onTextChange={(val) => updateField(`${type}Value`, val)}
|
||||
/>
|
||||
))
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<Box>
|
||||
<ToolInputAndResult
|
||||
input={<ToolTextInput value={input} onChange={setInput} />}
|
||||
result={<ToolTextResult title={'Palindrome results'} value={result} />}
|
||||
/>
|
||||
<ToolOptions
|
||||
compute={computeExternal}
|
||||
getGroups={getGroups}
|
||||
initialValues={initialValues}
|
||||
input={input}
|
||||
/>
|
||||
<ToolExamples
|
||||
title={title}
|
||||
exampleCards={exampleCards}
|
||||
getGroups={getGroups}
|
||||
formRef={formRef}
|
||||
setInput={setInput}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
@@ -1,11 +1,80 @@
|
||||
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 from '@components/options/ToolOptions';
|
||||
import { randomizeCase } from './service';
|
||||
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 RandomizeCase() {
|
||||
return <Box>Lorem ipsum</Box>;
|
||||
|
||||
const exampleCards: CardExampleType<typeof initialValues>[] = [
|
||||
{
|
||||
title: 'Randomize Text Case',
|
||||
description:
|
||||
'This example turns normal text into a random mix of uppercase and lowercase letters.',
|
||||
sampleText: 'The quick brown fox jumps over the lazy dog.',
|
||||
sampleResult: 'tHe qUIcK BrOWn fOx JuMPs ovEr ThE LaZy Dog.',
|
||||
sampleOptions: {}
|
||||
},
|
||||
{
|
||||
title: 'Randomize Code Case',
|
||||
description:
|
||||
'Transform code identifiers with randomized case for a chaotic look.',
|
||||
sampleText:
|
||||
'function calculateTotal(price, quantity) { return price * quantity; }',
|
||||
sampleResult:
|
||||
'FuNcTIon cAlCuLAtEtOtaL(pRicE, qUaNTiTy) { rETuRn PrICe * QuAnTiTY; }',
|
||||
sampleOptions: {}
|
||||
},
|
||||
{
|
||||
title: 'Randomize a Famous Quote',
|
||||
description:
|
||||
'Give a unique randomized case treatment to a well-known quote.',
|
||||
sampleText: 'To be or not to be, that is the question.',
|
||||
sampleResult: 'tO Be oR NoT To bE, ThAt iS ThE QueStIoN.',
|
||||
sampleOptions: {}
|
||||
}
|
||||
];
|
||||
|
||||
export default function RandomizeCase({ 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
|
||||
) => {
|
||||
setResult(randomizeCase(input));
|
||||
};
|
||||
|
||||
const getGroups = () => [];
|
||||
|
||||
return (
|
||||
<Box>
|
||||
<ToolInputAndResult
|
||||
input={<ToolTextInput value={input} onChange={setInput} />}
|
||||
result={<ToolTextResult title={'Randomized text'} value={result} />}
|
||||
/>
|
||||
<ToolOptions
|
||||
compute={computeExternal}
|
||||
getGroups={getGroups}
|
||||
initialValues={initialValues}
|
||||
input={input}
|
||||
/>
|
||||
<ToolExamples
|
||||
title={title}
|
||||
exampleCards={exampleCards}
|
||||
getGroups={getGroups}
|
||||
formRef={formRef}
|
||||
setInput={setInput}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
@@ -1,11 +1,125 @@
|
||||
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 { stringReverser } from './service';
|
||||
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 Reverse() {
|
||||
return <Box>Lorem ipsum</Box>;
|
||||
const initialValues = {
|
||||
multiLine: true,
|
||||
emptyItems: false,
|
||||
trim: false
|
||||
};
|
||||
|
||||
const exampleCards: CardExampleType<typeof initialValues>[] = [
|
||||
{
|
||||
title: 'Simple Text Reversal',
|
||||
description:
|
||||
'Reverses each character in the text. Perfect for creating mirror text.',
|
||||
sampleText: 'Hello World',
|
||||
sampleResult: 'dlroW olleH',
|
||||
sampleOptions: {
|
||||
...initialValues,
|
||||
multiLine: false
|
||||
}
|
||||
},
|
||||
{
|
||||
title: 'Multi-line Reversal',
|
||||
description:
|
||||
'Reverses each line independently while preserving the line breaks.',
|
||||
sampleText: 'First line\nSecond line\nThird line',
|
||||
sampleResult: 'enil tsriF\nenil dnoceS\nenil drihT',
|
||||
sampleOptions: {
|
||||
...initialValues,
|
||||
multiLine: true
|
||||
}
|
||||
},
|
||||
{
|
||||
title: 'Clean Reversed Text',
|
||||
description:
|
||||
'Trims whitespace and skips empty lines before reversing the text.',
|
||||
sampleText: ' Spaces removed \n\nEmpty line skipped',
|
||||
sampleResult: 'devomer secapS\ndeppiks enil ytpmE',
|
||||
sampleOptions: {
|
||||
...initialValues,
|
||||
multiLine: true,
|
||||
emptyItems: true,
|
||||
trim: true
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
export default function Reverse({ 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 { multiLine, emptyItems, trim } = optionsValues;
|
||||
setResult(stringReverser(input, multiLine, emptyItems, trim));
|
||||
};
|
||||
|
||||
const getGroups: GetGroupsType<typeof initialValues> = ({
|
||||
values,
|
||||
updateField
|
||||
}) => [
|
||||
{
|
||||
title: 'Reversal options',
|
||||
component: [
|
||||
<CheckboxWithDesc
|
||||
key="multiLine"
|
||||
checked={values.multiLine}
|
||||
title="Process multi-line text"
|
||||
description="Each line will be reversed independently"
|
||||
onChange={(val) => updateField('multiLine', val)}
|
||||
/>,
|
||||
<CheckboxWithDesc
|
||||
key="emptyItems"
|
||||
checked={values.emptyItems}
|
||||
title="Skip empty lines"
|
||||
description="Empty lines will be removed from the output"
|
||||
onChange={(val) => updateField('emptyItems', val)}
|
||||
/>,
|
||||
<CheckboxWithDesc
|
||||
key="trim"
|
||||
checked={values.trim}
|
||||
title="Trim whitespace"
|
||||
description="Remove leading and trailing whitespace from each line"
|
||||
onChange={(val) => updateField('trim', val)}
|
||||
/>
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<Box>
|
||||
<ToolInputAndResult
|
||||
input={<ToolTextInput value={input} onChange={setInput} />}
|
||||
result={<ToolTextResult title={'Reversed text'} value={result} />}
|
||||
/>
|
||||
<ToolOptions
|
||||
compute={computeExternal}
|
||||
getGroups={getGroups}
|
||||
initialValues={initialValues}
|
||||
input={input}
|
||||
/>
|
||||
<ToolExamples
|
||||
title={title}
|
||||
exampleCards={exampleCards}
|
||||
getGroups={getGroups}
|
||||
formRef={formRef}
|
||||
setInput={setInput}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
@@ -1,11 +1,77 @@
|
||||
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 from '@components/options/ToolOptions';
|
||||
import { UppercaseInput } from './service';
|
||||
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 Uppercase() {
|
||||
return <Box>Lorem ipsum</Box>;
|
||||
|
||||
const exampleCards: CardExampleType<typeof initialValues>[] = [
|
||||
{
|
||||
title: 'Convert Text to Uppercase',
|
||||
description: 'This example transforms any text to ALL UPPERCASE format.',
|
||||
sampleText: 'The quick brown fox jumps over the lazy dog.',
|
||||
sampleResult: 'THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG.',
|
||||
sampleOptions: {}
|
||||
},
|
||||
{
|
||||
title: 'Uppercase Code',
|
||||
description:
|
||||
'Convert code to uppercase format. Note that this is for display only and would not maintain code functionality.',
|
||||
sampleText: 'function example() { return "hello world"; }',
|
||||
sampleResult: 'FUNCTION EXAMPLE() { RETURN "HELLO WORLD"; }',
|
||||
sampleOptions: {}
|
||||
},
|
||||
{
|
||||
title: 'Mixed Case to Uppercase',
|
||||
description:
|
||||
'Transform text with mixed casing to consistent all uppercase format.',
|
||||
sampleText: 'ThIs Is MiXeD CaSe TeXt!',
|
||||
sampleResult: 'THIS IS MIXED CASE TEXT!',
|
||||
sampleOptions: {}
|
||||
}
|
||||
];
|
||||
|
||||
export default function Uppercase({ 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
|
||||
) => {
|
||||
setResult(UppercaseInput(input));
|
||||
};
|
||||
|
||||
const getGroups = () => [];
|
||||
|
||||
return (
|
||||
<Box>
|
||||
<ToolInputAndResult
|
||||
input={<ToolTextInput value={input} onChange={setInput} />}
|
||||
result={<ToolTextResult title={'Uppercase text'} value={result} />}
|
||||
/>
|
||||
<ToolOptions
|
||||
compute={computeExternal}
|
||||
getGroups={getGroups}
|
||||
initialValues={initialValues}
|
||||
input={input}
|
||||
/>
|
||||
<ToolExamples
|
||||
title={title}
|
||||
exampleCards={exampleCards}
|
||||
getGroups={getGroups}
|
||||
formRef={formRef}
|
||||
setInput={setInput}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user