1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-23 13:34:19 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/ButtonToggleBeforeAfter.js

26 lines
743 B
JavaScript
Raw Normal View History

import React, { useContext } from "react"
2021-04-30 14:37:28 +00:00
import Style from "./ButtonToggleBeforeAfter.module.css"
import classNames from "classnames"
import Button from "../base/Button"
2021-05-18 00:04:06 +00:00
import ContextLanguage from "../../contexts/ContextLanguage"
2021-04-30 14:37:28 +00:00
export default function ButtonToggleBeforeAfter({ isBefore, setBefore, className, ...props }) {
2021-05-18 00:48:34 +00:00
const { strings } = useContext(ContextLanguage)
2021-04-30 14:37:28 +00:00
const onButtonClick = () => {
setBefore(a => !a)
2021-04-30 14:37:28 +00:00
}
return (
<Button
color={"Grey"}
className={classNames(Style.ButtonToggleBeforeAfter, className)}
onClick={onButtonClick}
{...props}
>
{isBefore ? strings.timeBefore : strings.timeAfter}
2021-04-30 14:37:28 +00:00
</Button>
)
}