[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

39 lines
1.1 KiB

import React, { FC, useEffect } from 'react'
import { useSelector, useDispatch } from 'react-redux'
import { fetchApps } from 'src/actions/apps'
import { getApps } from 'src/selectors/apps'
import { useTheme } from 'src/hooks'
import { setTitle } from 'src/utils'
import { AppState, AppThunkDispatch, App } from 'src/types'
import Title from 'src/components/title'
import Section from 'src/components/section'
import AppListItem from 'src/components/app-list-item'
const Apps: FC = () => {
const theme = useTheme()
const apps = useSelector<AppState, App[]>(getApps)
const dispatch = useDispatch<AppThunkDispatch>()
useEffect(() => {
dispatch(fetchApps())
setTitle('Apps')
}, [])
return (
<div>
<Section>
<Title>Apps</Title>
<p style={{ color: theme.text }}>Use apps to post content to Flexor.</p>
</Section>
<div style={{ backgroundColor: theme.backgroundSecondary }}>
{apps.map(app => <AppListItem key={app.id} app={app} />)}
</div>
</div>
)
}
export default Apps