How to use the scratch-gui.initEmbedded function in scratch-gui

To help you get started, we’ve selected a few scratch-gui examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github LLK / scratch-www / src / views / preview / embed-view.jsx View on Github external
projectNotAvailable: state.preview.projectNotAvailable
});

const mapDispatchToProps = dispatch => ({
    getProjectInfo: (id, token) => {
        dispatch(previewActions.getProjectInfo(id, token));
    }
});

module.exports.View = connect(
    mapStateToProps,
    mapDispatchToProps
)(EmbedView);

GUI.setAppElement(document.getElementById('app'));
module.exports.initGuiState = GUI.initEmbedded;
module.exports.guiReducers = GUI.guiReducers;
module.exports.guiInitialState = GUI.guiInitialState;
module.exports.guiMiddleware = GUI.guiMiddleware;
module.exports.initLocale = GUI.initLocale;
module.exports.localesInitialState = GUI.localesInitialState;