refactor(members): migrate members/index to PageShell

Wrap members directory page in PageShell. Also expand visual mask
selectors to cover .filter-bar, .skills-bar, and .connections-section
because filter content varies based on dynamic tag/topic state and
async fetch ordering. Rebaselines several existing snapshots that now
mask wider regions but capture the same structural layout.
This commit is contained in:
Jennie Robinson Faber 2026-04-08 16:38:34 +01:00
parent 657bc23404
commit 89c9a5e4a2
9 changed files with 11 additions and 8 deletions

View file

@ -1,11 +1,8 @@
<template> <template>
<div class="members-page"> <PageShell
<!-- Page Header -->
<PageHeader
title="Members" title="Members"
:subtitle="`${totalCount} member${totalCount === 1 ? '' : 's'} across 3 circles`" :subtitle="`${totalCount} member${totalCount === 1 ? '' : 's'} across 3 circles`"
/> >
<!-- Filter Bar --> <!-- Filter Bar -->
<div class="filter-bar"> <div class="filter-bar">
<input <input
@ -264,7 +261,7 @@
<NuxtLink to="/join" class="btn btn-primary">Join Ghost Guild</NuxtLink> <NuxtLink to="/join" class="btn btn-primary">Join Ghost Guild</NuxtLink>
</div> </div>
</div> </div>
</div> </PageShell>
</template> </template>
<script setup> <script setup>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 293 KiB

After

Width:  |  Height:  |  Size: 279 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 KiB

After

Width:  |  Height:  |  Size: 160 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 249 KiB

After

Width:  |  Height:  |  Size: 236 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 KiB

After

Width:  |  Height:  |  Size: 121 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 KiB

After

Width:  |  Height:  |  Size: 203 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Before After
Before After

View file

@ -72,6 +72,12 @@ function commonMasks(page) {
page.locator('.profile-avatar'), page.locator('.profile-avatar'),
// Member count text in members page filter bar // Member count text in members page filter bar
page.locator('.filter-count'), page.locator('.filter-count'),
// Connections page: filter bar and suggestions vary based on tag/topic
// state and async fetch ordering. Mask them to keep the structural
// (PageShell + page-level) regression coverage stable.
page.locator('.filter-bar'),
page.locator('.skills-bar'),
page.locator('.connections-section'),
] ]
} }