细节修改

This commit is contained in:
chuan_wuhao 2022-10-19 13:43:12 +08:00
parent 8adf83b469
commit e2c892449c
8 changed files with 39 additions and 26 deletions

View File

@ -1,20 +1,20 @@
module.exports = { module.exports = {
printWidth: 80, //一行最多 80 字符 printWidth: 80, // 一行最多 `80` 字符
tabWidth: 2, //使用 2 个空格缩进 tabWidth: 2, // 使用 `2` 个空格缩进
useTabs: false, //不使用缩进符,而使用空格 useTabs: false, // 不使用缩进符, 而使用空格
semi: false, //行尾不需要有分号 semi: false, // 行尾不需要有分号
singleQuote: true, //使用单引号 singleQuote: true, // 使用单引号
quoteProps: 'as-needed', //对象的key仅在必要时用引号 quoteProps: 'as-needed', // 对象的 `key` 仅在必要时用引号
jsxSingleQuote: false, //jsx不使用单引号而使用双引号 jsxSingleQuote: false, // `jsx` 不使用单引号, 而使用双引号
trailingComma: 'all', //尾随逗号 trailingComma: 'all', // 尾随逗号
bracketSpacing: true, //大括号内的首尾需要空格 bracketSpacing: true, // 大括号内的首尾需要空格
jsxBracketSameLine: false, //jsx标签的反尖括号需要换行 jsxBracketSameLine: false, // `jsx` 标签的反尖括号需要换行
arrowParens: 'always', //箭头函数,只有一个参数的时候,也需要括号 arrowParens: 'always', // 箭头函数, 只有一个参数的时候, 也需要括号
rangeStart: 0, //每个文件格式化的范围是文件的全部内容 rangeStart: 0, // 每个文件格式化的范围是文件的全部内容
rangeEnd: Infinity, rangeEnd: Infinity,
requirePragma: false, //不需要写文件开头的@prettier requirePragma: false, // 不需要写文件开头的 `@prettier`
insertPragma: false, //不需要自动在文件开头插入@prettier insertPragma: false, // 不需要自动在文件开头插入 `@prettier`
proseWrap: 'preserve', //使用默认的折行标准 proseWrap: 'preserve', // 使用默认的折行标准
htmlWhitespaceSensitivity: 'css', //根据显示样式决定html要不要折行 htmlWhitespaceSensitivity: 'css', // 根据显示样式决定 `html` 要不要折行
endOfLine: 'lf', //换行符使用lf endOfLine: 'lf', // 换行符使用 `lf`
} }

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"i18n-ally.localesPaths": [
"locales",
"src/language"
]
}

View File

@ -34,6 +34,8 @@
## 项目结构 ## 项目结构
``` ```
- locales: 国际化多语言入口(本项目采用 `json` 格式)
- assets: 项目静态资源入口 - assets: 项目静态资源入口
- images: 项目图片资源 - images: 项目图片资源

View File

@ -84,7 +84,7 @@ export default RayScrollReveal
/** /**
* *
* , , * , ,
* dom RayScrollReveal * `dom` `RayScrollReveal`
* 使 dom , scrollRevealCallback dom * 使 `dom` , `scrollRevealCallback` `dom`
* 注意: 插件始终是以显示屏为窗口作为判断元素是否显示, * 注意: 插件始终是以显示屏为窗口作为判断元素是否显示,
*/ */

View File

@ -13,5 +13,6 @@ export default routes
/** /**
* *
* , * ,
* test.ts * `test.ts`
* ,
*/ */

View File

@ -1,5 +1,5 @@
export {} export {}
declare global { declare global {
declare type TCacheType = 'sessionStorage' | 'localStorage' declare type CacheType = 'sessionStorage' | 'localStorage'
} }

View File

@ -30,4 +30,6 @@ export global {
declare type CipherOption = CryptoJS.lib.CipherOption declare type CipherOption = CryptoJS.lib.CipherOption
declare type CipherParams = CryptoJS.lib.CipherParams declare type CipherParams = CryptoJS.lib.CipherParams
declare type VoidFunc = (...args: unknown[]) => void
} }

View File

@ -6,11 +6,13 @@
export const useSetCache = <T>( export const useSetCache = <T>(
key: string, key: string,
value: T, value: T,
type: TCacheType = 'sessionStorage', type: CacheType = 'sessionStorage',
) => { ) => {
const waitCacheValue = JSON.stringify(value)
type === 'localStorage' type === 'localStorage'
? window.localStorage.setItem(key, JSON.stringify(value)) ? window.localStorage.setItem(key, waitCacheValue)
: window.sessionStorage.setItem(key, JSON.stringify(value)) : window.sessionStorage.setItem(key, waitCacheValue)
} }
/** /**
@ -21,7 +23,7 @@ export const useSetCache = <T>(
*/ */
export const useGetCache = ( export const useGetCache = (
key: string, key: string,
type: TCacheType = 'sessionStorage', type: CacheType = 'sessionStorage',
) => { ) => {
let data = let data =
type === 'localStorage' type === 'localStorage'
@ -37,7 +39,7 @@ export const useGetCache = (
*/ */
export const useRemoveCache = ( export const useRemoveCache = (
key: string | 'all' | 'all-sessionStorage' | 'all-localStorage', key: string | 'all' | 'all-sessionStorage' | 'all-localStorage',
type: TCacheType = 'sessionStorage', type: CacheType = 'sessionStorage',
) => { ) => {
if (key === 'all') { if (key === 'all') {
window.window.localStorage.clear() window.window.localStorage.clear()