CoastalCommitsPastes/client/app/components/header/controls.tsx

47 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-04-09 20:48:19 -04:00
import React, { useEffect, useState } from "react"
import MoonIcon from "@geist-ui/icons/moon"
import SunIcon from "@geist-ui/icons/sun"
2022-03-07 19:54:33 -05:00
// import { useAllThemes, useTheme } from '@geist-ui/core'
2022-04-09 20:48:19 -04:00
import styles from "./header.module.css"
2022-11-09 21:38:05 -05:00
import { Select } from "@geist-ui/core/dist"
2022-04-09 20:48:19 -04:00
import { useTheme } from "next-themes"
2022-03-07 19:54:33 -05:00
const Controls = () => {
2022-04-09 20:48:19 -04:00
const [mounted, setMounted] = useState(false)
const { resolvedTheme, setTheme } = useTheme()
useEffect(() => setMounted(true), [])
if (!mounted) return null
const switchThemes = () => {
if (resolvedTheme === "dark") {
setTheme("light")
} else {
setTheme("dark")
}
}
2022-03-07 19:54:33 -05:00
2022-04-09 20:48:19 -04:00
return (
<div className={styles.wrapper}>
<Select
scale={0.5}
h="28px"
pure
onChange={switchThemes}
value={resolvedTheme}
>
<Select.Option value="light">
<span className={styles.selectContent}>
<SunIcon size={14} /> Light
</span>
</Select.Option>
<Select.Option value="dark">
<span className={styles.selectContent}>
<MoonIcon size={14} /> Dark
</span>
</Select.Option>
</Select>
</div>
)
2022-03-07 19:54:33 -05:00
}
2022-04-09 20:48:19 -04:00
export default React.memo(Controls)