## Description of Changes - Removed unused `React` default imports across multiple frontend components. - Updated imports to only include required React hooks and types (e.g., `useState`, `useEffect`, `Suspense`, `createContext`). - Ensured consistency with React 17+ JSX transform, where default `React` import is no longer required. - This cleanup reduces bundle size slightly and aligns code with modern React best practices. --- ## Checklist ### General - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md) (if applicable) - [ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md) (if applicable) - [ ] I have performed a self-review of my own code - [ ] My changes generate no new warnings ### Documentation - [ ] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md#6-testing) for more details. Co-authored-by: Reece Browne <74901996+reecebrowne@users.noreply.github.com>
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
import { useState, useEffect } from "react";
|
|
import { Stack, Text, NumberInput } from "@mantine/core";
|
|
|
|
interface NumberInputWithUnitProps {
|
|
label: string;
|
|
value: number;
|
|
onChange: (value: number | string) => void;
|
|
unit: string;
|
|
min?: number;
|
|
max?: number;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
const NumberInputWithUnit = ({
|
|
label,
|
|
value,
|
|
onChange,
|
|
unit,
|
|
min,
|
|
max,
|
|
disabled = false
|
|
}: NumberInputWithUnitProps) => {
|
|
const [localValue, setLocalValue] = useState<number | string>(value);
|
|
|
|
// Sync local value when external value changes
|
|
useEffect(() => {
|
|
setLocalValue(value);
|
|
}, [value]);
|
|
|
|
const handleBlur = () => {
|
|
onChange(localValue);
|
|
};
|
|
|
|
return (
|
|
<Stack gap="xs" style={{ flex: 1 }}>
|
|
<Text size="xs" fw={500} style={{ whiteSpace: 'nowrap', overflow: 'hidden', textOverflow: 'ellipsis' }}>
|
|
{label}
|
|
</Text>
|
|
<NumberInput
|
|
value={localValue}
|
|
onChange={setLocalValue}
|
|
onBlur={handleBlur}
|
|
min={min}
|
|
max={max}
|
|
disabled={disabled}
|
|
rightSection={
|
|
<Text size="sm" c="dimmed" pr="sm">
|
|
{unit}
|
|
</Text>
|
|
}
|
|
rightSectionWidth={unit.length * 8 + 20} // Dynamic width based on unit length
|
|
/>
|
|
</Stack>
|
|
);
|
|
};
|
|
|
|
export default NumberInputWithUnit;
|