forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: refactor devWarning for production code size (ant-design#35411)
* pref: better code style for production * refactor `devWarning` * don't use `useEffect` only wrap `devWarning` * chore: add 'noop' to coverage * chore: add test cases for devWarning * chore: add test case * chore: update test cases for devWarning * chore: restore test script command * fix: remove 'throw new Error' * should not use `throw` for browser * chore: update test case for AutoComplete * perf: add prefix for `devWarning` * update RegExp for UMD * add prefix for ES and CJS * chore: better code style * perf: * upgrade antd-tools * remove `injectWarningCondition` * rename `devWarning` to `warning` * chore: better code style * chore: better code style * chore: restore hasValidName
- Loading branch information
Showing
59 changed files
with
253 additions
and
211 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
describe('Test warning', () => { | ||
let spy: jest.SpyInstance; | ||
|
||
beforeAll(() => { | ||
spy = jest.spyOn(console, 'error'); | ||
}); | ||
|
||
afterAll(() => { | ||
spy.mockRestore(); | ||
}); | ||
|
||
beforeEach(() => { | ||
jest.resetModules(); | ||
}); | ||
|
||
afterEach(() => { | ||
spy.mockReset(); | ||
}); | ||
|
||
it('Test noop', async () => { | ||
const { noop } = await import('../warning'); | ||
const value = noop(); | ||
|
||
expect(value).toBe(undefined); | ||
expect(spy).not.toHaveBeenCalled(); | ||
expect(() => { | ||
noop(); | ||
}).not.toThrow(); | ||
}); | ||
|
||
describe('process.env.NODE_ENV !== "production"', () => { | ||
it('If `false`, exec `console.error`', async () => { | ||
const warning = (await import('../warning')).default; | ||
warning(false, 'error'); | ||
|
||
expect(spy).toHaveBeenCalled(); | ||
}); | ||
|
||
it('If `true`, do not exec `console.error`', async () => { | ||
const warning = (await import('../warning')).default; | ||
warning(true, 'error message'); | ||
|
||
expect(spy).not.toHaveBeenCalled(); | ||
}); | ||
}); | ||
|
||
describe('process.env.NODE_ENV === "production"', () => { | ||
it('Whether `true` or `false`, do not exec `console.error`', async () => { | ||
const prevEnv = process.env.NODE_ENV; | ||
process.env.NODE_ENV = 'production'; | ||
|
||
const { default: warning, noop } = await import('../warning'); | ||
|
||
expect(warning).toEqual(noop); | ||
|
||
warning(false, 'error message'); | ||
expect(spy).not.toHaveBeenCalled(); | ||
|
||
warning(true, 'error message'); | ||
expect(spy).not.toHaveBeenCalled(); | ||
|
||
process.env.NODE_ENV = prevEnv; | ||
}); | ||
}); | ||
}); |
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
import rcWarning, { resetWarned } from 'rc-util/lib/warning'; | ||
|
||
export { resetWarned }; | ||
export function noop() {} | ||
|
||
type Warning = (valid: boolean, component: string, message: string) => void; | ||
|
||
// eslint-disable-next-line import/no-mutable-exports | ||
let warning: Warning = noop; | ||
if (process.env.NODE_ENV !== 'production') { | ||
warning = (valid, component, message) => { | ||
rcWarning(valid, `[antd: ${component}] ${message}`); | ||
|
||
// StrictMode will inject console which will not throw warning in React 17. | ||
if (process.env.NODE_ENV === 'test') { | ||
resetWarned(); | ||
} | ||
}; | ||
} | ||
|
||
export default warning; |
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
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
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
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
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
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
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
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.