-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4079 from iotaledger/tooling-epic/add-darkmode-su…
…pport-to-wallet feat(wallet): add darkmode/lightmode theme
- Loading branch information
Showing
67 changed files
with
301 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
// Copyright (c) 2024 IOTA Stiftung | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
export * from './KioskClientProvider'; | ||
|
||
export * from './coin'; | ||
export * from './icon'; | ||
export * from './Inputs'; | ||
export * from './QR'; | ||
|
||
export * from './providers'; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Copyright (c) 2024 IOTA Stiftung | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import { PropsWithChildren, useState, useEffect, useCallback } from 'react'; | ||
import { Theme } from '../../enums'; | ||
import { ThemeContext } from '../../contexts'; | ||
|
||
interface ThemeProviderProps { | ||
appId: string; | ||
} | ||
|
||
export function ThemeProvider({ children, appId }: PropsWithChildren<ThemeProviderProps>) { | ||
const storageKey = `theme_${appId}`; | ||
|
||
const getSystemTheme = () => | ||
window.matchMedia('(prefers-color-scheme: dark)').matches ? Theme.Dark : Theme.Light; | ||
|
||
const getInitialTheme = () => { | ||
if (typeof window === 'undefined') { | ||
return Theme.System; | ||
} else { | ||
const storedTheme = localStorage?.getItem(storageKey); | ||
return storedTheme ? (storedTheme as Theme) : Theme.System; | ||
} | ||
}; | ||
|
||
const [theme, setTheme] = useState<Theme>(getInitialTheme); | ||
|
||
const applyTheme = useCallback((currentTheme: Theme) => { | ||
const selectedTheme = currentTheme === Theme.System ? getSystemTheme() : currentTheme; | ||
const documentElement = document.documentElement.classList; | ||
documentElement.toggle(Theme.Dark, selectedTheme === Theme.Dark); | ||
documentElement.toggle(Theme.Light, selectedTheme === Theme.Light); | ||
}, []); | ||
|
||
useEffect(() => { | ||
if (typeof window === 'undefined') return; | ||
|
||
localStorage.setItem(storageKey, theme); | ||
applyTheme(theme); | ||
|
||
if (theme === Theme.System) { | ||
const systemTheme = window.matchMedia('(prefers-color-scheme: dark)'); | ||
const handleSystemThemeChange = () => applyTheme(Theme.System); | ||
systemTheme.addEventListener('change', handleSystemThemeChange); | ||
return () => systemTheme.removeEventListener('change', handleSystemThemeChange); | ||
} | ||
}, [theme, applyTheme, storageKey]); | ||
|
||
return <ThemeContext.Provider value={{ theme, setTheme }}>{children}</ThemeContext.Provider>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// Copyright (c) 2024 IOTA Stiftung | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
export * from './KioskClientProvider'; | ||
export * from './ThemeProvider'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright (c) 2024 IOTA Stiftung | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import { createContext } from 'react'; | ||
import { Theme } from '../enums'; | ||
|
||
export interface ThemeContextType { | ||
theme: Theme; | ||
setTheme: (theme: Theme) => void; | ||
} | ||
|
||
export const ThemeContext = createContext<ThemeContextType>({ | ||
theme: Theme.Light, | ||
setTheme: () => {}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Copyright (c) 2024 IOTA Stiftung | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
export * from './ThemeContext'; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// Copyright (c) 2024 IOTA Stiftung | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
export * from './ExplorerLinkType'; | ||
export * from './theme.enums'; | ||
export * from './explorer-link-type.enums'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Copyright (c) 2024 IOTA Stiftung | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
export enum Theme { | ||
Light = 'light', | ||
Dark = 'dark', | ||
System = 'system', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Copyright (c) 2024 IOTA Stiftung | ||
// SPDX-License-Identifier: Apache-2.0 | ||
import { useContext } from 'react'; | ||
import { ThemeContext, ThemeContextType } from '../contexts'; | ||
|
||
export const useTheme = (): ThemeContextType => { | ||
const context = useContext(ThemeContext); | ||
if (!context) { | ||
throw new Error('useTheme must be used within a ThemeProvider'); | ||
} | ||
return context; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,3 @@ | |
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
export * from './PopupContext'; | ||
export * from './ThemeContext'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.