import type { TemplateResult } from "lit"; import { html } from "lit"; import { customElement } from "lit/decorators.js"; import { UserMeResponse } from "../core/ApiSchemas"; import { Cosmetics } from "../core/CosmeticSchemas"; import { UserSettings } from "../core/game/UserSettings"; import { BaseModal } from "./components/BaseModal"; import "./components/CosmeticButton"; import "./components/CurrencyDisplay"; import "./components/CustomCurrencyCard"; import "./components/EffectsGrid"; import "./components/NotLoggedInWarning"; import { modalHeader } from "./components/ui/ModalHeader"; import { fetchCosmetics, groupCosmeticVariants, purchaseCosmetic, resolveCosmetics, } from "./Cosmetics"; import { translateText } from "./Utils"; type StoreTab = "patterns" | "flags" | "effects" | "packs" | "subscriptions"; @customElement("store-modal") export class StoreModal extends BaseModal { protected routerName = "store"; private cosmetics: Cosmetics | null = null; private affiliateCode: string | null = null; private userMeResponse: UserMeResponse | false = false; protected modalConfig() { if (this.affiliateCode) { // Affiliate mode: hide tabs, show only items associated with the code. return {}; } return { tabs: [ { key: "packs", label: translateText("store.packs") }, { key: "subscriptions", label: translateText("store.subscriptions") }, { key: "patterns", label: translateText("store.patterns") }, { key: "flags", label: translateText("store.flags") }, { key: "effects", label: translateText("store.effects") }, ], }; } connectedCallback() { super.connectedCallback(); document.addEventListener( "userMeResponse", (event: CustomEvent) => { this.onUserMe(event.detail); }, ); } async onUserMe(userMeResponse: UserMeResponse | false) { this.userMeResponse = userMeResponse; this.cosmetics = await fetchCosmetics(); this.refresh(); } private renderHeader(): TemplateResult { const currency = this.userMeResponse === false ? undefined : this.userMeResponse.player.currency; return modalHeader({ title: translateText("store.title"), onBack: () => this.close(), ariaLabel: translateText("common.back"), rightContent: html`
${currency ? html`` : ""}
`, }); } private renderPatternGrid(): TemplateResult { const items = resolveCosmetics( this.cosmetics, this.userMeResponse, this.affiliateCode, ).filter( (r) => (r.type === "pattern" || r.type === "skin") && r.relationship !== "blocked" && r.relationship !== "owned", ); if (items.length === 0) { return html`
${translateText("store.no_skins")}
`; } // Collapse colour-palette variants of the same pattern into one tile; the // variants become clickable colour swatches on the cosmetic-button. return html`
${groupCosmeticVariants(items).map( (group) => html` `, )}
`; } private renderFlagGrid(): TemplateResult { const items = resolveCosmetics( this.cosmetics, this.userMeResponse, this.affiliateCode, ).filter( (r) => r.type === "flag" && r.relationship !== "blocked" && r.relationship !== "owned", ); if (items.length === 0) { return html`
${translateText("store.no_flags")}
`; } const selectedFlag = new UserSettings().getFlag() ?? ""; return html`
${items.map( (r) => html` `, )}
`; } private renderEffectGrid(): TemplateResult { // A sub-tab per effectType (Boat Trail / Nuke Trail); each tab opens that // type's grid. Tabs are always present, even when a type has nothing to buy. return html``; } private renderPackGrid(): TemplateResult { const items = resolveCosmetics( this.cosmetics, this.userMeResponse, this.affiliateCode, ).filter((r) => r.type === "pack" && r.relationship === "purchasable"); // The custom-amount card is always purchasable (priced inline server-side, // no catalog entry), and follows the fixed packs at the end of the grid. return html`
${items.map( (r) => html` `, )}
`; } private renderSubscriptionGrid(): TemplateResult { const items = resolveCosmetics( this.cosmetics, this.userMeResponse, this.affiliateCode, ).filter( (r) => r.type === "subscription" && (r.relationship === "purchasable" || r.relationship === "owned"), ); if (items.length === 0) { return html`
${translateText("store.no_subscriptions")}
`; } const userHasSubscription = this.userMeResponse !== false && this.userMeResponse.player.subscription !== null; return html`
${items.map( (r) => html` `, )}
`; } protected renderHeaderSlot() { return this.renderHeader(); } protected renderBody(key: string): TemplateResult { if (this.affiliateCode) { return this.renderAffiliateGrid(); } switch (key as StoreTab) { case "patterns": return this.renderPatternGrid(); case "flags": return this.renderFlagGrid(); case "effects": return this.renderEffectGrid(); case "subscriptions": return this.renderSubscriptionGrid(); case "packs": default: return this.renderPackGrid(); } } private renderAffiliateGrid(): TemplateResult { const items = resolveCosmetics( this.cosmetics, this.userMeResponse, this.affiliateCode, ).filter( (r) => (r.type === "pattern" || r.type === "skin" || r.type === "flag" || r.type === "effect" || r.type === "pack") && r.relationship === "purchasable", ); if (items.length === 0) { return html`
${translateText("store.no_skins")}
`; } return html`
${groupCosmeticVariants(items).map( (group) => html` `, )}
`; } protected async onOpen(args?: Record) { const affiliate = typeof args?.affiliateCode === "string" ? args.affiliateCode : null; this.affiliateCode = affiliate; this.cosmetics ??= await fetchCosmetics(); await this.refresh(); } protected onClose(): void { this.affiliateCode = null; } public async refresh() { this.requestUpdate(); } }