Use uuid for action IDs instead of Math.random (fixes #1109)

This commit is contained in:
Marc Fallows 2017-06-23 13:37:02 +10:00
parent bf6faea25e
commit d8fb794362
3 changed files with 32 additions and 3 deletions

View File

@ -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",

View File

@ -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 },
});
};

View 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');
});
});
});