25b65c3fb7
* feat(wip): add basic feed operations * ci: bump checks * ci: bump checks * feat: rework stamps and add feed functionalities * refactor: polish and fixes * feat(wip): add formulas * feat: show bzz.link for websites * feat: add stamp empty states and formatBzz * feat: add feed download * chore: update manifest-js version * feat: dev mode support with bee-js 3.1.0 (#273) * feat: dev mode support with bee-js 3.1.0 * fix: added missing package-lock.json file * build: remove PR preview * style: work on design * feat: add TroubleshootConnectionCard * build: remove depcheck Co-authored-by: Attila Gazso <agazso@gmail.com>
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import { Grid } from '@material-ui/core'
|
|
import { createStyles, makeStyles, Theme } from '@material-ui/core/styles'
|
|
import { ReactElement, ReactNode } from 'react'
|
|
|
|
const useStyles = makeStyles((theme: Theme) =>
|
|
createStyles({
|
|
wrapper: {
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
flexWrap: 'wrap',
|
|
},
|
|
action: {
|
|
marginBottom: theme.spacing(1),
|
|
marginRight: theme.spacing(1),
|
|
},
|
|
}),
|
|
)
|
|
|
|
interface Props {
|
|
children: ReactNode | ReactNode[]
|
|
}
|
|
|
|
export default function ExpandableListItemActions({ children }: Props): ReactElement | null {
|
|
const classes = useStyles()
|
|
|
|
if (Array.isArray(children)) {
|
|
return (
|
|
<div className={classes.wrapper}>
|
|
{children
|
|
// Exclude falsy values to allow conditional rendering
|
|
.filter(x => x)
|
|
.map((a, i) => (
|
|
<div key={i} className={classes.action}>
|
|
{a}
|
|
</div>
|
|
))}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Grid container direction="row">
|
|
<Grid className={classes.action}>{children}</Grid>
|
|
</Grid>
|
|
)
|
|
}
|