mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +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.
78 lines
2.0 KiB
JavaScript
78 lines
2.0 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
|
|
|
|
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
|
|
|
var _createClass2 = require('babel-runtime/helpers/createClass');
|
|
|
|
var _createClass3 = _interopRequireDefault(_createClass2);
|
|
|
|
var _actions = require('./actions');
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
var ConfigApi = function () {
|
|
function ConfigApi(_ref) {
|
|
var pageBus = _ref.pageBus;
|
|
var storyStore = _ref.storyStore;
|
|
var reduxStore = _ref.reduxStore;
|
|
(0, _classCallCheck3.default)(this, ConfigApi);
|
|
|
|
this._pageBus = pageBus;
|
|
this._storyStore = storyStore;
|
|
this._reduxStore = reduxStore;
|
|
}
|
|
|
|
(0, _createClass3.default)(ConfigApi, [{
|
|
key: '_renderMain',
|
|
value: function _renderMain(loaders) {
|
|
if (loaders) loaders();
|
|
|
|
var stories = this._storyStore.dumpStoryBook();
|
|
// send to the parent frame.
|
|
this._pageBus.emit('setStories', { stories: stories });
|
|
|
|
// clear the error if exists.
|
|
this._reduxStore.dispatch((0, _actions.clearError)());
|
|
this._reduxStore.dispatch((0, _actions.setInitialStory)(stories));
|
|
}
|
|
}, {
|
|
key: '_renderError',
|
|
value: function _renderError(e) {
|
|
var stack = e.stack;
|
|
var message = e.message;
|
|
|
|
var error = { stack: stack, message: message };
|
|
this._reduxStore.dispatch((0, _actions.setError)(error));
|
|
}
|
|
}, {
|
|
key: 'configure',
|
|
value: function configure(loaders, module) {
|
|
var _this = this;
|
|
|
|
var render = function render() {
|
|
try {
|
|
_this._renderMain(loaders);
|
|
} catch (error) {
|
|
_this._renderError(error);
|
|
}
|
|
};
|
|
|
|
if (module.hot) {
|
|
module.hot.accept(function () {
|
|
setTimeout(render);
|
|
});
|
|
}
|
|
|
|
render();
|
|
}
|
|
}]);
|
|
return ConfigApi;
|
|
}();
|
|
|
|
exports.default = ConfigApi; |