Remove beta for authentication

This commit is contained in:
Jeremie Pardou-Piquemal 2020-11-04 20:59:28 +01:00 committed by Jérémie Pardou-Piquemal
parent bb776a541a
commit 78b53065fe

View file

@ -138,6 +138,11 @@ const GameListView = () => {
const { t } = useTranslation();
const [isBeta, setIsBeta] = useLocalStorage("isBeta", false);
if (isBeta) {
console.log("Beta activated");
}
const [cookieConsent, setCookieConsent] = useLocalStorage(
"cookieConsent",
false
@ -163,36 +168,16 @@ const GameListView = () => {
}
}, [forceBeta, setIsBeta]);
/*const handleRemove = (idToRemove) => async () => {
confirmAlert({
title: t("Confirmation"),
message: t("Do you really want to remove selected items ?"),
buttons: [
{
label: t("Yes"),
onClick: () => {
deleteGame(idToRemove);
setGameList(gameList.filter(({ id }) => id !== idToRemove));
},
},
{
label: t("No"),
onClick: () => {},
},
],
});
};*/
return (
<>
<GameView>
<Header>
{isBeta && isAuthenticated && (
{isAuthenticated && (
<Link to={`/game/`} className="button new-game">
{t("Create new game")}
</Link>
)}
{isBeta && <Account className="login" disabled={!cookieConsent} />}
<Account className="login" disabled={!cookieConsent} />
<Brand className="brand">
<a href="/">
<img src={logo} alt="logo" />
@ -217,7 +202,7 @@ const GameListView = () => {
<Link to={`/game/${id}/session/`} className="button play">
{t("Play")}
</Link>
{isBeta && userId && (userId === owner || !owner) && (
{userId && (userId === owner || !owner) && (
<div className="extra-actions">
<Link
to={`/game/${id}/edit`}
@ -243,7 +228,6 @@ const GameListView = () => {
</footer>
</GameView>
<AboutModal show={showAboutModal} setShow={setShowAboutModal} />
{isBeta && (
<CookieConsent
location="bottom"
buttonText={t("Got it!")}
@ -265,7 +249,6 @@ const GameListView = () => {
>
{t("This site use a cookie only to know if your are authenticated.")}
</CookieConsent>
)}
</>
);
};