mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-19 01:49:24 +00:00

# Description of Changes - Added the all tools sidebar - Added a TextFit component that shrinks text to fit containers - Added a TopToolIcon on the nav, that animates down to give users feedback on what tool is selected - Added the baseToolRegistry, to replace the old pattern of listing tools, allowing us to clean up the ToolRegistry code - Fixed Mantine light/dark theme race condition - General styling tweaks --- ## 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.
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import React, { createContext, useContext, ReactNode } from 'react';
|
|
import { MantineProvider } from '@mantine/core';
|
|
import { useRainbowTheme } from '../../hooks/useRainbowTheme';
|
|
import { mantineTheme } from '../../theme/mantineTheme';
|
|
import rainbowStyles from '../../styles/rainbow.module.css';
|
|
|
|
interface RainbowThemeContextType {
|
|
themeMode: 'light' | 'dark' | 'rainbow';
|
|
isRainbowMode: boolean;
|
|
isToggleDisabled: boolean;
|
|
toggleTheme: () => void;
|
|
activateRainbow: () => void;
|
|
deactivateRainbow: () => void;
|
|
}
|
|
|
|
const RainbowThemeContext = createContext<RainbowThemeContextType | null>(null);
|
|
|
|
export function useRainbowThemeContext() {
|
|
const context = useContext(RainbowThemeContext);
|
|
if (!context) {
|
|
throw new Error('useRainbowThemeContext must be used within RainbowThemeProvider');
|
|
}
|
|
return context;
|
|
}
|
|
|
|
interface RainbowThemeProviderProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function RainbowThemeProvider({ children }: RainbowThemeProviderProps) {
|
|
const rainbowTheme = useRainbowTheme();
|
|
|
|
// Determine the Mantine color scheme
|
|
const mantineColorScheme = rainbowTheme.themeMode === 'rainbow' ? 'dark' : rainbowTheme.themeMode;
|
|
|
|
return (
|
|
<RainbowThemeContext.Provider value={rainbowTheme}>
|
|
<MantineProvider
|
|
theme={mantineTheme}
|
|
defaultColorScheme={mantineColorScheme}
|
|
forceColorScheme={mantineColorScheme}
|
|
>
|
|
<div
|
|
className={rainbowTheme.isRainbowMode ? rainbowStyles.rainbowMode : ''}
|
|
style={{ minHeight: '100vh' }}
|
|
>
|
|
{children}
|
|
</div>
|
|
</MantineProvider>
|
|
</RainbowThemeContext.Provider>
|
|
);
|
|
}
|