cohost/html/hotline-miami.tsx

89 lines
2.8 KiB
TypeScript
Raw Normal View History

2023-07-16 00:36:39 -04:00
import {
EggbugImg,
Main,
mk_class_wrapper,
render_and_copy,
} from "./common.tsx";
2023-07-14 13:37:54 -04:00
import { ComponentChildren, JSX, toChildArray } from "preact";
2023-07-15 22:53:32 -04:00
const Pulse = ({ children }: { children: ComponentChildren }) => (
2023-07-14 13:37:54 -04:00
<div class="pulse">
<div class="pulse-bottom">{...toChildArray(children)}</div>
2023-07-15 14:51:17 -04:00
<div class="pulse-top">{...toChildArray(children)}</div>
</div>
);
const Portrait = ({ href, alt }: { href: string; alt: string }) => (
<img class="portrait" href={href} alt={alt} />
);
2023-07-16 00:36:39 -04:00
const Wiggle = mk_class_wrapper("wiggle");
2023-07-15 22:53:32 -04:00
2023-07-15 14:51:17 -04:00
const PortraitFrame = ({ children }: { children: ComponentChildren }) => (
<div class="portrait-frame">
2023-07-15 22:53:32 -04:00
<div class="portrait-frame-inner"></div>
<Wiggle>{children}</Wiggle>
2023-07-14 13:37:54 -04:00
</div>
);
2023-07-16 00:36:39 -04:00
const Frame = ({
tooltip = "PRESS [RMB] TO OPEN BROWSER CONTEXT MENU",
game = <></>,
portrait = <EggbugImg type="smiling" />,
dialogue = "",
children,
}: {
tooltip?: string;
game?: JSX.Element;
portrait?: JSX.Element;
dialogue?: string;
children?: ComponentChildren;
}) =>
children ? (
<details class="frame">
<summary class="frame">
<div class="top">{tooltip}</div>
<div class="middle">
<div class="game">{game}</div>
<PortraitFrame>{portrait}</PortraitFrame>
</div>
<div class="bottom">
<Pulse>{dialogue}</Pulse>
</div>
</summary>
<div class="next-frame">{...toChildArray(children)}</div>
</details>
) : (
<div class="frame">
<div class="top">{tooltip}</div>
<div class="middle">
<div class="game">{game}</div>
<PortraitFrame>{portrait}</PortraitFrame>
</div>
<div class="bottom">
<Pulse>{dialogue}</Pulse>
</div>
</div>
);
2023-07-14 13:37:54 -04:00
// score wiggles faster the more points you get but resets
// there is a canonicl speed for like "go to car"
// could also do bigger ui elements
// but those might depend more on font
// dialogue is also consistent
// but i'm kind of sick of dialogue
// can also recreate the portrait background
// trying to only change the text color may be a dead end :(
// i'll probably go for a different ui element
render_and_copy(
<Main>
2023-07-16 00:36:39 -04:00
<Frame dialogue="homestuck is a webcomic by andrew hussie">
<Frame dialogue="it features a large cast of characters">
2023-07-16 00:39:28 -04:00
<Frame dialogue="rick roll in tooltip" tooltip="rick roll">
<Frame dialogue=" multiline text multiline text multiline text multiline text multiline text" />{" "}
</Frame>
2023-07-16 00:36:39 -04:00
</Frame>
</Frame>
2023-07-14 13:37:54 -04:00
</Main>
);