mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-23 16:15:10 +00:00
## Description: seperates the stats modal into a dedicated path, with gameID support e.g. : #modal=stats&gameID=VvyXpL9x ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory ## Please put your Discord username so you can be contacted if a bug or regression is found: w.o.n
268 lines
7.7 KiB
TypeScript
268 lines
7.7 KiB
TypeScript
import {
|
|
afterAll,
|
|
afterEach,
|
|
beforeAll,
|
|
beforeEach,
|
|
describe,
|
|
expect,
|
|
it,
|
|
vi,
|
|
} from "vitest";
|
|
|
|
vi.mock("../../src/client/Api", () => ({
|
|
fetchPlayerById: vi.fn(async () => ({ stats: {} })),
|
|
fetchPublicPlayerGames: vi.fn(async () => ({
|
|
results: [
|
|
{
|
|
gameId: "game-1",
|
|
start: "2026-07-01T12:00:00.000Z",
|
|
durationSeconds: 600,
|
|
map: "World",
|
|
mode: "FFA",
|
|
type: "public",
|
|
playerTeams: null,
|
|
rankedType: "",
|
|
result: "victory",
|
|
totalPlayers: 8,
|
|
username: "Player",
|
|
clanTag: null,
|
|
},
|
|
],
|
|
nextCursor: null,
|
|
})),
|
|
getUserMe: vi.fn(async () => ({
|
|
user: { email: "player@example.com" },
|
|
player: {
|
|
publicId: "player-1",
|
|
friends: [],
|
|
rewards: [],
|
|
clans: [],
|
|
clanRequests: [],
|
|
},
|
|
})),
|
|
invalidateUserMe: vi.fn(),
|
|
setMarketingConsent: vi.fn(async () => true),
|
|
}));
|
|
|
|
vi.mock("../../src/client/Auth", () => ({
|
|
discordLogin: vi.fn(),
|
|
googleLogin: vi.fn(),
|
|
linkGoogle: vi.fn(),
|
|
logOut: vi.fn(),
|
|
reauthAfterCrazyGamesChange: vi.fn(),
|
|
sendMagicLink: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("../../src/client/Cosmetics", () => ({
|
|
fetchCosmetics: vi.fn(async () => null),
|
|
}));
|
|
|
|
vi.mock("../../src/client/CrazyGamesSDK", () => ({
|
|
crazyGamesSDK: {
|
|
getUserProfile: vi.fn(async () => null),
|
|
isOnCrazyGames: vi.fn(() => false),
|
|
},
|
|
}));
|
|
|
|
vi.mock("src/client/ClientEnv", () => ({
|
|
ClientEnv: { workerPath: vi.fn(() => "w0") },
|
|
}));
|
|
|
|
vi.mock("../../src/client/TerrainMapFileLoader", () => ({
|
|
terrainMapFileLoader: {
|
|
getMapData: vi.fn(() => ({ webpPath: "/maps/world.webp" })),
|
|
},
|
|
}));
|
|
|
|
vi.mock("../../src/client/Utils", () => ({
|
|
getMapName: vi.fn((name: string) => name),
|
|
renderDuration: vi.fn((seconds: number) => `${seconds}s`),
|
|
translateText: vi.fn((key: string) => key),
|
|
}));
|
|
|
|
vi.mock("../../src/client/components/baseComponents/stats/GameInfoView", () => {
|
|
class FakeGameInfoView extends HTMLElement {}
|
|
if (!customElements.get("game-info-view")) {
|
|
customElements.define("game-info-view", FakeGameInfoView);
|
|
}
|
|
return { GameInfoView: FakeGameInfoView };
|
|
});
|
|
|
|
vi.mock(
|
|
"../../src/client/components/baseComponents/stats/DiscordUserHeader",
|
|
() => ({}),
|
|
);
|
|
vi.mock(
|
|
"../../src/client/components/baseComponents/stats/PlayerStatsTable",
|
|
() => ({}),
|
|
);
|
|
vi.mock(
|
|
"../../src/client/components/baseComponents/stats/PlayerStatsTree",
|
|
() => ({}),
|
|
);
|
|
vi.mock("../../src/client/components/CopyButton", () => ({}));
|
|
vi.mock("../../src/client/components/CurrencyDisplay", () => ({}));
|
|
vi.mock("../../src/client/components/Difficulties", () => ({}));
|
|
vi.mock("../../src/client/components/FriendsList", () => ({}));
|
|
vi.mock("../../src/client/components/RewardsPanel", () => ({}));
|
|
vi.mock("../../src/client/components/SubscriptionPanel", () => ({}));
|
|
|
|
class FakeIntersectionObserver {
|
|
constructor(_callback: IntersectionObserverCallback) {}
|
|
observe() {}
|
|
disconnect() {}
|
|
unobserve() {}
|
|
takeRecords() {
|
|
return [];
|
|
}
|
|
root = null;
|
|
rootMargin = "";
|
|
thresholds = [];
|
|
}
|
|
vi.stubGlobal("IntersectionObserver", FakeIntersectionObserver);
|
|
|
|
import { AccountModal } from "../../src/client/AccountModal";
|
|
import { fetchPublicPlayerGames } from "../../src/client/Api";
|
|
import { GameStatsModal } from "../../src/client/GameStatsModal";
|
|
import { modalRouter } from "../../src/client/ModalRouter";
|
|
import { initNavigation } from "../../src/client/Navigation";
|
|
|
|
type ModalShell = HTMLElement & {
|
|
getScrollTop(): number;
|
|
setScrollTop(value: number): void;
|
|
updateComplete: Promise<boolean>;
|
|
};
|
|
|
|
async function waitForModal(
|
|
modal: AccountModal,
|
|
assertion: () => void,
|
|
): Promise<void> {
|
|
await vi.waitFor(async () => {
|
|
await modal.updateComplete;
|
|
const shell = modal.querySelector("o-modal") as ModalShell | null;
|
|
await shell?.updateComplete;
|
|
const history = modal.querySelector("player-game-history-view") as
|
|
| (HTMLElement & { updateComplete: Promise<boolean> })
|
|
| null;
|
|
await history?.updateComplete;
|
|
assertion();
|
|
});
|
|
}
|
|
|
|
async function waitForStatsModal(
|
|
modal: GameStatsModal,
|
|
assertion: () => void,
|
|
): Promise<void> {
|
|
await vi.waitFor(async () => {
|
|
await modal.updateComplete;
|
|
const shell = modal.querySelector("o-modal") as ModalShell | null;
|
|
await shell?.updateComplete;
|
|
assertion();
|
|
});
|
|
}
|
|
|
|
describe("Account Games stats navigation", () => {
|
|
let modal: AccountModal;
|
|
let statsModal: GameStatsModal;
|
|
let playPage: HTMLElement;
|
|
|
|
beforeAll(() => {
|
|
playPage = document.createElement("div");
|
|
playPage.id = "page-play";
|
|
document.body.appendChild(playPage);
|
|
initNavigation();
|
|
});
|
|
|
|
afterAll(() => {
|
|
playPage.remove();
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
vi.clearAllMocks();
|
|
history.replaceState(null, "", "/");
|
|
modalRouter.register("account", {
|
|
tag: "account-modal",
|
|
pageId: "page-account",
|
|
});
|
|
modalRouter.register("stats", {
|
|
tag: "game-stats-modal",
|
|
pageId: "page-stats",
|
|
});
|
|
if (!customElements.get("account-modal")) {
|
|
customElements.define("account-modal", AccountModal);
|
|
}
|
|
if (!customElements.get("game-stats-modal")) {
|
|
customElements.define("game-stats-modal", GameStatsModal);
|
|
}
|
|
modal = document.createElement("account-modal") as AccountModal;
|
|
modal.id = "page-account";
|
|
modal.setAttribute("inline", "");
|
|
modal.className = "hidden page-content";
|
|
document.body.appendChild(modal);
|
|
|
|
statsModal = document.createElement("game-stats-modal") as GameStatsModal;
|
|
statsModal.id = "page-stats";
|
|
statsModal.setAttribute("inline", "");
|
|
statsModal.className = "hidden page-content";
|
|
document.body.appendChild(statsModal);
|
|
|
|
await modal.updateComplete;
|
|
await statsModal.updateComplete;
|
|
window.showPage?.("page-account");
|
|
await waitForModal(modal, () => {
|
|
const shell = modal.querySelector("o-modal") as ModalShell;
|
|
expect(shell.shadowRoot?.textContent).toContain(
|
|
"account_modal.tab_games",
|
|
);
|
|
});
|
|
modal.setActiveTab("games");
|
|
await waitForModal(modal, () => {
|
|
expect(modal.querySelector("player-game-history-view")).not.toBeNull();
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
window.showPage?.("page-play");
|
|
modal.remove();
|
|
statsModal.remove();
|
|
history.replaceState(null, "", "/");
|
|
});
|
|
|
|
it("drills into Stats and returns to the cached Games scroll position", async () => {
|
|
const shell = modal.querySelector("o-modal") as ModalShell;
|
|
shell.setScrollTop(420);
|
|
|
|
const statsButton = Array.from(modal.querySelectorAll("button")).find(
|
|
(button) => button.textContent?.trim() === "game_list.stats",
|
|
);
|
|
expect(statsButton).toBeTruthy();
|
|
statsButton!.click();
|
|
await waitForStatsModal(statsModal, () => {
|
|
expect(statsModal.isOpen()).toBe(true);
|
|
expect(statsModal.querySelector("game-info-view")).not.toBeNull();
|
|
});
|
|
|
|
expect(modal.isOpen()).toBe(false);
|
|
expect(statsModal.textContent).toContain("game_list.stats");
|
|
const statsView = statsModal.querySelector(
|
|
"game-info-view",
|
|
) as HTMLElement & { gameId: string };
|
|
expect(statsView.gameId).toBe("game-1");
|
|
const statsShell = statsModal.querySelector("o-modal") as ModalShell;
|
|
expect(statsShell.shadowRoot?.querySelector('[role="tablist"]')).toBeNull();
|
|
expect(window.location.hash).toBe("#modal=stats&gameID=game-1");
|
|
|
|
const backButton = statsModal.querySelector(
|
|
'[slot="header"] button',
|
|
) as HTMLButtonElement;
|
|
backButton.click();
|
|
await waitForModal(modal, () => {
|
|
expect(modal.querySelector("player-game-history-view")).not.toBeNull();
|
|
expect(shell.getScrollTop()).toBe(420);
|
|
});
|
|
expect(window.location.hash).toBe("#modal=account&tab=games");
|
|
|
|
expect(fetchPublicPlayerGames).toHaveBeenCalledOnce();
|
|
});
|
|
});
|