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.
364 lines
12 KiB
364 lines
12 KiB
import {
|
|
CSSProperties,
|
|
Dispatch,
|
|
SetStateAction,
|
|
useCallback,
|
|
useRef,
|
|
useState,
|
|
} from "react"
|
|
import "../style/editor.css"
|
|
import TitleInput from "../components/TitleInput"
|
|
import { BasketCourt } from "../components/editor/BasketCourt"
|
|
|
|
import plainCourt from "../assets/court/full_court.svg"
|
|
import halfCourt from "../assets/court/half_court.svg"
|
|
|
|
import { Rack } from "../components/Rack"
|
|
import { PlayerPiece } from "../components/editor/PlayerPiece"
|
|
|
|
import { BallPiece } from "../components/editor/BallPiece"
|
|
import { Player } from "../tactic/Player"
|
|
import { Tactic, TacticContent } from "../tactic/Tactic"
|
|
import { fetchAPI } from "../Fetcher"
|
|
import { Team } from "../tactic/Team"
|
|
import { calculateRatio } from "../Utils"
|
|
import SavingState, {
|
|
SaveState,
|
|
SaveStates,
|
|
} from "../components/editor/SavingState"
|
|
import * as Console from "console";
|
|
|
|
const ERROR_STYLE: CSSProperties = {
|
|
borderColor: "red",
|
|
}
|
|
|
|
const GUEST_MODE_CONTENT_STORAGE_KEY = "guest_mode_content"
|
|
const GUEST_MODE_TITLE_STORAGE_KEY = "guest_mode_title"
|
|
|
|
export interface EditorViewProps {
|
|
tactic: Tactic
|
|
onContentChange: (tactic: TacticContent) => Promise<SaveState>
|
|
onNameChange: (name: string) => Promise<boolean>
|
|
courtType: "PLAIN" | "HALF"
|
|
}
|
|
|
|
export interface EditorProps {
|
|
id: number
|
|
name: string
|
|
content: string
|
|
courtType: "PLAIN" | "HALF"
|
|
}
|
|
|
|
/**
|
|
* information about a player that is into a rack
|
|
*/
|
|
interface RackedPlayer {
|
|
team: Team
|
|
key: string
|
|
}
|
|
|
|
export default function Editor({ id, name, courtType, content }: EditorProps) {
|
|
const isInGuestMode = id == -1
|
|
|
|
const storage_content = localStorage.getItem(GUEST_MODE_CONTENT_STORAGE_KEY)
|
|
const editorContent =
|
|
isInGuestMode && storage_content != null ? storage_content : content
|
|
|
|
const storage_name = localStorage.getItem(GUEST_MODE_TITLE_STORAGE_KEY)
|
|
const editorName =
|
|
isInGuestMode && storage_name != null ? storage_name : name
|
|
|
|
return (
|
|
<EditorView
|
|
tactic={{
|
|
name: editorName,
|
|
id,
|
|
content: JSON.parse(editorContent),
|
|
}}
|
|
onContentChange={async (content: TacticContent) => {
|
|
if (isInGuestMode) {
|
|
localStorage.setItem(
|
|
GUEST_MODE_CONTENT_STORAGE_KEY,
|
|
JSON.stringify(content),
|
|
)
|
|
return SaveStates.Guest
|
|
}
|
|
return fetchAPI(`tactic/${id}/save`, { content }).then((r) =>
|
|
r.ok ? SaveStates.Ok : SaveStates.Err,
|
|
)
|
|
}}
|
|
onNameChange={async (name: string) => {
|
|
if (isInGuestMode) {
|
|
localStorage.setItem(GUEST_MODE_TITLE_STORAGE_KEY, name)
|
|
return true //simulate that the name has been changed
|
|
}
|
|
return fetchAPI(`tactic/${id}/edit/name`, { name }).then(
|
|
(r) => r.ok,
|
|
)
|
|
}}
|
|
courtType={courtType}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function EditorView({
|
|
tactic: { id, name, content: initialContent },
|
|
onContentChange,
|
|
onNameChange,
|
|
courtType,
|
|
}: EditorViewProps) {
|
|
const isInGuestMode = id == -1
|
|
|
|
const [titleStyle, setTitleStyle] = useState<CSSProperties>({})
|
|
const [content, setContent, saveState] = useContentState(
|
|
initialContent,
|
|
isInGuestMode ? SaveStates.Guest : SaveStates.Ok,
|
|
onContentChange,
|
|
)
|
|
|
|
const [allies, setAllies] = useState(
|
|
getRackPlayers(Team.Allies, content.players),
|
|
)
|
|
const [opponents, setOpponents] = useState(
|
|
getRackPlayers(Team.Opponents, content.players),
|
|
)
|
|
|
|
const [showBall, setShowBall] = useState(
|
|
content.players.find((p) => p.hasBall) == undefined,
|
|
)
|
|
|
|
const ballPiece = useRef<HTMLDivElement>(null)
|
|
|
|
const courtDivContentRef = useRef<HTMLDivElement>(null)
|
|
|
|
const canDetach = (ref: HTMLDivElement) => {
|
|
const refBounds = ref.getBoundingClientRect()
|
|
const courtBounds = courtDivContentRef.current!.getBoundingClientRect()
|
|
|
|
// check if refBounds overlaps courtBounds
|
|
return !(
|
|
refBounds.top > courtBounds.bottom ||
|
|
refBounds.right < courtBounds.left ||
|
|
refBounds.bottom < courtBounds.top ||
|
|
refBounds.left > courtBounds.right
|
|
)
|
|
}
|
|
|
|
const onPieceDetach = (ref: HTMLDivElement, element: RackedPlayer) => {
|
|
const refBounds = ref.getBoundingClientRect()
|
|
const courtBounds = courtDivContentRef.current!.getBoundingClientRect()
|
|
|
|
const { x, y } = calculateRatio(refBounds, courtBounds)
|
|
|
|
setContent((content) => {
|
|
return {
|
|
players: [
|
|
...content.players,
|
|
{
|
|
id: "player-" + content.players.length,
|
|
team: element.team,
|
|
role: element.key,
|
|
rightRatio: x,
|
|
bottomRatio: y,
|
|
hasBall: false,
|
|
},
|
|
],
|
|
}
|
|
})
|
|
}
|
|
|
|
const onBallDrop = (ref: HTMLDivElement) => {
|
|
const ballBounds = ref.getBoundingClientRect()
|
|
let ballAssigned = false
|
|
|
|
setContent((content) => {
|
|
const players = content.players.map((player) => {
|
|
if (ballAssigned) {
|
|
return { ...player, hasBall: false }
|
|
}
|
|
const playerBounds = document
|
|
.getElementById(player.id)!
|
|
.getBoundingClientRect()
|
|
const doesOverlap = !(
|
|
ballBounds.top > playerBounds.bottom ||
|
|
ballBounds.right < playerBounds.left ||
|
|
ballBounds.bottom < playerBounds.top ||
|
|
ballBounds.left > playerBounds.right
|
|
)
|
|
if (doesOverlap) {
|
|
ballAssigned = true
|
|
}
|
|
return { ...player, hasBall: doesOverlap }
|
|
})
|
|
setShowBall(!ballAssigned)
|
|
return { players: players }
|
|
})
|
|
}
|
|
|
|
return (
|
|
<div id="main-div">
|
|
<div id="topbar-div">
|
|
<div id="topbar-left">
|
|
|
|
<SavingState state={saveState} />
|
|
</div>
|
|
<div id="title-input-div">
|
|
<TitleInput
|
|
style={titleStyle}
|
|
default_value={name}
|
|
on_validated={(new_name) => {
|
|
onNameChange(new_name).then((success) => {
|
|
setTitleStyle(success ? {} : ERROR_STYLE)
|
|
})
|
|
}}
|
|
/>
|
|
</div>
|
|
<div id="topbar-right"></div>
|
|
</div>
|
|
<div id="edit-div">
|
|
<div id="racks">
|
|
<Rack
|
|
id="allies-rack"
|
|
objects={allies}
|
|
onChange={setAllies}
|
|
canDetach={canDetach}
|
|
onElementDetached={onPieceDetach}
|
|
render={({ team, key }) => (
|
|
<PlayerPiece
|
|
team={team}
|
|
text={key}
|
|
key={key}
|
|
hasBall={false}
|
|
/>
|
|
)}
|
|
/>
|
|
|
|
{showBall && (
|
|
<BallPiece
|
|
onDrop={() => onBallDrop(ballPiece.current!)}
|
|
pieceRef={ballPiece}
|
|
/>
|
|
)}
|
|
|
|
<Rack
|
|
id="opponent-rack"
|
|
objects={opponents}
|
|
onChange={setOpponents}
|
|
canDetach={canDetach}
|
|
onElementDetached={onPieceDetach}
|
|
render={({ team, key }) => (
|
|
<PlayerPiece
|
|
team={team}
|
|
text={key}
|
|
key={key}
|
|
hasBall={false}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
<div id="court-div">
|
|
<div id="court-div-bounds">
|
|
<BasketCourt
|
|
players={content.players}
|
|
onBallDrop={onBallDrop}
|
|
courtImage={
|
|
courtType == "PLAIN" ? plainCourt : halfCourt
|
|
}
|
|
courtRef={courtDivContentRef}
|
|
onPlayerChange={(player) => {
|
|
setContent((content) => ({
|
|
players: toSplicedPlayers(
|
|
content.players,
|
|
player,
|
|
true,
|
|
),
|
|
}))
|
|
}}
|
|
onPlayerRemove={(player) => {
|
|
setContent((content) => ({
|
|
players: toSplicedPlayers(
|
|
content.players,
|
|
player,
|
|
false,
|
|
),
|
|
}))
|
|
let setter
|
|
switch (player.team) {
|
|
case Team.Opponents:
|
|
setter = setOpponents
|
|
break
|
|
case Team.Allies:
|
|
setter = setAllies
|
|
}
|
|
if (player.hasBall) {
|
|
setShowBall(true)
|
|
}
|
|
setter((players) => [
|
|
...players,
|
|
{
|
|
team: player.team,
|
|
pos: player.role,
|
|
key: player.role,
|
|
},
|
|
])
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function getRackPlayers(team: Team, players: Player[]): RackedPlayer[] {
|
|
return ["1", "2", "3", "4", "5"]
|
|
.filter(
|
|
(role) =>
|
|
players.findIndex((p) => p.team == team && p.role == role) ==
|
|
-1,
|
|
)
|
|
.map((key) => ({ team, key }))
|
|
}
|
|
|
|
function useContentState<S>(
|
|
initialContent: S,
|
|
initialSaveState: SaveState,
|
|
saveStateCallback: (s: S) => Promise<SaveState>,
|
|
): [S, Dispatch<SetStateAction<S>>, SaveState] {
|
|
const [content, setContent] = useState(initialContent)
|
|
const [savingState, setSavingState] = useState(initialSaveState)
|
|
|
|
const setContentSynced = useCallback(
|
|
(newState: SetStateAction<S>) => {
|
|
setContent((content) => {
|
|
const state =
|
|
typeof newState === "function"
|
|
? (newState as (state: S) => S)(content)
|
|
: newState
|
|
if (state !== content) {
|
|
setSavingState(SaveStates.Saving)
|
|
saveStateCallback(state)
|
|
.then(setSavingState)
|
|
.catch(() => setSavingState(SaveStates.Err))
|
|
}
|
|
return state
|
|
})
|
|
},
|
|
[saveStateCallback],
|
|
)
|
|
|
|
return [content, setContentSynced, savingState]
|
|
}
|
|
|
|
function toSplicedPlayers(
|
|
players: Player[],
|
|
player: Player,
|
|
replace: boolean,
|
|
): Player[] {
|
|
const idx = players.findIndex(
|
|
(p) => p.team === player.team && p.role === player.role,
|
|
)
|
|
|
|
return players.toSpliced(idx, 1, ...(replace ? [player] : []))
|
|
}
|