Skip to content

Commit 2046c46

Browse files
committed
feat: upgrade dependencies
1 parent 96f2b3b commit 2046c46

26 files changed

+12217
-12261
lines changed

.commitlintrc.cjs

-3
This file was deleted.

.commitlintrc.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* @type {import('@commitlint/types').UserConfig}
3+
*/
4+
export default {
5+
extends: ['@vexip-ui/commitlint-config']
6+
}

.husky/commit-msg

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
31
. "$(dirname "$0")/common.sh"
42

53
npx --no-install commitlint --edit "$1"

.husky/pre-commit

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
31
. "$(dirname "$0")/common.sh"
42

53
[ -n "$CI" ] && exit 0

.prettierrc.cjs

-1
This file was deleted.

.prettierrc.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import commonConfig from '@vexip-ui/prettier-config'
2+
3+
/**
4+
* @type {import("prettier").Config}
5+
*/
6+
export default {
7+
...commonConfig
8+
}

.stylelintrc.cjs .stylelintrc.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
module.exports = {
1+
/**
2+
* @type {import('stylelint').Config}
3+
*/
4+
export default {
25
extends: ['@vexip-ui/stylelint-config'],
36
plugins: ['stylelint-prettier']
47
}

mock/article.ts

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
import { Random } from 'mockjs'
2-
import { createBusinessBase, mockCommonRequests } from './common'
1+
import { faker } from '@faker-js/faker'
2+
import { mockCommonRequests } from './common'
3+
import { createBusinessBase } from './user'
34

45
import type { Article } from '@/service/article'
56

67
const richText =
78
'<p>Some content for testing.</p><p><img src="https://www.vexipui.com/picture-4.jpg" alt="" data-href="" style="width: 610.00px;height: 381.25px;"/></p><p>Some content for testing.</p>'
89

9-
mockCommonRequests('/api/article', (): Article[] => {
10+
export const { handlers } = mockCommonRequests('/api/article', (): Article[] => {
1011
return Array.from({ length: 20 }, (_, index) => {
1112
return {
1213
...createBusinessBase(),
1314
id: `${index}`,
14-
title: Random.title(5, 10),
15-
author: Random.first(),
16-
date: Random.datetime(),
17-
summary: Random.sentence(5, 15),
15+
title: faker.book.title(),
16+
author: faker.person.firstName(),
17+
date: faker.date.past(),
18+
summary: faker.lorem.sentence(),
1819
cover: [
1920
{
2021
url: 'https://www.vexipui.com/picture-1.jpg'

mock/common.ts

+73-167
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
import Mock, { Random, mock } from 'mockjs'
2-
import { getUsers } from './user'
3-
4-
import type { Result } from '@/service/common'
1+
import { faker } from '@faker-js/faker'
2+
import { HttpResponse, http } from 'msw'
53

64
export interface MockParams {
75
url: string,
@@ -10,182 +8,90 @@ export interface MockParams {
108
headers?: Record<string, string>
119
}
1210

13-
type ResultType<T> = {
14-
[P in keyof T]: T[P] extends () => any ? ReturnType<T[P]> : T[P]
11+
export function createResult<T>(
12+
data: T | null = null,
13+
success = true,
14+
message?: string,
15+
status = 200
16+
) {
17+
return HttpResponse.json(
18+
{
19+
status: success ? 1 : 0,
20+
message: message || (success ? 'ok' : 'fail'),
21+
data
22+
},
23+
status !== 200 ? { status } : undefined
24+
)
1525
}
1626

17-
const XHR = (Mock as any).XHR
27+
export function mockCommonRequests<T extends { id?: any }>(url: string, getList: () => T[]) {
28+
url = url.trim().replace(/\/+$/, '')
29+
let list = getList()
1830

19-
XHR.prototype.__send = XHR.prototype.send
20-
XHR.prototype.send = function (...args: any) {
21-
if (this.custom.xhr) {
22-
this.custom.xhr.withCredentials = this.withCredentials ?? false
31+
const handlers = [
32+
http.get(url, () => createResult(list)),
2333

24-
try {
25-
// 同步请求时会报错
26-
// 暂未找到方法判断是否为同步请求
27-
this.custom.xhr.responseType = this.responseType
28-
} catch (e) {}
29-
}
34+
http.get(`${url}/:id`, ({ params }) => {
35+
const id = params.id
36+
const entity = list.find(entity => String(entity.id) === id)
3037

31-
if (this.custom.requestHeaders) {
32-
this.custom.options.headers = { ...this.custom.requestHeaders }
33-
}
38+
return createResult(entity)
39+
}),
3440

35-
this.__send(...args)
36-
}
41+
http.post(url, async ({ request }) => {
42+
try {
43+
const entity = (await request.json()) as T
3744

38-
Mock.setup({ timeout: '200-600' })
45+
entity.id = faker.string.uuid()
46+
list.push(entity)
3947

40-
Random.extend({
41-
telephone() {
42-
return `1${Random.pick(['30', '32', '35', '59', '80', '89'])}${mock(/\d{8}/)}`
43-
}
44-
})
48+
return createResult(entity)
49+
} catch (error) {}
4550

46-
export function createResponse<T extends { [x: string]: any } | { [x: string]: any }[]>(
47-
data: T,
48-
range?: string
49-
) {
50-
return (): Result<T extends any[] ? ResultType<T[0]>[] : ResultType<T>> => {
51-
const isArrayData = Array.isArray(data)
52-
53-
if (isArrayData && !range) {
54-
range = '20-30'
55-
}
56-
57-
const mockResult = mock(
58-
isArrayData
59-
? {
60-
[`data|${range}`]: data
61-
}
62-
: data
63-
)
64-
65-
return {
66-
status: 1,
67-
message: 'ok',
68-
data: isArrayData ? mockResult.data : mockResult
69-
}
70-
}
71-
}
51+
return createResult()
52+
}),
7253

73-
export function mockCommonRequests<T extends { id?: any }>(url: string, getList: () => T[]) {
74-
let list = getList()
54+
http.put(url, async ({ request }) => {
55+
try {
56+
const newEntity = (await request.json()) as T
57+
const entity = list.find(entity => entity.id === newEntity.id)
7558

76-
mock(url, 'get', () => {
77-
return {
78-
status: 1,
79-
message: 'ok',
80-
data: list
81-
}
82-
})
83-
84-
mock(new RegExp(`${url}\\/[^/]+`), 'get', ({ url }) => {
85-
const id = url.split('/').at(-1)!
86-
const entity = list.find(entity => String(entity.id) === id)
87-
88-
return {
89-
status: 1,
90-
message: 'ok',
91-
data: entity || null
92-
}
93-
})
94-
95-
mock(url, 'post', ({ body }) => {
96-
try {
97-
const entity = JSON.parse(body)
98-
99-
entity.id = Random.guid()
100-
list.push(entity)
101-
102-
return {
103-
status: 1,
104-
message: 'ok',
105-
data: entity
106-
}
107-
} catch (error) {}
108-
109-
return {
110-
status: 1,
111-
message: 'ok',
112-
data: null
113-
}
114-
})
115-
116-
mock(url, 'put', ({ body }) => {
117-
try {
118-
const newEntity = JSON.parse(body)
119-
const entity = list.find(entity => entity.id === newEntity.id)
120-
121-
if (entity) {
122-
Object.assign(entity, newEntity)
123-
124-
return {
125-
status: 1,
126-
message: 'ok',
127-
data: entity
59+
if (entity) {
60+
Object.assign(entity, newEntity)
61+
62+
return createResult(entity)
12863
}
64+
} catch (error) {}
65+
66+
return createResult()
67+
}),
68+
69+
http.delete(`${url}/:id`, ({ params }) => {
70+
const id = params.id
71+
const index = list.findIndex(entity => entity.id === id)
72+
73+
if (index > -1) {
74+
list.splice(index, 1)
12975
}
130-
} catch (error) {}
131-
132-
return {
133-
status: 1,
134-
message: 'ok',
135-
data: null
136-
}
137-
})
138-
139-
mock(new RegExp(`${url}\\/[^/]+`), 'delete', ({ url }) => {
140-
const id = url.split('/').at(-1)!
141-
const index = list.findIndex(entity => entity.id === id)
142-
143-
if (index > -1) {
144-
list.splice(index, 1)
145-
}
146-
147-
return {
148-
status: 1,
149-
message: 'ok',
150-
data: index > -1
151-
}
152-
})
153-
154-
mock(url, 'delete', ({ body }) => {
155-
try {
156-
const ids = JSON.parse(body)
157-
158-
if (ids.length) {
159-
const idSet = new Set(ids)
160-
161-
list = list.filter(entity => !idSet.has(entity.id))
162-
163-
return {
164-
status: 1,
165-
message: 'ok',
166-
data: true
76+
77+
return createResult(index > -1)
78+
}),
79+
80+
http.delete(url, async ({ request }) => {
81+
try {
82+
const ids = (await request.json()) as string[]
83+
84+
if (ids.length) {
85+
const idSet = new Set(ids)
86+
list = list.filter(entity => !idSet.has(entity.id))
87+
88+
return createResult(true)
16789
}
168-
}
169-
} catch (error) {}
170-
171-
return {
172-
status: 1,
173-
message: 'ok',
174-
data: false
175-
}
176-
})
177-
}
90+
} catch (error) {}
91+
92+
return createResult(false)
93+
})
94+
]
17895

179-
export function createBusinessBase() {
180-
const user = Random.pick(getUsers())
181-
182-
return {
183-
id: Random.guid(),
184-
creatorId: user.id,
185-
creatorName: user.alias,
186-
createdTime: Random.datetime(),
187-
modifierId: user.id,
188-
modifierName: user.alias,
189-
modifiedTime: Random.datetime()
190-
}
96+
return { handlers, getList: () => list }
19197
}

mock/resource.ts

+28-25
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
1-
import { Random, mock } from 'mockjs'
1+
import { Random } from 'mockjs'
2+
import { http } from 'msw'
3+
import { createResult } from './common'
24

3-
mock('/resource/file', async ({ body }) => {
4-
if (body instanceof FormData) {
5-
const file = body.get('file') as File
6-
const reader = new FileReader()
5+
export const handlers = [
6+
http.post('/resource/file', async ({ request }) => {
7+
const data = await request.formData()
8+
const file = data.get('file')
9+
10+
if (!file) {
11+
return createResult(null, false, 'Missing file', 400)
12+
}
13+
14+
if (!(file instanceof File)) {
15+
return createResult(null, false, 'Uploaded stuff is not a File', 400)
16+
}
717

18+
const reader = new FileReader()
819
reader.readAsDataURL(file)
920

1021
let base64: string | null = null
@@ -22,24 +33,16 @@ mock('/resource/file', async ({ body }) => {
2233
const name = units.slice(-1).join('.')
2334
const ext = units.at(-1)
2435

25-
return {
26-
status: 1,
27-
message: 'ok',
28-
data: {
29-
id,
30-
name,
31-
ext,
32-
size: file.size,
33-
med: '',
34-
url: base64
35-
}
36-
}
36+
return createResult({
37+
id,
38+
name,
39+
ext,
40+
size: file.size,
41+
med: '',
42+
url: base64
43+
})
3744
}
38-
}
39-
40-
return {
41-
status: 0,
42-
message: 'fail',
43-
data: null
44-
}
45-
})
45+
46+
return createResult(null, false)
47+
})
48+
]

0 commit comments

Comments
 (0)