mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:31:19 +08:00
Addon knobs should work with RN.
This commit is contained in:
parent
f21210ac07
commit
2bec5ae624
@ -6,11 +6,14 @@ import KnobStore from './KnobStore';
|
||||
const PANEL_UPDATE_INTERVAL = 400;
|
||||
|
||||
export default class KnobManager {
|
||||
constructor(channel) {
|
||||
this.channel = channel;
|
||||
constructor() {
|
||||
this.knobStore = new KnobStore();
|
||||
}
|
||||
|
||||
setChannel(channel) {
|
||||
this.channel = channel;
|
||||
}
|
||||
|
||||
knob(name, options) {
|
||||
this._mayCallChannel();
|
||||
|
||||
|
@ -4,8 +4,7 @@ import KnobManager from './KnobManager';
|
||||
import { vueHandler } from './vue';
|
||||
import { reactHandler } from './react';
|
||||
|
||||
const channel = addons.getChannel();
|
||||
const manager = new KnobManager(channel);
|
||||
const manager = new KnobManager();
|
||||
|
||||
export function knob(name, options) {
|
||||
return manager.knob(name, options);
|
||||
@ -63,6 +62,9 @@ export function date(name, value = new Date()) {
|
||||
// In 3.3, this will become `withKnobs`, once our decorator API supports it.
|
||||
// See https://github.com/storybooks/storybook/pull/1527
|
||||
function wrapperKnobs(options) {
|
||||
const channel = addons.getChannel();
|
||||
manager.setChannel(channel);
|
||||
|
||||
if (options) channel.emit('addon:knobs:setOptions', options);
|
||||
|
||||
switch (window.STORYBOOK_ENV) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user