mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-04 03:25:21 +00:00
165 lines
5.9 KiB
TypeScript
165 lines
5.9 KiB
TypeScript
![]() |
import React from "react";
|
||
|
import { Stack, Text, Select, NumberInput, Group, Divider } from "@mantine/core";
|
||
|
import { useTranslation } from "react-i18next";
|
||
|
import { ConvertParameters } from "../../../hooks/tools/convert/useConvertParameters";
|
||
|
import {
|
||
|
FROM_FORMAT_OPTIONS,
|
||
|
TO_FORMAT_OPTIONS,
|
||
|
COLOR_TYPES,
|
||
|
OUTPUT_OPTIONS,
|
||
|
} from "../../../constants/convertConstants";
|
||
|
|
||
|
interface ConvertSettingsProps {
|
||
|
parameters: ConvertParameters;
|
||
|
onParameterChange: (key: keyof ConvertParameters, value: any) => void;
|
||
|
getAvailableToExtensions: (fromExtension: string) => Array<{value: string, label: string, group: string}>;
|
||
|
disabled?: boolean;
|
||
|
}
|
||
|
|
||
|
const ConvertSettings = ({
|
||
|
parameters,
|
||
|
onParameterChange,
|
||
|
getAvailableToExtensions,
|
||
|
disabled = false
|
||
|
}: ConvertSettingsProps) => {
|
||
|
const { t } = useTranslation();
|
||
|
|
||
|
const handleFromExtensionChange = (value: string | null) => {
|
||
|
if (value) {
|
||
|
onParameterChange('fromExtension', value);
|
||
|
// Reset to extension when from extension changes
|
||
|
onParameterChange('toExtension', '');
|
||
|
// Reset format-specific options
|
||
|
onParameterChange('imageOptions', {
|
||
|
colorType: COLOR_TYPES.COLOR,
|
||
|
dpi: 300,
|
||
|
singleOrMultiple: OUTPUT_OPTIONS.MULTIPLE,
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const handleToExtensionChange = (value: string | null) => {
|
||
|
if (value) {
|
||
|
onParameterChange('toExtension', value);
|
||
|
// Reset format-specific options when target extension changes
|
||
|
onParameterChange('imageOptions', {
|
||
|
colorType: COLOR_TYPES.COLOR,
|
||
|
dpi: 300,
|
||
|
singleOrMultiple: OUTPUT_OPTIONS.MULTIPLE,
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Stack gap="md">
|
||
|
{/* Format Selection */}
|
||
|
<Stack gap="sm">
|
||
|
<Text size="sm" fw={500}>
|
||
|
{t("convert.convertFrom", "Convert from")}:
|
||
|
</Text>
|
||
|
<Select
|
||
|
value={parameters.fromExtension}
|
||
|
onChange={handleFromExtensionChange}
|
||
|
data={FROM_FORMAT_OPTIONS.map(option => ({ value: option.value, label: option.label }))}
|
||
|
disabled={disabled}
|
||
|
searchable
|
||
|
clearable
|
||
|
placeholder="Select source file format"
|
||
|
/>
|
||
|
</Stack>
|
||
|
|
||
|
<Stack gap="sm">
|
||
|
<Text size="sm" fw={500}>
|
||
|
{t("convert.convertTo", "Convert to")}:
|
||
|
</Text>
|
||
|
<Select
|
||
|
value={parameters.toExtension}
|
||
|
onChange={handleToExtensionChange}
|
||
|
data={(getAvailableToExtensions(parameters.fromExtension) || []).map(option => ({ value: option.value, label: option.label }))}
|
||
|
disabled={!parameters.fromExtension || disabled}
|
||
|
searchable
|
||
|
clearable
|
||
|
placeholder="Select target file format"
|
||
|
/>
|
||
|
</Stack>
|
||
|
|
||
|
{/* Format-specific options */}
|
||
|
{['png', 'jpg'].includes(parameters.toExtension) && (
|
||
|
<>
|
||
|
<Divider />
|
||
|
<Stack gap="sm">
|
||
|
<Text size="sm" fw={500}>{t("convert.imageOptions", "Image Options")}:</Text>
|
||
|
<Group grow>
|
||
|
<Select
|
||
|
label={t("convert.colorType", "Color Type")}
|
||
|
value={parameters.imageOptions.colorType}
|
||
|
onChange={(val) => val && onParameterChange('imageOptions', {
|
||
|
...parameters.imageOptions,
|
||
|
colorType: val as typeof COLOR_TYPES[keyof typeof COLOR_TYPES]
|
||
|
})}
|
||
|
data={[
|
||
|
{ value: COLOR_TYPES.COLOR, label: t("convert.color", "Color") },
|
||
|
{ value: COLOR_TYPES.GREYSCALE, label: t("convert.greyscale", "Greyscale") },
|
||
|
{ value: COLOR_TYPES.BLACK_WHITE, label: t("convert.blackwhite", "Black & White") },
|
||
|
]}
|
||
|
disabled={disabled}
|
||
|
/>
|
||
|
<NumberInput
|
||
|
label={t("convert.dpi", "DPI")}
|
||
|
value={parameters.imageOptions.dpi}
|
||
|
onChange={(val) => typeof val === 'number' && onParameterChange('imageOptions', {
|
||
|
...parameters.imageOptions,
|
||
|
dpi: val
|
||
|
})}
|
||
|
min={72}
|
||
|
max={600}
|
||
|
step={1}
|
||
|
disabled={disabled}
|
||
|
/>
|
||
|
</Group>
|
||
|
<Select
|
||
|
label={t("convert.output", "Output")}
|
||
|
value={parameters.imageOptions.singleOrMultiple}
|
||
|
onChange={(val) => val && onParameterChange('imageOptions', {
|
||
|
...parameters.imageOptions,
|
||
|
singleOrMultiple: val as typeof OUTPUT_OPTIONS[keyof typeof OUTPUT_OPTIONS]
|
||
|
})}
|
||
|
data={[
|
||
|
{ value: OUTPUT_OPTIONS.SINGLE, label: t("convert.single", "Single") },
|
||
|
{ value: OUTPUT_OPTIONS.MULTIPLE, label: t("convert.multiple", "Multiple") },
|
||
|
]}
|
||
|
disabled={disabled}
|
||
|
/>
|
||
|
</Stack>
|
||
|
</>
|
||
|
)}
|
||
|
|
||
|
|
||
|
{/* Color options for image to PDF conversion */}
|
||
|
{['jpg', 'jpeg', 'png', 'gif', 'bmp', 'tiff', 'webp'].includes(parameters.fromExtension) && parameters.toExtension === 'pdf' && (
|
||
|
<>
|
||
|
<Divider />
|
||
|
<Stack gap="sm">
|
||
|
<Text size="sm" fw={500}>{t("convert.pdfOptions", "PDF Options")}:</Text>
|
||
|
<Select
|
||
|
label={t("convert.colorType", "Color Type")}
|
||
|
value={parameters.imageOptions.colorType}
|
||
|
onChange={(val) => val && onParameterChange('imageOptions', {
|
||
|
...parameters.imageOptions,
|
||
|
colorType: val as typeof COLOR_TYPES[keyof typeof COLOR_TYPES]
|
||
|
})}
|
||
|
data={[
|
||
|
{ value: COLOR_TYPES.COLOR, label: t("convert.color", "Color") },
|
||
|
{ value: COLOR_TYPES.GREYSCALE, label: t("convert.greyscale", "Greyscale") },
|
||
|
{ value: COLOR_TYPES.BLACK_WHITE, label: t("convert.blackwhite", "Black & White") },
|
||
|
]}
|
||
|
disabled={disabled}
|
||
|
/>
|
||
|
</Stack>
|
||
|
</>
|
||
|
)}
|
||
|
</Stack>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default ConvertSettings;
|