1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/SummaryUser.js

41 lines
1.4 KiB
JavaScript
Raw Normal View History

2021-05-12 02:10:36 +00:00
import React, { useContext } from "react"
import { faStar, faTrash, faUser } from "@fortawesome/free-solid-svg-icons"
2021-05-18 00:04:06 +00:00
import ContextLanguage from "../../contexts/ContextLanguage"
import SummaryBase from "../base/summary/SummaryBase"
import SummaryLeft from "../base/summary/SummaryLeft"
import SummaryLabels from "../base/summary/SummaryLabels"
import SummaryButton from "../base/summary/SummaryButton"
import SummaryRight from "../base/summary/SummaryRight"
2021-05-12 02:10:36 +00:00
export default function SummaryUser({ user, destroyUser, running, ...props }) {
2021-05-18 00:48:34 +00:00
const { strings } = useContext(ContextLanguage)
2021-05-12 02:10:36 +00:00
return (
2021-05-18 17:15:53 +00:00
<SummaryBase {...props}>
<SummaryLeft
icon={user.isAdmin ? faStar : faUser}
title={user.username}
subtitle={user.email}
/>
<SummaryLabels
upperLabel={strings.type}
upperValue={user.isAdmin ? strings.admin : strings.user}
/>
2021-05-20 10:16:01 +00:00
<SummaryButton
color={"Red"}
icon={faTrash}
onClick={async event => {
event.stopPropagation()
// TODO: Errors are not caught here. Where should they be displayed?
await destroyUser(user["email"])
}}
disabled={running}
>
{strings.delete}
</SummaryButton>
<SummaryRight/>
</SummaryBase>
2021-05-12 02:10:36 +00:00
)
}