-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improve the scroll bar flashing when the modal box is opened
- Loading branch information
Showing
18 changed files
with
530 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
114 changes: 114 additions & 0 deletions
114
packages/@core/preferences/__tests__/__snapshots__/config.test.ts.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html | ||
|
||
exports[`defaultPreferences immutability test > should not modify the config object 1`] = ` | ||
{ | ||
"app": { | ||
"accessMode": "frontend", | ||
"authPageLayout": "panel-right", | ||
"checkUpdatesInterval": 1, | ||
"colorGrayMode": false, | ||
"colorWeakMode": false, | ||
"compact": false, | ||
"contentCompact": "wide", | ||
"defaultAvatar": "https://unpkg.com/@vbenjs/static-source@0.1.6/source/avatar-v1.webp", | ||
"dynamicTitle": true, | ||
"enableCheckUpdates": true, | ||
"enablePreferences": true, | ||
"enableRefreshToken": false, | ||
"isMobile": false, | ||
"layout": "sidebar-nav", | ||
"locale": "zh-CN", | ||
"loginExpiredMode": "page", | ||
"name": "Vben Admin", | ||
"preferencesButtonPosition": "auto", | ||
"watermark": false, | ||
}, | ||
"breadcrumb": { | ||
"enable": true, | ||
"hideOnlyOne": false, | ||
"showHome": false, | ||
"showIcon": true, | ||
"styleType": "normal", | ||
}, | ||
"copyright": { | ||
"companyName": "Vben", | ||
"companySiteLink": "https://www.vben.pro", | ||
"date": "2024", | ||
"enable": true, | ||
"icp": "", | ||
"icpLink": "", | ||
}, | ||
"footer": { | ||
"enable": true, | ||
"fixed": false, | ||
}, | ||
"header": { | ||
"enable": true, | ||
"hidden": false, | ||
"mode": "fixed", | ||
}, | ||
"logo": { | ||
"enable": true, | ||
"source": "https://unpkg.com/@vbenjs/static-source@0.1.6/source/logo-v1.webp", | ||
}, | ||
"navigation": { | ||
"accordion": true, | ||
"split": true, | ||
"styleType": "rounded", | ||
}, | ||
"shortcutKeys": { | ||
"enable": true, | ||
"globalLockScreen": true, | ||
"globalLogout": true, | ||
"globalPreferences": true, | ||
"globalSearch": true, | ||
}, | ||
"sidebar": { | ||
"collapsed": false, | ||
"collapsedShowTitle": false, | ||
"enable": true, | ||
"expandOnHover": true, | ||
"extraCollapse": true, | ||
"hidden": false, | ||
"width": 224, | ||
}, | ||
"tabbar": { | ||
"dragable": true, | ||
"enable": true, | ||
"height": 38, | ||
"keepAlive": true, | ||
"persist": true, | ||
"showIcon": true, | ||
"showMaximize": true, | ||
"showMore": true, | ||
"showRefresh": true, | ||
"styleType": "chrome", | ||
}, | ||
"theme": { | ||
"builtinType": "default", | ||
"colorDestructive": "hsl(348 100% 61%)", | ||
"colorPrimary": "hsl(212 100% 45%)", | ||
"colorSuccess": "hsl(144 57% 58%)", | ||
"colorWarning": "hsl(42 84% 61%)", | ||
"mode": "dark", | ||
"radius": "0.5", | ||
"semiDarkHeader": false, | ||
"semiDarkSidebar": true, | ||
}, | ||
"transition": { | ||
"enable": true, | ||
"loading": true, | ||
"name": "fade-slide", | ||
"progress": true, | ||
}, | ||
"widget": { | ||
"fullscreen": true, | ||
"globalSearch": true, | ||
"languageToggle": true, | ||
"lockScreen": true, | ||
"notification": true, | ||
"sidebarToggle": true, | ||
"themeToggle": true, | ||
}, | ||
} | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { describe, expect, it } from 'vitest'; | ||
|
||
import { defaultPreferences } from '../src/config'; | ||
|
||
describe('defaultPreferences immutability test', () => { | ||
// 创建快照,确保默认配置对象不被修改 | ||
it('should not modify the config object', () => { | ||
expect(defaultPreferences).toMatchSnapshot(); | ||
}); | ||
}); |
6 changes: 3 additions & 3 deletions
6
...@core/preferences/src/preferences.test.ts → ...preferences/__tests__/preferences.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/tsconfig", | ||
"extends": "@vben/tsconfig/web.json", | ||
"include": ["src"], | ||
"include": ["src", "__tests__"], | ||
"exclude": ["node_modules"] | ||
} |
146 changes: 146 additions & 0 deletions
146
packages/@core/ui-kit/form-ui/__tests__/form-api.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
// 假设这个文件为 FormApi.ts | ||
import { beforeEach, describe, expect, it, vi } from 'vitest'; | ||
|
||
import { FormApi } from '../src/form-api'; | ||
|
||
vi.mock('@vben-core/shared/utils', () => ({ | ||
bindMethods: vi.fn(), | ||
createMerge: vi.fn((mergeFn) => { | ||
return (stateOrFn, prev) => { | ||
mergeFn(prev, 'key', stateOrFn); | ||
return { ...prev, ...stateOrFn }; | ||
}; | ||
}), | ||
isFunction: (fn: any) => typeof fn === 'function', | ||
StateHandler: vi.fn().mockImplementation(() => ({ | ||
reset: vi.fn(), | ||
setConditionTrue: vi.fn(), | ||
waitForCondition: vi.fn().mockResolvedValue(true), | ||
})), | ||
})); | ||
|
||
describe('formApi', () => { | ||
let formApi: FormApi; | ||
|
||
beforeEach(() => { | ||
formApi = new FormApi(); | ||
}); | ||
|
||
it('should initialize with default state', () => { | ||
expect(formApi.state).toEqual( | ||
expect.objectContaining({ | ||
actionWrapperClass: '', | ||
collapsed: false, | ||
collapsedRows: 1, | ||
commonConfig: {}, | ||
handleReset: undefined, | ||
handleSubmit: undefined, | ||
layout: 'horizontal', | ||
resetButtonOptions: {}, | ||
schema: [], | ||
showCollapseButton: false, | ||
showDefaultActions: true, | ||
submitButtonOptions: {}, | ||
wrapperClass: 'grid-cols-1', | ||
}), | ||
); | ||
expect(formApi.isMounted).toBe(false); | ||
}); | ||
|
||
it('should mount form actions', async () => { | ||
const formActions: any = { | ||
meta: {}, | ||
resetForm: vi.fn(), | ||
setFieldValue: vi.fn(), | ||
setValues: vi.fn(), | ||
submitForm: vi.fn(), | ||
validate: vi.fn(), | ||
values: { name: 'test' }, | ||
}; | ||
|
||
await formApi.mount(formActions); | ||
expect(formApi.isMounted).toBe(true); | ||
expect(formApi.form).toEqual(formActions); | ||
}); | ||
|
||
it('should get values from form', async () => { | ||
const formActions: any = { | ||
meta: {}, | ||
values: { name: 'test' }, | ||
}; | ||
|
||
await formApi.mount(formActions); | ||
const values = await formApi.getValues(); | ||
expect(values).toEqual({ name: 'test' }); | ||
}); | ||
|
||
it('should set field value', async () => { | ||
const setFieldValueMock = vi.fn(); | ||
const formActions: any = { | ||
meta: {}, | ||
setFieldValue: setFieldValueMock, | ||
values: { name: 'test' }, | ||
}; | ||
|
||
await formApi.mount(formActions); | ||
await formApi.setFieldValue('name', 'new value'); | ||
expect(setFieldValueMock).toHaveBeenCalledWith( | ||
'name', | ||
'new value', | ||
undefined, | ||
); | ||
}); | ||
|
||
it('should reset form', async () => { | ||
const resetFormMock = vi.fn(); | ||
const formActions: any = { | ||
meta: {}, | ||
resetForm: resetFormMock, | ||
values: { name: 'test' }, | ||
}; | ||
|
||
await formApi.mount(formActions); | ||
await formApi.resetForm(); | ||
expect(resetFormMock).toHaveBeenCalled(); | ||
}); | ||
|
||
it('should call handleSubmit on submit', async () => { | ||
const handleSubmitMock = vi.fn(); | ||
const formActions: any = { | ||
meta: {}, | ||
submitForm: vi.fn().mockResolvedValue(true), | ||
values: { name: 'test' }, | ||
}; | ||
|
||
const state = { | ||
handleSubmit: handleSubmitMock, | ||
}; | ||
|
||
formApi.setState(state); | ||
await formApi.mount(formActions); | ||
|
||
const result = await formApi.submitForm(); | ||
expect(formActions.submitForm).toHaveBeenCalled(); | ||
expect(handleSubmitMock).toHaveBeenCalledWith({ name: 'test' }); | ||
expect(result).toEqual({ name: 'test' }); | ||
}); | ||
|
||
it('should unmount form and reset state', () => { | ||
formApi.unmounted(); | ||
expect(formApi.isMounted).toBe(false); | ||
expect(formApi.stateHandler.reset).toHaveBeenCalled(); | ||
}); | ||
|
||
it('should validate form', async () => { | ||
const validateMock = vi.fn().mockResolvedValue(true); | ||
const formActions: any = { | ||
meta: {}, | ||
validate: validateMock, | ||
}; | ||
|
||
await formApi.mount(formActions); | ||
const isValid = await formApi.validate(); | ||
expect(validateMock).toHaveBeenCalled(); | ||
expect(isValid).toBe(true); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/tsconfig", | ||
"extends": "@vben/tsconfig/web.json", | ||
"include": ["src"], | ||
"include": ["src", "__tests__"], | ||
"exclude": ["node_modules"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.