mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
Use uuid for action IDs instead of Math.random (fixes #1109)
This commit is contained in:
parent
bf6faea25e
commit
d8fb794362
@ -25,7 +25,8 @@
|
||||
"deep-equal": "^1.0.1",
|
||||
"json-stringify-safe": "^5.0.1",
|
||||
"prop-types": "^15.5.8",
|
||||
"react-inspector": "^2.0.0"
|
||||
"react-inspector": "^2.0.0",
|
||||
"uuid": "^3.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"react": "^15.5.4",
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
import addons from '@storybook/addons';
|
||||
import stringify from 'json-stringify-safe';
|
||||
import uuid from 'uuid/v1';
|
||||
import { EVENT_ID } from './';
|
||||
|
||||
function _format(arg) {
|
||||
@ -16,9 +17,9 @@ export function action(name) {
|
||||
const handler = function(..._args) {
|
||||
const args = Array.from(_args).map(_format);
|
||||
const channel = addons.getChannel();
|
||||
const randomId = Math.random().toString(16).slice(2);
|
||||
const id = uuid();
|
||||
channel.emit(EVENT_ID, {
|
||||
id: randomId,
|
||||
id,
|
||||
data: { name, args },
|
||||
});
|
||||
};
|
||||
|
27
addons/actions/src/preview.test.js
Normal file
27
addons/actions/src/preview.test.js
Normal file
@ -0,0 +1,27 @@
|
||||
import addons from '@storybook/addons';
|
||||
import uuid from 'uuid/v1';
|
||||
import { action } from './preview';
|
||||
|
||||
jest.mock('uuid/v1');
|
||||
jest.mock('@storybook/addons');
|
||||
|
||||
describe('preview', () => {
|
||||
describe('action()', () => {
|
||||
it('should use a uuid for action ids', () => {
|
||||
const channel = { emit: jest.fn() };
|
||||
const uuidGenerator = (function*() {
|
||||
yield '42';
|
||||
yield '24';
|
||||
})();
|
||||
uuid.mockImplementation(() => uuidGenerator.next().value);
|
||||
addons.getChannel.mockReturnValue(channel);
|
||||
const fn = action('foo');
|
||||
|
||||
fn();
|
||||
fn();
|
||||
expect(channel.emit).toHaveBeenCalledTimes(2);
|
||||
expect(channel.emit.mock.calls[0][1].id).toBe('42');
|
||||
expect(channel.emit.mock.calls[1][1].id).toBe('24');
|
||||
});
|
||||
});
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user