mirror of
https://github.com/zhigang1992/react.git
synced 2026-02-02 09:08:52 +08:00
99 lines
2.9 KiB
TypeScript
99 lines
2.9 KiB
TypeScript
import React, { useMemo } from 'react'
|
|
import { Button, useTheme, Select, Spacer } from 'components'
|
|
import { useConfigs } from 'lib/config-context'
|
|
import Router, { useRouter } from 'next/router'
|
|
import MoonIcon from './icons/moon'
|
|
import SunIcon from './icons/sun'
|
|
|
|
const Controls: React.FC<{}> = React.memo(({
|
|
}) => {
|
|
const theme = useTheme()
|
|
const { onChange, updateChineseState } = useConfigs()
|
|
const { pathname } = useRouter()
|
|
const isChinese = useMemo(() => pathname.toLowerCase().includes('zh-cn'), [pathname])
|
|
const isDark = useMemo(() => theme.type === 'dark', [theme.type])
|
|
const switchThemes = (val: string) => {
|
|
const isDark = val === 'dark'
|
|
onChange && onChange(isDark)
|
|
}
|
|
|
|
const switchLanguages = () => {
|
|
const nextPath = `/${isChinese ? 'en-us' : 'zh-cn'}`
|
|
updateChineseState(!isChinese)
|
|
Router.push(nextPath)
|
|
}
|
|
|
|
const redirectGithub = () => {
|
|
if (typeof window !== 'undefined') {
|
|
window.open('https://github.com/zeit-ui/react')
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="controls">
|
|
<div className="tools">
|
|
<Button auto type="abort" size="small" onClick={switchLanguages}>{isChinese ? 'English' : '中文文档'}</Button>
|
|
<Spacer x={.25} />
|
|
<Button auto type="abort" size="small"
|
|
onClick={redirectGithub}
|
|
title={isChinese? '代码仓库' : 'Github Repository'}>{isChinese ? '代码仓库' : 'Github'}</Button>
|
|
<Spacer x={.75} />
|
|
<Select size="small" pure onChange={switchThemes} initialValue={isDark ? 'dark' : 'light'}
|
|
title={isChinese ? '切换主题' : 'Switch Themes'}>
|
|
<Select.Option value="light">
|
|
<div className="select-content">
|
|
<SunIcon width={16} height={16} /> {isChinese ? '明亮' : 'Light'}
|
|
</div>
|
|
</Select.Option>
|
|
<Select.Option value="dark">
|
|
<div className="select-content">
|
|
<MoonIcon width={16} height={16} /> {isChinese ? '暗黑' : 'Dark'}
|
|
</div>
|
|
</Select.Option>
|
|
</Select>
|
|
</div>
|
|
<style jsx>{`
|
|
.controls {
|
|
height: 100%;
|
|
display: flex;
|
|
margin: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.controls :global(.select) {
|
|
width: min-content;
|
|
min-width: unset;
|
|
}
|
|
|
|
.select-content {
|
|
width: auto;
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.select-content :global(svg) {
|
|
margin-right: .5rem;
|
|
}
|
|
|
|
.tools {
|
|
display: flex;
|
|
height: 2.5rem;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
}
|
|
|
|
@media only screen and (max-width: 767px) {
|
|
.controls {
|
|
display: none;
|
|
pointer-events: none;
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
})
|
|
|
|
export default Controls
|