[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.
 
 

67 lines
2.2 KiB

import React, { FC, useEffect } from 'react'
import { useSelector, useDispatch } from 'react-redux'
import { useHistory } from 'react-router-dom'
import { useAuthenticationCheck, useTheme } from 'src/hooks'
import { fetchPendingApps } from 'src/actions/apps'
import { getAuthenticatedUser, getChecked } from 'src/selectors/authentication'
import { getPendingApps } from 'src/selectors/apps'
import { handleApiError } from 'src/api/errors'
import { setTitle } from 'src/utils'
import { AppThunkDispatch } from 'src/types'
import Section from 'src/components/section'
import Title from 'src/components/title'
import Loading from 'src/components/pages/loading'
import AppListItem from 'src/components/app-list-item'
import HorizontalRule from 'src/components/horizontal-rule'
import PrimaryButton from 'src/components/controls/primary-button'
import SecondaryButton from 'src/components/controls/secondary-button'
const AdminApps: FC = () => {
useAuthenticationCheck()
const theme = useTheme()
const checked = useSelector(getChecked)
const user = useSelector(getAuthenticatedUser)
const apps = useSelector(getPendingApps)
const dispatch = useDispatch<AppThunkDispatch>()
const history = useHistory()
useEffect(() => {
setTitle('Admin \\ Apps')
const init = async () => {
try {
await dispatch(fetchPendingApps())
} catch (err) {
handleApiError(err, dispatch, history)
}
}
if (checked) init()
}, [checked])
if (!user) return <Loading />
if (checked && !user.admin) history.push('/')
return (
<div>
<Section>
<Title>Pending Apps</Title>
<HorizontalRule />
</Section>
{apps.map(app => (
<div className="list-item" style={{ borderColor: theme.backgroundSecondary }} key={app.id}>
<AppListItem app={app} />
<div className="buttons">
<PrimaryButton text="Activate" />
<SecondaryButton text="Set Preinstall" />
</div>
</div>
))}
</div>
)
}
export default AdminApps