const React = require('react'); import styles from './common.scss'; const { List, ListItem, ListItemContent, Button, Icon, Switch, } = require('react-mdl'); const { Link } = require('react-router'); export { styles }; export const shorten = (str, len = 50) => (str && str.length > len ? `${str.substring(0, len)}...` : str); export const AppsLinkList = ({ apps }) => ( {apps.length > 0 && apps.map(({ appName, description = '-', icon = 'apps' }) => ( {appName} ))} ); export const HeaderTitle = ({ title, actions, subtitle }) => (
{title}
{subtitle && {subtitle}}
{actions &&
{actions}
}
); export const FormButtons = ({ submitText = 'Create', onCancel }) => (
 
); export const SwitchWithLabel = ({ onChange, children, checked }) => ( {children} ); export const TogglesLinkList = ({ toggles }) => ( {toggles.length > 0 && toggles.map(({ name, description = '-', icon = 'toggle' }) => ( {name} ))} ); export function getIcon (type) { switch (type) { case 'feature-updated': return 'autorenew'; case 'feature-created': return 'add'; case 'feature-deleted': return 'remove'; case 'feature-archived': return 'archived'; default: return 'star'; } }; export const IconLink = ({ icon, children, ...props }) => ( {children} ); export const ExternalIconLink = ({ url, children }) => ( {children} ); const badNumbers = [NaN, Infinity, -Infinity]; export function calc (value, total, decimal) { if (typeof value !== 'number' || typeof total !== 'number' || typeof decimal !== 'number') { return null; } if (total === 0) { return 0; } badNumbers.forEach((number) => { if ([value, total, decimal].indexOf(number) > -1) { return number; } }); return (value / total * 100).toFixed(decimal); };