import React from 'react' import { FETCH_CONFIG } from './helper.js' export function appFactory (WrappedComponent) { return class AppFactory extends React.Component { renderApp = (user, workspace, app, content) => GLOBAL_renderApp({ loggedUser: user.isLoggedIn ? user : {}, workspace: { id: workspace.id, title: workspace.title }, appConfig: { ...app[content.type], apiUrl: FETCH_CONFIG.apiUrl }, content }) emitEventApp = (type, data) => GLOBAL_dispatchEvent(type, data) hideApp = appName => GLOBAL_hideApp(appName) render () { return ( ) } } } export default appFactory