gab-social/app/javascript/gabsocial/pages/groups_page.js

60 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-02-22 23:26:23 +00:00
import { Fragment } from 'react'
import LinkFooter from '../components/link_footer'
import GroupsPanel from '../components/panel/groups_panel'
2020-02-24 21:56:07 +00:00
import DefaultLayout from '../layouts/default_layout'
2020-02-22 23:26:23 +00:00
export default class GroupsPage extends PureComponent {
handleClickNewList () {
console.log("handleClickNewList")
}
handleClickEditLists () {
console.log("handleClickEditLists")
}
render() {
const { children } = this.props
const tabs = [
{
title: 'Featured',
to: '/groups'
},
2020-03-05 15:44:17 +00:00
{
title: 'New',
to: '/groups/new'
},
2020-02-22 23:26:23 +00:00
{
title: 'My Groups',
to: '/groups/browse/member'
},
{ // only if is_pro
title: 'Admin',
to: '/groups/browse/admin'
},
]
return (
<DefaultLayout
title='Groups'
actions={[
{
icon: 'list-delete',
onClick: this.handleClickEditLists
},
]}
layout={(
<Fragment>
<GroupsPanel slim />
<LinkFooter />
</Fragment>
)}
tabs={tabs}
showBackBtn
>
{ children }
</DefaultLayout>
)
}
}