Vulcan/packages/nova-core/lib/containers/AppComposer.jsx

23 lines
596 B
JavaScript

import { composeWithTracker } from 'react-komposer';
function composer(props, onData) {
const subscriptions = Telescope.subscriptions.map((sub) => Meteor.subscribe(sub.name, sub.arguments));
FlowRouter.watchPathChange();
const data = {
currentUser: Meteor.user(),
currentRoute: FlowRouter.current()
}
if (!subscriptions.length || _.every(subscriptions, handle => handle.ready())) {
data.ready = true;
onData(null, data);
} else {
onData(null, {ready: false});
}
}
module.exports = composeWithTracker(composer);
export default composeWithTracker(composer);