mirror of
https://github.com/Steffo99/todocolors.git
synced 2024-11-25 17:54:18 +00:00
Don't make hydration explode with window
calls
This commit is contained in:
parent
4aff80efc8
commit
baac11c3ea
2 changed files with 59 additions and 26 deletions
|
@ -4,12 +4,26 @@ import {useBoardCreator} from "@/app/useBoardCreator"
|
||||||
import {faKey} from "@fortawesome/free-solid-svg-icons"
|
import {faKey} from "@fortawesome/free-solid-svg-icons"
|
||||||
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"
|
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"
|
||||||
import classNames from "classnames"
|
import classNames from "classnames"
|
||||||
import {default as React} from "react"
|
import {default as React, useEffect, useState} from "react"
|
||||||
|
|
||||||
export function CreatePrivateBoardPanel() {
|
export function CreatePrivateBoardPanel() {
|
||||||
const {createBoard} = useBoardCreator();
|
const {createBoard} = useBoardCreator();
|
||||||
|
const [canCreate, setCanCreate] = useState<boolean | null>(null);
|
||||||
|
|
||||||
const isSecure = typeof window !== "undefined" && window.isSecureContext;
|
useEffect(() => {
|
||||||
|
setCanCreate(window.isSecureContext)
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
let formContents;
|
||||||
|
if(canCreate === null) {
|
||||||
|
formContents = <MightCreateBoardFormContents/>
|
||||||
|
}
|
||||||
|
else if(!canCreate) {
|
||||||
|
formContents = <CannotCreateBoardFormContents/>
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
formContents = <CanCreateBoardFormContents/>
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form
|
<form
|
||||||
|
@ -17,7 +31,8 @@ export function CreatePrivateBoardPanel() {
|
||||||
"panel": true,
|
"panel": true,
|
||||||
"box": true,
|
"box": true,
|
||||||
"form-flex": true,
|
"form-flex": true,
|
||||||
"red": !isSecure,
|
"fade": canCreate === null,
|
||||||
|
"red": canCreate === false,
|
||||||
})}
|
})}
|
||||||
onSubmit={e => {
|
onSubmit={e => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
@ -29,8 +44,23 @@ export function CreatePrivateBoardPanel() {
|
||||||
{" "}
|
{" "}
|
||||||
Privato
|
Privato
|
||||||
</h3>
|
</h3>
|
||||||
{isSecure ?
|
{formContents}
|
||||||
<>
|
</form>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function MightCreateBoardFormContents() {
|
||||||
|
return <>
|
||||||
|
<p>
|
||||||
|
Sto verificando se è possibile creare un tabellone privato sul tuo browser...
|
||||||
|
<br/>
|
||||||
|
<small>Attendi un attimo...</small>
|
||||||
|
</p>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
|
||||||
|
function CanCreateBoardFormContents() {
|
||||||
|
return <>
|
||||||
<p>
|
<p>
|
||||||
Crea un nuovo tabellone privato utilizzando un codice segreto autogenerato!
|
Crea un nuovo tabellone privato utilizzando un codice segreto autogenerato!
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -43,7 +73,11 @@ export function CreatePrivateBoardPanel() {
|
||||||
</button>
|
</button>
|
||||||
<span/>
|
<span/>
|
||||||
</label>
|
</label>
|
||||||
</> : <>
|
</>
|
||||||
|
}
|
||||||
|
|
||||||
|
function CannotCreateBoardFormContents() {
|
||||||
|
return <>
|
||||||
<p>
|
<p>
|
||||||
Questa funzionalità non è disponibile al di fuori di contesti sicuri.
|
Questa funzionalità non è disponibile al di fuori di contesti sicuri.
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -51,6 +85,3 @@ export function CreatePrivateBoardPanel() {
|
||||||
</p>
|
</p>
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
</form>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
import {TASK_GROUPERS} from "@/app/board/[board]/doTaskGrouping"
|
import {TASK_GROUPERS} from "@/app/board/[board]/doTaskGrouping"
|
||||||
import {TASK_SORTERS} from "@/app/board/[board]/doTaskSorting"
|
import {TASK_SORTERS} from "@/app/board/[board]/doTaskSorting"
|
||||||
import {BoardAction} from "@/app/board/[board]/Types"
|
import {BoardAction, Task} from "@/app/board/[board]/Types"
|
||||||
import {useBoardWebSocket} from "@/app/board/[board]/useBoardWebSocket"
|
import {useBoardWebSocket} from "@/app/board/[board]/useBoardWebSocket"
|
||||||
import {TaskGroup, useBoardTaskArranger} from "@/app/board/[board]/useBoardTaskArranger"
|
import {TaskGroup, useBoardTaskArranger} from "@/app/board/[board]/useBoardTaskArranger"
|
||||||
import {useBoardTitleEditor} from "@/app/board/[board]/useBoardTitleEditor"
|
import {useBoardTitleEditor} from "@/app/board/[board]/useBoardTitleEditor"
|
||||||
|
@ -11,6 +11,7 @@ import {Dispatch, SetStateAction} from "react"
|
||||||
|
|
||||||
export interface UseBoardReturns {
|
export interface UseBoardReturns {
|
||||||
title: string,
|
title: string,
|
||||||
|
tasksById: {[id: string]: Task},
|
||||||
taskGroups: TaskGroup[],
|
taskGroups: TaskGroup[],
|
||||||
websocketState: number,
|
websocketState: number,
|
||||||
isEditingTitle: boolean,
|
isEditingTitle: boolean,
|
||||||
|
@ -39,6 +40,7 @@ export function useBoard(name: string): UseBoardReturns {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
title,
|
title,
|
||||||
|
tasksById,
|
||||||
taskGroups,
|
taskGroups,
|
||||||
websocketState,
|
websocketState,
|
||||||
isEditingTitle,
|
isEditingTitle,
|
||||||
|
|
Loading…
Reference in a new issue