diff --git a/.prettier.cjs b/.prettier.cjs index 8668a0db..23cc440e 100644 --- a/.prettier.cjs +++ b/.prettier.cjs @@ -1,20 +1,20 @@ module.exports = { - printWidth: 80, //一行最多 80 字符 - tabWidth: 2, //使用 2 个空格缩进 - useTabs: false, //不使用缩进符,而使用空格 - semi: false, //行尾不需要有分号 - singleQuote: true, //使用单引号 - quoteProps: 'as-needed', //对象的key仅在必要时用引号 - jsxSingleQuote: false, //jsx不使用单引号,而使用双引号 - trailingComma: 'all', //尾随逗号 - bracketSpacing: true, //大括号内的首尾需要空格 - jsxBracketSameLine: false, //jsx标签的反尖括号需要换行 - arrowParens: 'always', //箭头函数,只有一个参数的时候,也需要括号 - rangeStart: 0, //每个文件格式化的范围是文件的全部内容 + printWidth: 80, // 一行最多 `80` 字符 + tabWidth: 2, // 使用 `2` 个空格缩进 + useTabs: false, // 不使用缩进符, 而使用空格 + semi: false, // 行尾不需要有分号 + singleQuote: true, // 使用单引号 + quoteProps: 'as-needed', // 对象的 `key` 仅在必要时用引号 + jsxSingleQuote: false, // `jsx` 不使用单引号, 而使用双引号 + trailingComma: 'all', // 尾随逗号 + bracketSpacing: true, // 大括号内的首尾需要空格 + jsxBracketSameLine: false, // `jsx` 标签的反尖括号需要换行 + arrowParens: 'always', // 箭头函数, 只有一个参数的时候, 也需要括号 + rangeStart: 0, // 每个文件格式化的范围是文件的全部内容 rangeEnd: Infinity, - requirePragma: false, //不需要写文件开头的@prettier - insertPragma: false, //不需要自动在文件开头插入@prettier - proseWrap: 'preserve', //使用默认的折行标准 - htmlWhitespaceSensitivity: 'css', //根据显示样式决定html要不要折行 - endOfLine: 'lf', //换行符使用lf + requirePragma: false, // 不需要写文件开头的 `@prettier` + insertPragma: false, // 不需要自动在文件开头插入 `@prettier` + proseWrap: 'preserve', // 使用默认的折行标准 + htmlWhitespaceSensitivity: 'css', // 根据显示样式决定 `html` 要不要折行 + endOfLine: 'lf', // 换行符使用 `lf` } diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..b45a78f4 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "i18n-ally.localesPaths": [ + "locales", + "src/language" + ] +} \ No newline at end of file diff --git a/README.md b/README.md index 3bac90d7..3dc2473f 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,8 @@ ## 项目结构 ``` +- locales: 国际化多语言入口(本项目采用 `json` 格式) + - assets: 项目静态资源入口 - images: 项目图片资源 diff --git a/src/components/RayScrollReveal/index.tsx b/src/components/RayScrollReveal/index.tsx index 38d72cad..b3c55623 100644 --- a/src/components/RayScrollReveal/index.tsx +++ b/src/components/RayScrollReveal/index.tsx @@ -84,7 +84,7 @@ export default RayScrollReveal /** * * 滚动加载过度组件, 来回滚动时, 可以重复触发效果 - * 只需要将 dom 插入在 RayScrollReveal 组件下即可 - * 如果需要使用重新注册加载脚本或者有新的 dom 插入, 调用 scrollRevealCallback 函数即可捕获添加到 dom 的任何新元素 + * 只需要将 `dom` 插入在 `RayScrollReveal` 组件下即可 + * 如果需要使用重新注册加载脚本或者有新的 `dom` 插入, 调用 `scrollRevealCallback` 函数即可捕获添加到 `dom` 的任何新元素 * 注意: 插件始终是以显示屏为窗口作为判断元素是否显示, 所以自定义滚动条滚动加载元素不生效 */ diff --git a/src/router/modules/index.ts b/src/router/modules/index.ts index 5948a713..1cbde42b 100644 --- a/src/router/modules/index.ts +++ b/src/router/modules/index.ts @@ -13,5 +13,6 @@ export default routes /** * * 这个方法可以自动载入路由表, 不需要手动进行导入 - * 单个路由表格式可以参考 test.ts + * 单个路由表格式可以参考 `test.ts` + * 但是如果需要控制路由顺序, 则需要自行处理 */ diff --git a/src/types/cache.d.ts b/src/types/cache.d.ts index 9838cf3e..dad41285 100644 --- a/src/types/cache.d.ts +++ b/src/types/cache.d.ts @@ -1,5 +1,5 @@ export {} declare global { - declare type TCacheType = 'sessionStorage' | 'localStorage' + declare type CacheType = 'sessionStorage' | 'localStorage' } diff --git a/src/types/index.d.ts b/src/types/index.d.ts index d1a00cfd..2e91c09a 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -30,4 +30,6 @@ export global { declare type CipherOption = CryptoJS.lib.CipherOption declare type CipherParams = CryptoJS.lib.CipherParams + + declare type VoidFunc = (...args: unknown[]) => void } diff --git a/src/utils/cache.ts b/src/utils/cache.ts index 307e4d29..be778a9d 100644 --- a/src/utils/cache.ts +++ b/src/utils/cache.ts @@ -6,11 +6,13 @@ export const useSetCache = ( key: string, value: T, - type: TCacheType = 'sessionStorage', + type: CacheType = 'sessionStorage', ) => { + const waitCacheValue = JSON.stringify(value) + type === 'localStorage' - ? window.localStorage.setItem(key, JSON.stringify(value)) - : window.sessionStorage.setItem(key, JSON.stringify(value)) + ? window.localStorage.setItem(key, waitCacheValue) + : window.sessionStorage.setItem(key, waitCacheValue) } /** @@ -21,7 +23,7 @@ export const useSetCache = ( */ export const useGetCache = ( key: string, - type: TCacheType = 'sessionStorage', + type: CacheType = 'sessionStorage', ) => { let data = type === 'localStorage' @@ -37,7 +39,7 @@ export const useGetCache = ( */ export const useRemoveCache = ( key: string | 'all' | 'all-sessionStorage' | 'all-localStorage', - type: TCacheType = 'sessionStorage', + type: CacheType = 'sessionStorage', ) => { if (key === 'all') { window.window.localStorage.clear()