调试模式

This commit is contained in:
tangly1024
2022-03-15 17:25:56 +08:00
parent a15fc196b2
commit 8a92e14db6
15 changed files with 259 additions and 93 deletions

View File

@@ -1,50 +0,0 @@
import { useGlobal } from '@/lib/global'
import * as ThemeMap from '@/themes'
import { useState } from 'react'
/**
*
* @returns 调试面板
*/
export function DebugButton () {
const [show, setShow] = useState(false)
const GlobalConfig = useGlobal()
const { theme, setTheme } = GlobalConfig
const allThemes = Object.keys(ThemeMap)
function toggleShow () {
setShow(!show)
}
/**
* 切换主题
*/
function changeTheme () {
const currentIndex = allThemes.indexOf(theme)
const newIndex = currentIndex < allThemes.length - 1 ? currentIndex + 1 : 0
setTheme(allThemes[newIndex])
}
return <>
<div className={`w-full text-sm font-sans h-72 p-5 bg-white fixed right-0 bottom-0 z-40 shadow-card duration-200 ${show ? '' : '-bottom-72'}`}>
<div className='flex space-x-1'>
<div className='font-bold'>当前主题:</div>
<div>{theme}</div>
</div>
<div className='flex space-x-1'>
<div className='font-bold'>所有主题:</div>
<div>{allThemes.join(',')}</div>
</div>
<div className='flex space-x-1'>
<div className='bg-blue-500 text-white p-2 cursor-pointer' onClick={changeTheme}>更换主题</div>
</div>
<div>
<div className='font-bold w-18'>所有配置:</div>
<div><p>{JSON.stringify(GlobalConfig)}</p></div>
</div>
</div>
<div className="fixed right-20 bottom-12 z-50">
<div className="bg-gray-50 text-sm dark:bg-black dark:text-white shadow-2xl p-2.5 rounded-md bg-opacity-75 cursor-pointer" onClick={toggleShow}>调试按钮</div>
</div>
</>
}

138
components/DebugPanel.js Normal file
View File

@@ -0,0 +1,138 @@
import BLOG from '@/blog.config'
import { useGlobal } from '@/lib/global'
import * as ThemeMap from '@/themes'
import { useState, useEffect } from 'react'
import { useRouter } from 'next/router'
import Select from './Select'
/**
*
* @returns 调试面板
*/
export function DebugPanel () {
const [show, setShow] = useState(false)
const GlobalConfig = useGlobal()
const router = useRouter()
const { theme, setTheme } = GlobalConfig
const allThemes = Object.keys(ThemeMap)
const themeOptions = []
allThemes.forEach(t => {
themeOptions.push({ value: t, text: t })
})
function toggleShow () {
setShow(!show)
}
function switchTheme () {
const currentIndex = allThemes.indexOf(theme)
const newIndex = currentIndex < allThemes.length - 1 ? currentIndex + 1 : 0
changeTheme(allThemes[newIndex])
}
useEffect(() => {
const theme = router.query.theme
if (theme && allThemes.indexOf(theme) > -1) {
changeTheme(theme)
}
})
/**
* 切换主题
*/
function changeTheme (theme) {
router.query.theme = ''
setTheme(theme)
}
function filterResult (text) {
switch (text) {
case 'true':
return <span className='text-green-500'>true</span>
case 'false':
return <span className='text-red-500'>false</span>
case '':
return '-'
}
return text
}
return (
<>
{/* 调试按钮 */}
<div
className={`${
show ? 'right-96' : ''
} fixed right-0 bottom-36 duration-200 z-50`}
>
<div
style={{ writingMode: 'vertical-lr' }}
className="bg-black text-white shadow-2xl p-2.5 rounded-l-xl cursor-pointer"
onClick={toggleShow}
>
{show
? (
<i className="fas fa-times">&nbsp;关闭调试</i>
)
: (
<i className="fas fa-tools">&nbsp;打开调试</i>
)}
</div>
</div>
<div
className={` ${
show ? 'shadow-card' : '-right-96'
} w-96 overflow-y-scroll font-sans h-full p-5 bg-white fixed right-0 bottom-0 z-50 duration-200`}
>
<div className="flex space-x-1 my-12">
<Select
label="主题切换"
value={theme}
options={themeOptions}
onChange={changeTheme}
/>
<div className="p-2 cursor-pointer" onClick={switchTheme}>
<i className="fas fa-sync" />
</div>
</div>
<div>
<div className="font-bold w-18 border-b my-2">
站点配置[blog.config.js]
</div>
<div className="text-xs">
{Object.keys(BLOG).map(k => (
<div key={k} className="justify-between flex py-1">
<span className="bg-blue-400 p-0.5 rounded text-white mr-2">
{k}
</span>
<span className="whitespace-nowrap">
{filterResult(BLOG[k] + '')}
</span>
</div>
))}
</div>
</div>
<div>
<div className="font-bold w-18 border-b my-2">
主题配置{'(config_' + theme + '.js)'}:
</div>
<div className="text-xs">
{Object.keys(ThemeMap[theme].THEME_CONFIG).map(k => (
<>
<div key={k} className="justify-between flex py-1">
<span className="bg-indigo-500 p-0.5 rounded text-white mr-2">
{k}
</span>
<span className="whitespace-nowrap">
{filterResult(ThemeMap[theme].THEME_CONFIG[k] + '')}
</span>
</div>
</>
))}
</div>
</div>
</div>
</>
)
}

40
components/Select.js Normal file
View File

@@ -0,0 +1,40 @@
import React from 'react'
/**
* 下拉单选框
*/
class Select extends React.Component {
constructor (props) {
super(props)
this.handleChange = this.handleChange.bind(this)
}
handleChange (event) {
const { onChange } = this.props
onChange(event.target.value)
}
render () {
return (
<div className='py-1 space-x-3'>
<label className='text-gray-500'>{this.props.label}</label>
<select value={this.props.value} onChange={this.handleChange} className='border p-1 rounded cursor-pointer'>
{this.props.options?.map(o => (
<option key={o.value} value={o.value}>
{o.text}
</option>
))}
</select>
</div>
)
}
}
Select.defaultProps = {
label: '',
value: '1',
options: [
{ value: '1', text: '选项1' },
{ value: '2', text: '选项2' }
]
}
export default Select

View File

@@ -44,7 +44,7 @@ const SideBarDrawer = ({ children, isOpen, onOpen, onClose, className }) => {
}
return <div id='sidebar-wrapper' className={' ' + className}>
<div id='sidebar-drawer' className={`${isOpen ? 'ml-0' : '-ml-80'} bg-white dark:bg-gray-900 flex flex-col duration-300 fixed h-full left-0 overflow-y-scroll scroll-hidden top-0 z-50`}>
<div id='sidebar-drawer' className={`${isOpen ? 'ml-0' : '-ml-80'} bg-white dark:bg-gray-900 flex flex-col duration-300 fixed h-full left-0 overflow-y-scroll scroll-hidden top-0 z-40`}>
{children}
</div>
{/* 背景蒙版 */}