2017-12-24 01:16:45 -05:00
|
|
|
// This function binds the given `handlers` to the `target`.
|
|
|
|
export function assignHandlers (target, handlers) {
|
|
|
|
if (!target || !handlers) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We just bind each handler to the `target`.
|
|
|
|
const handle = target.handlers = {};
|
|
|
|
handlers.keys().forEach(
|
|
|
|
key => handle.key = key.bind(target)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function only returns the component if the result of calling
|
|
|
|
// `test` with `data` is `true`. Useful with funciton binding.
|
|
|
|
export function conditionalRender (test, data, component) {
|
2017-12-26 19:54:28 -05:00
|
|
|
return test(data) ? component : null;
|
2017-12-24 01:16:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// This object provides props to make the component not visible.
|
|
|
|
export const hiddenComponent = { style: { display: 'none' } };
|