mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:11:26 +08:00
* Add preview container in preview module. * Update comments. * Implement preview module. * Add component tests. * Add tests for actions. * Add container tests. * Write tests for reducers. * Fix lint issues. * Add tests for init_pagebus * Add base ui model with the layout. * Fix the reducer. * Add select story pageBus event. * Update some test cases/ * Implement basic communication with the preview iframe. * Move actions to a common place. * Clean mantra reducers. * Integrated initial leftPanel. * Implement story filter * Add initial ActionLogger. * Add actions grouping. * Fix lint issues. * Implement initial routing. This version lacks, back button support. * Handle back button properly with routing. * Add keyboard shortcut support. * Add responsive tags. * Move all the admin dependencies to the dev env. So, end user doesn't need to download the stuff we use inside the manager. * Optimize dev build with enabling webpack when developing the manager. * Update CONTRIBUTING.md to support the new build environment. * Add proper support for production build. * Introduce the api module. * Add initial docs. * Add keyboard shortcut help dialog. * Fix lint issues. * Fix some missing tests. * Add tests for actions. * Write tests for action logger. * Add tests for layout * Add tests for left_panel.header. * Add tests for left_panel.text_filter * Add tests for left_panel.stories * Complete tests for the left panel component. * Simplyfy the container code by implementing the reduxComposer. * Add container tests. * Add ui reducer tests. * Add tests for handle key events * Add tests to handle_routing. * Add filters tests * Add tests for reduxComposer * Add tests for reduxComposer * Use a unique Id for the action.id. We need to support unique id for the action id since now it's possible to reload the preview iframe. So, if we use a number from 0, there's a chance for duplicate ids. * Update docs. * Update docs. * Add manager.js * Move redux and keycode to dependencies.
86 lines
2.6 KiB
JavaScript
86 lines
2.6 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.renderError = renderError;
|
|
exports.renderMain = renderMain;
|
|
exports.default = renderPreview;
|
|
|
|
require('airbnb-js-shims');
|
|
|
|
var _react = require('react');
|
|
|
|
var _react2 = _interopRequireDefault(_react);
|
|
|
|
var _reactDom = require('react-dom');
|
|
|
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
|
|
var _redboxReact = require('redbox-react');
|
|
|
|
var _redboxReact2 = _interopRequireDefault(_redboxReact);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
var rootEl = document.getElementById('root');
|
|
var previousKind = '';
|
|
var previousStory = '';
|
|
|
|
function renderError(error) {
|
|
// We always need to render redbox in the mainPage if we get an error.
|
|
// Since this is an error, this affects to the main page as well.
|
|
var realError = new Error(error.message);
|
|
realError.stack = error.stack;
|
|
var redBox = _react2.default.createElement(_redboxReact2.default, { error: realError });
|
|
_reactDom2.default.render(redBox, rootEl);
|
|
}
|
|
|
|
function renderMain(data, storyStore) {
|
|
if (storyStore.size() === 0) return null;
|
|
|
|
var NoPreview = function NoPreview() {
|
|
return _react2.default.createElement(
|
|
'p',
|
|
null,
|
|
'No Preview Available!'
|
|
);
|
|
};
|
|
var noPreview = _react2.default.createElement(NoPreview, null);
|
|
var selectedKind = data.selectedKind;
|
|
var selectedStory = data.selectedStory;
|
|
|
|
|
|
var story = storyStore.getStory(selectedKind, selectedStory);
|
|
if (!story) {
|
|
return _reactDom2.default.render(noPreview, rootEl);
|
|
}
|
|
|
|
// Unmount the previous story only if selectedKind or selectedStory has changed.
|
|
// renderMain() gets executed after each action. Actions will cause the whole
|
|
// story to re-render without this check.
|
|
// https://github.com/kadirahq/react-storybook/issues/116
|
|
if (selectedKind !== previousKind || previousStory !== selectedStory) {
|
|
// We need to unmount the existing set of components in the DOM node.
|
|
// Otherwise, React may not recrease instances for every story run.
|
|
// This could leads to issues like below:
|
|
// https://github.com/kadirahq/react-storybook/issues/81
|
|
previousKind = selectedKind;
|
|
previousStory = selectedStory;
|
|
_reactDom2.default.unmountComponentAtNode(rootEl);
|
|
}
|
|
|
|
return _reactDom2.default.render(story(), rootEl);
|
|
}
|
|
|
|
function renderPreview(_ref) {
|
|
var reduxStore = _ref.reduxStore;
|
|
var storyStore = _ref.storyStore;
|
|
|
|
var state = reduxStore.getState();
|
|
if (state.error) {
|
|
return renderError(state.error);
|
|
}
|
|
|
|
return renderMain(state, storyStore);
|
|
} |