chore: upgrade valibot
This commit is contained in:
parent
85eb787175
commit
1b5057d203
5 changed files with 6864 additions and 8165 deletions
|
@ -80,7 +80,7 @@
|
||||||
"trystero": "^0.20.0",
|
"trystero": "^0.20.0",
|
||||||
"type-fest": "^4.11.1",
|
"type-fest": "^4.11.1",
|
||||||
"unstorage": "^1.10.1",
|
"unstorage": "^1.10.1",
|
||||||
"valibot": "^0.30.0",
|
"valibot": "^0.42.0",
|
||||||
"webextension-polyfill": "^0.12.0"
|
"webextension-polyfill": "^0.12.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -95,6 +95,7 @@
|
||||||
"@types/react": "^18.2.64",
|
"@types/react": "^18.2.64",
|
||||||
"@types/react-dom": "^18.2.21",
|
"@types/react-dom": "^18.2.21",
|
||||||
"@types/webextension-polyfill": "^0.10.7",
|
"@types/webextension-polyfill": "^0.10.7",
|
||||||
|
"@typescript-eslint/parser": "^8.5.0",
|
||||||
"@vitejs/plugin-react": "^4.2.1",
|
"@vitejs/plugin-react": "^4.2.1",
|
||||||
"autoprefixer": "^10.4.18",
|
"autoprefixer": "^10.4.18",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
|
|
14988
pnpm-lock.yaml
14988
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -1,4 +1,4 @@
|
||||||
import { type Output, object, string, minBytes, maxBytes, toTrimmed, union, literal, notLength, number } from 'valibot'
|
import * as v from 'valibot'
|
||||||
import { useForm } from 'react-hook-form'
|
import { useForm } from 'react-hook-form'
|
||||||
import { valibotResolver } from '@hookform/resolvers/valibot'
|
import { valibotResolver } from '@hookform/resolvers/valibot'
|
||||||
import { toast } from 'sonner'
|
import { toast } from 'sonner'
|
||||||
|
@ -26,18 +26,30 @@ const defaultUserInfo: UserInfo = {
|
||||||
themeMode: checkSystemDarkMode() ? 'dark' : 'system'
|
themeMode: checkSystemDarkMode() ? 'dark' : 'system'
|
||||||
}
|
}
|
||||||
|
|
||||||
const formSchema = object({
|
const formSchema = v.object({
|
||||||
id: string(),
|
id: v.string(),
|
||||||
createTime: number(),
|
createTime: v.number(),
|
||||||
// Pure numeric strings will be converted to number
|
// Pure numeric strings will be converted to number
|
||||||
// Issues: https://github.com/unjs/unstorage/issues/277
|
// Issues: https://github.com/unjs/unstorage/issues/277
|
||||||
name: string([
|
// name: v.string([
|
||||||
toTrimmed(),
|
// // toTrimmed(),
|
||||||
minBytes(1, 'Please enter your username.'),
|
// v.minBytes(1, 'Please enter your username.'),
|
||||||
maxBytes(20, 'Your username cannot exceed 20 bytes.')
|
// v.maxBytes(20, 'Your username cannot exceed 20 bytes.')
|
||||||
]),
|
// ]),
|
||||||
avatar: string([notLength(0, 'Please select your avatar.'), maxBytes(8 * 1024, 'Your avatar cannot exceed 8kb.')]),
|
name: v.pipe(
|
||||||
themeMode: union([literal('system'), literal('light'), literal('dark')], 'Please select extension theme mode.')
|
v.string(),
|
||||||
|
v.minBytes(1, 'Please enter your username.'),
|
||||||
|
v.maxBytes(20, 'Your username cannot exceed 20 bytes.')
|
||||||
|
),
|
||||||
|
avatar: v.pipe(
|
||||||
|
v.string(),
|
||||||
|
v.notLength(0, 'Please select your avatar.'),
|
||||||
|
v.maxBytes(8 * 1024, 'Your avatar cannot exceed 8kb.')
|
||||||
|
),
|
||||||
|
themeMode: v.pipe(
|
||||||
|
v.string(),
|
||||||
|
v.union([v.literal('system'), v.literal('light'), v.literal('dark')], 'Please select extension theme mode.')
|
||||||
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
const ProfileForm = () => {
|
const ProfileForm = () => {
|
||||||
|
@ -55,7 +67,7 @@ const ProfileForm = () => {
|
||||||
userInfo && form.reset(userInfo)
|
userInfo && form.reset(userInfo)
|
||||||
}, [userInfo, form])
|
}, [userInfo, form])
|
||||||
|
|
||||||
const handleSubmit = (userInfo: Output<typeof formSchema>) => {
|
const handleSubmit = (userInfo: UserInfo) => {
|
||||||
send(userInfoDomain.command.UpdateUserInfoCommand(userInfo))
|
send(userInfoDomain.command.UpdateUserInfoCommand(userInfo))
|
||||||
toast.success('Saved successfully!')
|
toast.success('Saved successfully!')
|
||||||
}
|
}
|
||||||
|
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
|
@ -8,7 +8,7 @@ const isDev = process.env.NODE_ENV === 'development'
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
srcDir: path.resolve('src'),
|
srcDir: path.resolve('src'),
|
||||||
imports: false,
|
imports: false,
|
||||||
entrypointsDir: path.resolve('src', 'app'),
|
entrypointsDir: 'app',
|
||||||
runner: {
|
runner: {
|
||||||
startUrls: ['https://www.example.com/']
|
startUrls: ['https://www.example.com/']
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue