Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
065a879190 | ||
|
|
89882b4863 | ||
|
|
18a08daa91 | ||
|
|
aa59773d22 |
@@ -3506,3 +3506,31 @@ under a name the reader does not look at is indistinguishable from one
|
|||||||
never written. So the tests assert the round trip through
|
never written. So the tests assert the round trip through
|
||||||
`metadata.ExtractTags` — the reader the *scan* uses — rather than
|
`metadata.ExtractTags` — the reader the *scan* uses — rather than
|
||||||
through the bytes the writer produced.
|
through the bytes the writer produced.
|
||||||
|
|
||||||
|
## The published catalog artifact predates `total_tracks` (measured 2026-08-18)
|
||||||
|
|
||||||
|
```
|
||||||
|
$ curl -sSI .../generic/yellowjacket-core-index/latest/core-index.db.zst
|
||||||
|
last-modified: Mon, 10 Aug 2026 04:38:16 GMT
|
||||||
|
content-length: 75417037
|
||||||
|
|
||||||
|
$ sqlite3 core-index.db \
|
||||||
|
"SELECT COUNT(*) FROM pragma_table_info('explore_index') WHERE name='total_tracks';"
|
||||||
|
0
|
||||||
|
$ sqlite3 core-index.db "SELECT COUNT(*) FROM explore_index;"
|
||||||
|
1079667
|
||||||
|
```
|
||||||
|
|
||||||
|
The column landed in the schema on 2026-08-16; the artifact is from
|
||||||
|
08-10, and `index-artifact.yml` is a weekly cron, not a push trigger.
|
||||||
|
So `completenessAnswer()`'s catalog fallback answers 0 for **every**
|
||||||
|
user today — the machinery is correct and `artifactHasTotals()` is
|
||||||
|
doing precisely its job, there is just no data behind it. Same position
|
||||||
|
the credit tables are in; both ride on the next publish (#88).
|
||||||
|
|
||||||
|
The general point, which is why this is written down rather than just
|
||||||
|
fixed: **a probe that makes a column optional also makes its absence
|
||||||
|
silent.** `artifactHasTotals` and `artifactHasCredits` are both correct
|
||||||
|
and both mean a feature can ship, pass every test, and produce nothing
|
||||||
|
for anybody without a single failure anywhere. Checking the *published
|
||||||
|
file* is one query and is not implied by any tick in CI.
|
||||||
|
|||||||
@@ -1448,6 +1448,52 @@ is therefore **reported at runtime** to `window.__yjIconMisses` and
|
|||||||
drawn as a fallback — an e2e sweep asserts there are none — since a
|
drawn as a fallback — an e2e sweep asserts there are none — since a
|
||||||
missing icon used to be impossible, the CDN having had everything.
|
missing icon used to be impossible, the CDN having had everything.
|
||||||
|
|
||||||
|
**What each icon *means* is a second table, and it is
|
||||||
|
`utils/icon-language.ts`.** Bundling answers "does this name resolve";
|
||||||
|
nothing answered "does this name mean what the one next to it means",
|
||||||
|
and a wrong-but-real icon renders perfectly. So `plus` came to mean add
|
||||||
|
to the queue, add to a playlist, make a new playlist **and** you do not
|
||||||
|
own this — the first two *adjacent in the same context menu* — while
|
||||||
|
`list` meant the queue, the Playlists destination and adding to the
|
||||||
|
queue.
|
||||||
|
|
||||||
|
The rule the table is built on: **an icon names the noun it acts on,
|
||||||
|
not the verb.** "Add to queue" and "add to playlist" are one verb on
|
||||||
|
two nouns, so the noun is what has to differ — which is why adding to a
|
||||||
|
playlist wears the Playlists destination's own icon, and why the queue
|
||||||
|
got `bars-staggered` and stopped wearing Playlists'. `plus` keeps the
|
||||||
|
one meaning it is unambiguous about, making something that is not there
|
||||||
|
yet.
|
||||||
|
|
||||||
|
Four things about it are load-bearing:
|
||||||
|
|
||||||
|
- **The request toggle is one glyph in two weights**
|
||||||
|
(`regular/bookmark` → `solid/bookmark`), because two states of a
|
||||||
|
toggle have to read as each other's opposite and a plus against a
|
||||||
|
bookmark does not. The pair was *already in the app and already
|
||||||
|
right* on `explore-album-details`'s "Request this" button while the
|
||||||
|
badge forty pixels away showed a plus — `utils/library-status.ts`'s
|
||||||
|
fault one layer down, having made the two agree on what wanting means
|
||||||
|
and left them disagreeing on what it looks like.
|
||||||
|
- **Downloads keeps the solid bookmark, deliberately.** That is the
|
||||||
|
same word twice, not two words: the badge says "this is on your
|
||||||
|
list" and the nav item is that list.
|
||||||
|
- **`icon-language.test.ts` sweeps the source**, because the rule is
|
||||||
|
about every call site and checking one checks nothing — the same
|
||||||
|
shape as `TestNoDirectRuntimeEmits`. It reads every `src/**/*.ts` as
|
||||||
|
raw text and fails on a literal `name="plus"` or `icon: 'list'`
|
||||||
|
outside the table, and its **first assertion is that it read
|
||||||
|
anything at all**, since a sweep over an empty glob passes.
|
||||||
|
- **It also asserts every `ICON_*` is bundled**, which closes the loop
|
||||||
|
the runtime cannot: `bookmark-check` is Font Awesome **Pro** and sat
|
||||||
|
on `explore-artist-details`'s Follow button, drawn for every followed
|
||||||
|
artist as a circled question mark. `offline-icons.spec.ts` sweeps
|
||||||
|
`__yjIconMisses` and could not see it, because no spec had ever
|
||||||
|
followed an artist — the same fault `requested-badge.spec.ts` was
|
||||||
|
written for, one component over, still live. A name computed from
|
||||||
|
state was only checkable from the state; now it is checkable from the
|
||||||
|
table.
|
||||||
|
|
||||||
**An album page says how much of the album is yours.**
|
**An album page says how much of the album is yours.**
|
||||||
`explore-album-details` is a *catalog* page and there is no
|
`explore-album-details` is a *catalog* page and there is no
|
||||||
library-side album detail page at all, so the album on it may be
|
library-side album detail page at all, so the album on it may be
|
||||||
@@ -1623,6 +1669,32 @@ side-effect worth knowing: this is what finally makes `ownership()`
|
|||||||
say something true here, since counting the displayed tracklist of a
|
say something true here, since counting the displayed tracklist of a
|
||||||
library-only entry could only ever produce "9 of 9".
|
library-only entry could only ever produce "9 of 9".
|
||||||
|
|
||||||
|
**And it can be asked, because the rule alone reaches too few albums.**
|
||||||
|
That guard depends on two inputs the user does not control: the files
|
||||||
|
declaring a per-disc total, and the catalog's own `total_tracks`. Where
|
||||||
|
neither says — which is a great deal of any library, and *every* library
|
||||||
|
until an artifact carrying the column is published — a partly-owned
|
||||||
|
album showed only the tracks on disk with nothing to say the rest
|
||||||
|
existed. `renderTracklistScope()` is the explicit route: a
|
||||||
|
"Show the whole album" switch that flips the synthetic "Your Library"
|
||||||
|
entry between the local files and the release, which is the rendering
|
||||||
|
the page could already do and could only be *triggered* automatically.
|
||||||
|
|
||||||
|
Three things about it are load-bearing. **`showFullTracklist` is a
|
||||||
|
tri-state**, `null` meaning "follow the automatic rule": the rule is
|
||||||
|
right when it fires and the switch has to be able to agree with the page
|
||||||
|
it sits on rather than starting out contradicting it, which a plain
|
||||||
|
boolean would need recomputed every time the completeness answer moved
|
||||||
|
underneath it. **`fullReleaseCluster()` falls back to the
|
||||||
|
highest-scoring cluster**, because `findLibraryCluster` is a guess over
|
||||||
|
the `inLibrary` flags and returns *nothing* when none are set — which is
|
||||||
|
exactly the untagged library the switch exists for, so without the
|
||||||
|
fallback the control would be absent precisely where it is needed. And
|
||||||
|
**it is shown only where it can change what is on screen**: against the
|
||||||
|
library entry, with a release to switch to, and only when the two
|
||||||
|
tracklists differ — the same test the version dropdown answers, one
|
||||||
|
control over.
|
||||||
|
|
||||||
**A dropdown is only a choice if the choices differ.** The version
|
**A dropdown is only a choice if the choices differ.** The version
|
||||||
selector tested `versionEntries.length`, but a release group routinely
|
selector tested `versionEntries.length`, but a release group routinely
|
||||||
has several releases — reissues, regional pressings, a remaster — whose
|
has several releases — reissues, regional pressings, a remaster — whose
|
||||||
|
|||||||
+4
-1
@@ -39,7 +39,10 @@
|
|||||||
<audio-player></audio-player>
|
<audio-player></audio-player>
|
||||||
<button aria-label="Toggle queue" aria-controls="queue-panel" aria-expanded="false"
|
<button aria-label="Toggle queue" aria-controls="queue-panel" aria-expanded="false"
|
||||||
id="queue-button">
|
id="queue-button">
|
||||||
<wa-icon name="list"></wa-icon>
|
<!-- ICON_QUEUE in src/utils/icon-language.ts, written out
|
||||||
|
because this file has no module scope. It was `list`,
|
||||||
|
which is the Playlists destination's icon. -->
|
||||||
|
<wa-icon name="bars-staggered"></wa-icon>
|
||||||
</button>
|
</button>
|
||||||
</footer>
|
</footer>
|
||||||
<!-- The phone's primary navigation, hidden above 600px by
|
<!-- The phone's primary navigation, hidden above 600px by
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 7.3.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2026 Fonticons, Inc. --><path fill="currentColor" d="M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L96 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"/></svg>
|
||||||
|
After Width: | Height: | Size: 609 B |
@@ -37,6 +37,10 @@ import type WaPopup from '@awesome.me/webawesome/dist/components/popup/popup.js'
|
|||||||
import '@awesome.me/webawesome/dist/components/dropdown-item/dropdown-item.js';
|
import '@awesome.me/webawesome/dist/components/dropdown-item/dropdown-item.js';
|
||||||
import '@components/playlist-picker/playlist-picker.js';
|
import '@components/playlist-picker/playlist-picker.js';
|
||||||
import { dict, list } from '@utils/binding';
|
import { dict, list } from '@utils/binding';
|
||||||
|
import {
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_QUEUE,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
/** Pixels to change card width per scroll tick. */
|
/** Pixels to change card width per scroll tick. */
|
||||||
const ZOOM_STEP = 16;
|
const ZOOM_STEP = 16;
|
||||||
@@ -1371,7 +1375,7 @@ export class ArtistsView
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_QUEUE}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
@@ -1407,7 +1411,7 @@ export class ArtistsView
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_PLAYLIST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Playlist
|
Add to Playlist
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import type WaDrawer from '@awesome.me/webawesome/dist/components/drawer/drawer.
|
|||||||
import { designTokens } from '../../styles/tokens.css';
|
import { designTokens } from '../../styles/tokens.css';
|
||||||
import '../sidebar/app-sidebar.js';
|
import '../sidebar/app-sidebar.js';
|
||||||
import { nameDialog } from '@utils/name-dialog';
|
import { nameDialog } from '@utils/name-dialog';
|
||||||
|
import { ICON_PLAYLIST } from '@utils/icon-language';
|
||||||
|
|
||||||
type View = 'home' | 'albums' | 'tracks' | 'playlists';
|
type View = 'home' | 'albums' | 'tracks' | 'playlists';
|
||||||
|
|
||||||
@@ -138,7 +139,7 @@ export class BottomNav extends LitElement {
|
|||||||
{ id: 'home', label: 'Home', icon: 'house' },
|
{ id: 'home', label: 'Home', icon: 'house' },
|
||||||
{ id: 'albums', label: 'Albums', icon: 'compact-disc' },
|
{ id: 'albums', label: 'Albums', icon: 'compact-disc' },
|
||||||
{ id: 'tracks', label: 'Tracks', icon: 'music' },
|
{ id: 'tracks', label: 'Tracks', icon: 'music' },
|
||||||
{ id: 'playlists', label: 'Playlists', icon: 'list' },
|
{ id: 'playlists', label: 'Playlists', icon: ICON_PLAYLIST },
|
||||||
];
|
];
|
||||||
|
|
||||||
override connectedCallback() {
|
override connectedCallback() {
|
||||||
|
|||||||
@@ -76,6 +76,10 @@ import type {
|
|||||||
SortDirection,
|
SortDirection,
|
||||||
} from './cover-grid-types.js';
|
} from './cover-grid-types.js';
|
||||||
import { list } from '@utils/binding';
|
import { list } from '@utils/binding';
|
||||||
|
import {
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_QUEUE,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
@customElement('cover-grid')
|
@customElement('cover-grid')
|
||||||
export class CoverGrid
|
export class CoverGrid
|
||||||
@@ -2123,7 +2127,7 @@ export class CoverGrid
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_QUEUE}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
@@ -2156,7 +2160,7 @@ export class CoverGrid
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_PLAYLIST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Playlist
|
Add to Playlist
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -52,6 +52,12 @@ import { dictByName } from '@utils/binding';
|
|||||||
import type { TrackDetails } from '@components/track-details/track-details.js';
|
import type { TrackDetails } from '@components/track-details/track-details.js';
|
||||||
import { showTrackDetailsForPath } from '@utils/track-details-opener.js';
|
import { showTrackDetailsForPath } from '@utils/track-details-opener.js';
|
||||||
import '@components/playlist-picker/playlist-picker.js';
|
import '@components/playlist-picker/playlist-picker.js';
|
||||||
|
import {
|
||||||
|
ICON_CAN_REQUEST,
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_QUEUE,
|
||||||
|
ICON_REQUESTED,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The region the album header's own failures are rendered in.
|
* The region the album header's own failures are rendered in.
|
||||||
@@ -193,6 +199,25 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
@state() private selectedVersionKey: string = '';
|
@state() private selectedVersionKey: string = '';
|
||||||
@state() private coverArtURL = '';
|
@state() private coverArtURL = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether to draw the whole release rather than only the files on
|
||||||
|
* disk — `null` while nobody has said, which is the automatic rule
|
||||||
|
* (`buildLibraryEntry`: show the release once the tags say the album
|
||||||
|
* is incomplete).
|
||||||
|
*
|
||||||
|
* It is a *tri-state* on purpose. The automatic rule is right when
|
||||||
|
* it fires and the switch has to be able to agree with it, or the
|
||||||
|
* control would start out contradicting the page it is sitting on;
|
||||||
|
* a plain boolean would need its default recomputed every time the
|
||||||
|
* completeness answer changed underneath it.
|
||||||
|
*
|
||||||
|
* The rule alone was not enough, which is the report: it depends on
|
||||||
|
* the files declaring a per-disc total, so a library whose tags
|
||||||
|
* never said sat permanently on "only my tracks" with no way to ask
|
||||||
|
* for the rest — and no way to tell that there was a rest.
|
||||||
|
*/
|
||||||
|
@state() private showFullTracklist: boolean | null = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The local album's own tracks — the authoritative answer to "what
|
* The local album's own tracks — the authoritative answer to "what
|
||||||
* is actually on disk," independent of `this.releases`, which
|
* is actually on disk," independent of `this.releases`, which
|
||||||
@@ -559,6 +584,19 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ── Tracklist ── */
|
/* ── Tracklist ── */
|
||||||
|
.tracklist-scope {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 6px 12px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracklist-scope-hint {
|
||||||
|
font-size: var(--yj-text-xs);
|
||||||
|
color: var(--yj-text-tertiary, #888);
|
||||||
|
}
|
||||||
|
|
||||||
.tracklist {
|
.tracklist {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -914,6 +952,7 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
this.releases = [];
|
this.releases = [];
|
||||||
this.versionEntries = [];
|
this.versionEntries = [];
|
||||||
this.selectedVersionKey = '';
|
this.selectedVersionKey = '';
|
||||||
|
this.showFullTracklist = null;
|
||||||
this.localTracks = [];
|
this.localTracks = [];
|
||||||
this.filePaths = new Map();
|
this.filePaths = new Map();
|
||||||
this.askedFor = new Set();
|
this.askedFor = new Set();
|
||||||
@@ -1817,17 +1856,23 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
// Guarded on `known` rather than on "fewer tracks than the
|
// Guarded on `known` rather than on "fewer tracks than the
|
||||||
// cluster", which would swap in a catalog tracklist for
|
// cluster", which would swap in a catalog tracklist for
|
||||||
// every album whose tags simply never declared a total.
|
// every album whose tags simply never declared a total.
|
||||||
|
//
|
||||||
|
// And guarded on the *user's* answer first, because the
|
||||||
|
// automatic rule can only fire where the tags declared a
|
||||||
|
// total: an album that says nothing is not an album that is
|
||||||
|
// complete, and it used to be shown as one.
|
||||||
const answer = this.completenessAnswer();
|
const answer = this.completenessAnswer();
|
||||||
const incomplete = answer?.known && !answer.complete;
|
|
||||||
|
|
||||||
if (incomplete) {
|
if (this.showFullTracklist ?? (answer?.known && !answer.complete)) {
|
||||||
const fullRelease = this.findLibraryCluster(clusters);
|
const fullRelease = this.fullReleaseCluster(clusters);
|
||||||
|
|
||||||
if (fullRelease) {
|
if (fullRelease) {
|
||||||
return {
|
return {
|
||||||
key: 'synthetic:library',
|
key: 'synthetic:library',
|
||||||
label: 'Your Library',
|
label: 'Your Library',
|
||||||
sublabel: `${answer?.owned ?? 0} of ${answer?.expected ?? 0} tracks · ${this.clusterLabel(fullRelease)}`,
|
sublabel: answer?.known
|
||||||
|
? `${answer.owned} of ${answer.expected} tracks · ${this.clusterLabel(fullRelease)}`
|
||||||
|
: `${this.clusterLabel(fullRelease)} · full tracklist`,
|
||||||
group: 'aggregate',
|
group: 'aggregate',
|
||||||
syntheticKind: 'library',
|
syntheticKind: 'library',
|
||||||
tracks: fullRelease.representative.tracks ?? [],
|
tracks: fullRelease.representative.tracks ?? [],
|
||||||
@@ -1861,6 +1906,25 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The release to draw when the whole album is wanted rather than
|
||||||
|
* the files on disk.
|
||||||
|
*
|
||||||
|
* `findLibraryCluster` is the right answer where it has one — the
|
||||||
|
* release the user's tracks overlap most — but it is a guess over
|
||||||
|
* the `inLibrary` flags and returns nothing at all when none of
|
||||||
|
* them are set, which is every untagged library. Falling back to
|
||||||
|
* the highest-scoring cluster is what makes the switch work there;
|
||||||
|
* that is the same release the page would call "Standard", and the
|
||||||
|
* sublabel names it either way rather than leaving the user to
|
||||||
|
* wonder whose tracklist they are reading.
|
||||||
|
*/
|
||||||
|
private fullReleaseCluster(
|
||||||
|
clusters: ReleaseCluster[],
|
||||||
|
): ReleaseCluster | undefined {
|
||||||
|
return this.findLibraryCluster(clusters) ?? clusters[0];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fallback only: used when there's no local album to anchor on
|
* Fallback only: used when there's no local album to anchor on
|
||||||
* (see `buildLibraryEntry`). Finds the cluster with the highest
|
* (see `buildLibraryEntry`). Finds the cluster with the highest
|
||||||
@@ -2238,6 +2302,7 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
@catalog-retry=${this.retryCatalog}
|
@catalog-retry=${this.retryCatalog}
|
||||||
></catalog-scope-notice>
|
></catalog-scope-notice>
|
||||||
${this.renderVersionSelector()}
|
${this.renderVersionSelector()}
|
||||||
|
${this.renderTracklistScope()}
|
||||||
${this.renderTracklist()}
|
${this.renderTracklist()}
|
||||||
</div>
|
</div>
|
||||||
<track-details></track-details>
|
<track-details></track-details>
|
||||||
@@ -2378,7 +2443,7 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
data-testid="album-queue"
|
data-testid="album-queue"
|
||||||
@click=${() => this.queueOwned()}
|
@click=${() => this.queueOwned()}
|
||||||
>
|
>
|
||||||
<wa-icon slot="start" name="list"></wa-icon>
|
<wa-icon slot="start" name=${ICON_QUEUE}></wa-icon>
|
||||||
Add to queue
|
Add to queue
|
||||||
</wa-button>
|
</wa-button>
|
||||||
${partial
|
${partial
|
||||||
@@ -2681,7 +2746,7 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
of the same Free glyph carry the toggle instead. -->
|
of the same Free glyph carry the toggle instead. -->
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="start"
|
slot="start"
|
||||||
name=${this.isRequested ? 'solid/bookmark' : 'regular/bookmark'}
|
name=${this.isRequested ? ICON_REQUESTED : ICON_CAN_REQUEST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
${this.isRequested ? 'Requested' : 'Request this'}
|
${this.isRequested ? 'Requested' : 'Request this'}
|
||||||
</wa-button>
|
</wa-button>
|
||||||
@@ -3036,6 +3101,86 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
|
|
||||||
/* ── Tracklist ── */
|
/* ── Tracklist ── */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* "Show the whole album" — the switch between the files on disk and
|
||||||
|
* the release they are part of.
|
||||||
|
*
|
||||||
|
* The page could already draw the full release with the missing
|
||||||
|
* rows dimmed, and did so automatically once the tags said the
|
||||||
|
* album was incomplete. What it could not do was be *asked*: where
|
||||||
|
* the files declare no per-disc total and the catalog has none
|
||||||
|
* either, the rule never fires, so a partly-owned album showed only
|
||||||
|
* the tracks the user had and nothing said the rest existed.
|
||||||
|
*
|
||||||
|
* Three things about when it appears, all of them the same rule —
|
||||||
|
* a control that cannot change what is on screen is worse than no
|
||||||
|
* control, which is what the version dropdown's own guard is for:
|
||||||
|
*
|
||||||
|
* - Only against the synthetic "Your Library" entry. Every other
|
||||||
|
* entry *is* a catalog tracklist already.
|
||||||
|
* - Only when a catalog release exists to switch to.
|
||||||
|
* - Only when the two differ. A complete album's release has the
|
||||||
|
* same rows as its files, so the switch would redraw the same
|
||||||
|
* list and read as broken.
|
||||||
|
*/
|
||||||
|
private renderTracklistScope() {
|
||||||
|
const current = this.currentVersion();
|
||||||
|
|
||||||
|
if (current?.syntheticKind !== 'library') return nothing;
|
||||||
|
if (this.localTracks.length === 0) return nothing;
|
||||||
|
|
||||||
|
const full = this.fullReleaseCluster(this.clustersOf(this.versionEntries));
|
||||||
|
const fullCount = full?.representative.tracks?.length ?? 0;
|
||||||
|
|
||||||
|
if (fullCount === 0 || fullCount <= this.localTracks.length) {
|
||||||
|
return nothing;
|
||||||
|
}
|
||||||
|
|
||||||
|
const showing = current.tracks.length > this.localTracks.length;
|
||||||
|
|
||||||
|
return html`
|
||||||
|
<div class="tracklist-scope">
|
||||||
|
<wa-switch
|
||||||
|
size="small"
|
||||||
|
?checked=${showing}
|
||||||
|
@change=${this.handleTracklistScopeChange}
|
||||||
|
>
|
||||||
|
Show the whole album
|
||||||
|
</wa-switch>
|
||||||
|
<span class="tracklist-scope-hint">
|
||||||
|
${showing
|
||||||
|
? `${this.localTracks.length} of ${fullCount} tracks are in your library`
|
||||||
|
: `${fullCount - this.localTracks.length} more tracks are on this release`}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The clusters behind the current entries.
|
||||||
|
*
|
||||||
|
* `buildClusters` computes them and keeps only the entries, so this
|
||||||
|
* recovers them rather than storing the array twice — two copies of
|
||||||
|
* a list rebuilt on four different events is how they come to
|
||||||
|
* disagree.
|
||||||
|
*/
|
||||||
|
private clustersOf(entries: VersionEntry[]): ReleaseCluster[] {
|
||||||
|
return entries
|
||||||
|
.filter((e) => e.group === 'cluster')
|
||||||
|
.map((e) => e.cluster)
|
||||||
|
.filter((c): c is ReleaseCluster => !!c);
|
||||||
|
}
|
||||||
|
|
||||||
|
private handleTracklistScopeChange = (e: Event) => {
|
||||||
|
this.showFullTracklist = (e.target as HTMLInputElement).checked;
|
||||||
|
|
||||||
|
// The entries are derived, so the switch rebuilds them rather
|
||||||
|
// than patching the one it changed. `buildClusters` re-defaults
|
||||||
|
// the selection, which lands back on "Your Library" — the only
|
||||||
|
// entry this control is ever shown against.
|
||||||
|
this.buildClusters();
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The heading is there and is not drawn.
|
* The heading is there and is not drawn.
|
||||||
*
|
*
|
||||||
@@ -3199,7 +3344,7 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
@click=${() => this.onContextMenuAction('add-to-queue')}
|
@click=${() => this.onContextMenuAction('add-to-queue')}
|
||||||
@mouseenter=${() => this.ctxMenu.closePlaylistSubmenu()}
|
@mouseenter=${() => this.ctxMenu.closePlaylistSubmenu()}
|
||||||
>
|
>
|
||||||
<wa-icon slot="icon" name="plus"></wa-icon>
|
<wa-icon slot="icon" name=${ICON_QUEUE}></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
<wa-dropdown-item
|
<wa-dropdown-item
|
||||||
@@ -3218,7 +3363,7 @@ export class ExploreAlbumDetails extends LitElement implements ContextMenuHost {
|
|||||||
this.openPlaylistSubmenu();
|
this.openPlaylistSubmenu();
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<wa-icon slot="icon" name="plus"></wa-icon>
|
<wa-icon slot="icon" name=${ICON_PLAYLIST}></wa-icon>
|
||||||
Add to Playlist
|
Add to Playlist
|
||||||
<span class="submenu-arrow">▶</span>
|
<span class="submenu-arrow">▶</span>
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
|
|||||||
@@ -59,6 +59,12 @@ import { dict, dictByName } from '@utils/binding';
|
|||||||
import type { TrackDetails } from '@components/track-details/track-details.js';
|
import type { TrackDetails } from '@components/track-details/track-details.js';
|
||||||
import { showTrackDetailsForPath } from '@utils/track-details-opener.js';
|
import { showTrackDetailsForPath } from '@utils/track-details-opener.js';
|
||||||
import '@components/playlist-picker/playlist-picker.js';
|
import '@components/playlist-picker/playlist-picker.js';
|
||||||
|
import {
|
||||||
|
ICON_CAN_REQUEST,
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_QUEUE,
|
||||||
|
ICON_REQUESTED,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
/* ── Constants ── */
|
/* ── Constants ── */
|
||||||
|
|
||||||
@@ -2674,7 +2680,7 @@ export class ExploreArtistDetails extends LitElement implements ContextMenuHost
|
|||||||
@click=${() => this.onContextMenuAction('add-to-queue')}
|
@click=${() => this.onContextMenuAction('add-to-queue')}
|
||||||
@mouseenter=${() => this.ctxMenu.closePlaylistSubmenu()}
|
@mouseenter=${() => this.ctxMenu.closePlaylistSubmenu()}
|
||||||
>
|
>
|
||||||
<wa-icon slot="icon" name="plus"></wa-icon>
|
<wa-icon slot="icon" name=${ICON_QUEUE}></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
<wa-dropdown-item
|
<wa-dropdown-item
|
||||||
@@ -2693,7 +2699,7 @@ export class ExploreArtistDetails extends LitElement implements ContextMenuHost
|
|||||||
void this.openPlaylistSubmenu(true);
|
void this.openPlaylistSubmenu(true);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<wa-icon slot="icon" name="plus"></wa-icon>
|
<wa-icon slot="icon" name=${ICON_PLAYLIST}></wa-icon>
|
||||||
Add to Playlist
|
Add to Playlist
|
||||||
<span class="submenu-arrow">▶</span>
|
<span class="submenu-arrow">▶</span>
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
@@ -2737,7 +2743,7 @@ export class ExploreArtistDetails extends LitElement implements ContextMenuHost
|
|||||||
Play
|
Play
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
<wa-dropdown-item @click=${() => void this.onReleaseAction('add-to-queue')}>
|
<wa-dropdown-item @click=${() => void this.onReleaseAction('add-to-queue')}>
|
||||||
<wa-icon slot="icon" name="plus"></wa-icon>
|
<wa-icon slot="icon" name=${ICON_QUEUE}></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
<wa-dropdown-item @click=${() => void this.onReleaseAction('play-next')}>
|
<wa-dropdown-item @click=${() => void this.onReleaseAction('play-next')}>
|
||||||
@@ -2751,7 +2757,7 @@ export class ExploreArtistDetails extends LitElement implements ContextMenuHost
|
|||||||
<wa-dropdown-item @click=${() => void this.onReleaseRequestToggle()}>
|
<wa-dropdown-item @click=${() => void this.onReleaseRequestToggle()}>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name=${requested ? 'xmark' : 'bookmark'}
|
name=${requested ? ICON_REQUESTED : ICON_CAN_REQUEST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
${requested ? 'Cancel Request' : 'Request This'}
|
${requested ? 'Cancel Request' : 'Request This'}
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
@@ -2789,9 +2795,15 @@ export class ExploreArtistDetails extends LitElement implements ContextMenuHost
|
|||||||
appearance=${request ? 'filled' : 'outlined'}
|
appearance=${request ? 'filled' : 'outlined'}
|
||||||
@click=${() => void this.toggleFollow(request?.id)}
|
@click=${() => void this.toggleFollow(request?.id)}
|
||||||
>
|
>
|
||||||
|
<!-- This was bookmark-check, which is not in
|
||||||
|
names.txt and so has rendered the missing-icon
|
||||||
|
fallback — a circled question mark — on every
|
||||||
|
followed artist since it was written. A
|
||||||
|
backtick around that name would end this
|
||||||
|
template literal, which is why there is none. -->
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="start"
|
slot="start"
|
||||||
name=${request ? 'bookmark-check' : 'bookmark'}
|
name=${request ? ICON_REQUESTED : ICON_CAN_REQUEST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
${request ? 'Following' : 'Follow for new releases'}
|
${request ? 'Following' : 'Follow for new releases'}
|
||||||
</wa-button>
|
</wa-button>
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ import '@awesome.me/webawesome/dist/components/popup/popup.js';
|
|||||||
import type WaPopup from '@awesome.me/webawesome/dist/components/popup/popup.js';
|
import type WaPopup from '@awesome.me/webawesome/dist/components/popup/popup.js';
|
||||||
import '@awesome.me/webawesome/dist/components/dropdown-item/dropdown-item.js';
|
import '@awesome.me/webawesome/dist/components/dropdown-item/dropdown-item.js';
|
||||||
import { dict, dictByName } from '@utils/binding';
|
import { dict, dictByName } from '@utils/binding';
|
||||||
|
import { ICON_QUEUE } from '@utils/icon-language';
|
||||||
|
|
||||||
/** The region explore's own action failures (play/queue) are rendered in. */
|
/** The region explore's own action failures (play/queue) are rendered in. */
|
||||||
export const ExploreRegion = 'explore';
|
export const ExploreRegion = 'explore';
|
||||||
@@ -1342,7 +1343,7 @@ export class ExploreView extends ViewLifecycleMixin(LitElement) implements Conte
|
|||||||
Play
|
Play
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
<wa-dropdown-item @click=${() => this.onContextMenuAction('add-to-queue')}>
|
<wa-dropdown-item @click=${() => this.onContextMenuAction('add-to-queue')}>
|
||||||
<wa-icon slot="icon" name="plus"></wa-icon>
|
<wa-icon slot="icon" name=${ICON_QUEUE}></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
<wa-dropdown-item @click=${() => this.onContextMenuAction('play-next')}>
|
<wa-dropdown-item @click=${() => this.onContextMenuAction('play-next')}>
|
||||||
|
|||||||
@@ -35,6 +35,10 @@ import type WaPopup from '@awesome.me/webawesome/dist/components/popup/popup.js'
|
|||||||
import '@awesome.me/webawesome/dist/components/dropdown-item/dropdown-item.js';
|
import '@awesome.me/webawesome/dist/components/dropdown-item/dropdown-item.js';
|
||||||
import '@components/playlist-picker/playlist-picker.js';
|
import '@components/playlist-picker/playlist-picker.js';
|
||||||
import { dictByName } from '@utils/binding';
|
import { dictByName } from '@utils/binding';
|
||||||
|
import {
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_QUEUE,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
/** Pixels to change card width per scroll tick. */
|
/** Pixels to change card width per scroll tick. */
|
||||||
const ZOOM_STEP = 16;
|
const ZOOM_STEP = 16;
|
||||||
@@ -1211,7 +1215,7 @@ export class GenresView
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_QUEUE}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
@@ -1257,7 +1261,7 @@ export class GenresView
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_PLAYLIST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Playlist
|
Add to Playlist
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -4,6 +4,11 @@ import '@awesome.me/webawesome/dist/components/icon/icon.js';
|
|||||||
import { toggleRequest } from '@utils/library-status';
|
import { toggleRequest } from '@utils/library-status';
|
||||||
import { notificationStore } from '@store/notification-store';
|
import { notificationStore } from '@store/notification-store';
|
||||||
import { describeError } from '@utils/describe-error';
|
import { describeError } from '@utils/describe-error';
|
||||||
|
import {
|
||||||
|
ICON_CAN_REQUEST,
|
||||||
|
ICON_IN_LIBRARY,
|
||||||
|
ICON_REQUESTED,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Library status for an entity (artist, album, or track).
|
* Library status for an entity (artist, album, or track).
|
||||||
@@ -248,18 +253,25 @@ export class LibraryStatusIndicator extends LitElement {
|
|||||||
* hourglass says "wait, this is under way", which overstates what a
|
* hourglass says "wait, this is under way", which overstates what a
|
||||||
* request is: nothing may be downloading, nothing may ever be found,
|
* request is: nothing may be downloading, nothing may ever be found,
|
||||||
* and the user can leave one sitting on the list indefinitely. A
|
* and the user can leave one sitting on the list indefinitely. A
|
||||||
* bookmark says the honest thing — it is on your list — and reads as
|
* bookmark says the honest thing — it is on your list.
|
||||||
* the opposite of the plus that put it there, which is what a
|
*
|
||||||
* toggle's two states have to do.
|
* The *other* state is the outline of that same bookmark, not a
|
||||||
|
* plus. Two states of one toggle have to read as each other's
|
||||||
|
* opposite, and a plus and a bookmark do not — this badge showed a
|
||||||
|
* plus on the same page as a "Request this" button already using
|
||||||
|
* the outline/solid pair, forty pixels away. That is the fault
|
||||||
|
* `utils/library-status.ts` was written for, one layer down: it
|
||||||
|
* made the two agree on what wanting *means* and left them
|
||||||
|
* disagreeing on what it looks like.
|
||||||
*/
|
*/
|
||||||
private iconName(): string {
|
private iconName(): string {
|
||||||
switch (this.status) {
|
switch (this.status) {
|
||||||
case 'in-library':
|
case 'in-library':
|
||||||
return 'check';
|
return ICON_IN_LIBRARY;
|
||||||
case 'queued':
|
case 'queued':
|
||||||
return 'bookmark';
|
return ICON_REQUESTED;
|
||||||
default:
|
default:
|
||||||
return 'plus';
|
return ICON_CAN_REQUEST;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import { creditStore } from '@store/credit-store';
|
|||||||
import { FavoritesController } from '@store/controllers/favorites-controller';
|
import { FavoritesController } from '@store/controllers/favorites-controller';
|
||||||
import { designTokens } from '../../styles/tokens.css';
|
import { designTokens } from '../../styles/tokens.css';
|
||||||
import { srOnly } from '../../styles/sr-only.css';
|
import { srOnly } from '../../styles/sr-only.css';
|
||||||
|
import { ICON_QUEUE } from '@utils/icon-language';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* What is playing, at the size a phone has room for (plan 016 B2,
|
* What is playing, at the size a phone has room for (plan 016 B2,
|
||||||
@@ -339,7 +340,7 @@ export class NowPlayingView extends LitElement {
|
|||||||
aria-label="Show the queue"
|
aria-label="Show the queue"
|
||||||
@click=${this.openQueue}
|
@click=${this.openQueue}
|
||||||
>
|
>
|
||||||
<wa-icon name="list"></wa-icon>
|
<wa-icon name=${ICON_QUEUE}></wa-icon>
|
||||||
</button>
|
</button>
|
||||||
</header>
|
</header>
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -70,6 +70,10 @@ import {
|
|||||||
} from '@utils/explore-link';
|
} from '@utils/explore-link';
|
||||||
import { designTokens } from '../../styles/tokens.css';
|
import { designTokens } from '../../styles/tokens.css';
|
||||||
import { list } from '@utils/binding';
|
import { list } from '@utils/binding';
|
||||||
|
import {
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_QUEUE,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
/** One playlist row: the track and its position in the *playlist*,
|
/** One playlist row: the track and its position in the *playlist*,
|
||||||
* which is not its position in the filtered view. */
|
* which is not its position in the filtered view. */
|
||||||
@@ -1358,7 +1362,7 @@ export class PlaylistDetails
|
|||||||
</button>
|
</button>
|
||||||
<div class="playlist-avatar">
|
<div class="playlist-avatar">
|
||||||
<wa-icon
|
<wa-icon
|
||||||
name="list"
|
name=${ICON_PLAYLIST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
</div>
|
</div>
|
||||||
<div class="playlist-info">
|
<div class="playlist-info">
|
||||||
@@ -1665,7 +1669,7 @@ export class PlaylistDetails
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_QUEUE}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
@@ -1720,7 +1724,7 @@ export class PlaylistDetails
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_PLAYLIST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Playlist
|
Add to Playlist
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ import { notificationStore } from '@store/notification-store';
|
|||||||
import { describeError } from '@utils/describe-error';
|
import { describeError } from '@utils/describe-error';
|
||||||
import type { DuplicateTracksDialog } from '@components/duplicate-tracks-dialog/duplicate-tracks-dialog.js';
|
import type { DuplicateTracksDialog } from '@components/duplicate-tracks-dialog/duplicate-tracks-dialog.js';
|
||||||
import { list } from '@utils/binding';
|
import { list } from '@utils/binding';
|
||||||
|
import { ICON_NEW } from '@utils/icon-language';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A reusable playlist picker that displays existing playlists
|
* A reusable playlist picker that displays existing playlists
|
||||||
@@ -307,7 +308,7 @@ export class PlaylistPicker extends LitElement {
|
|||||||
`
|
`
|
||||||
: nothing}
|
: nothing}
|
||||||
<wa-dropdown-item @click=${this.handleShowCreate}>
|
<wa-dropdown-item @click=${this.handleShowCreate}>
|
||||||
<wa-icon slot="icon" name="plus"></wa-icon>
|
<wa-icon slot="icon" name=${ICON_NEW}></wa-icon>
|
||||||
New Playlist
|
New Playlist
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -37,6 +37,10 @@ import { ViewLifecycleMixin } from '@utils/view-lifecycle';
|
|||||||
import { FavoritesController } from '@store/controllers/favorites-controller';
|
import { FavoritesController } from '@store/controllers/favorites-controller';
|
||||||
import '@components/duplicate-tracks-dialog/duplicate-tracks-dialog.js';
|
import '@components/duplicate-tracks-dialog/duplicate-tracks-dialog.js';
|
||||||
import type { DuplicateTracksDialog } from '@components/duplicate-tracks-dialog/duplicate-tracks-dialog.js';
|
import type { DuplicateTracksDialog } from '@components/duplicate-tracks-dialog/duplicate-tracks-dialog.js';
|
||||||
|
import {
|
||||||
|
ICON_NEW,
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
const SCROLL_DEBOUNCE_MS = 100;
|
const SCROLL_DEBOUNCE_MS = 100;
|
||||||
|
|
||||||
@@ -1496,7 +1500,7 @@ export class PlaylistView extends ViewLifecycleMixin(LitElement) {
|
|||||||
@dragleave=${this.onNewButtonDragLeave}
|
@dragleave=${this.onNewButtonDragLeave}
|
||||||
@drop=${this.onNewButtonDrop}
|
@drop=${this.onNewButtonDrop}
|
||||||
>
|
>
|
||||||
<wa-icon name="plus"></wa-icon>
|
<wa-icon name=${ICON_NEW}></wa-icon>
|
||||||
New Playlist
|
New Playlist
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
@@ -1641,10 +1645,10 @@ export class PlaylistView extends ViewLifecycleMixin(LitElement) {
|
|||||||
>
|
>
|
||||||
<div class="drop-zone-icon">
|
<div class="drop-zone-icon">
|
||||||
<wa-icon
|
<wa-icon
|
||||||
name="plus"
|
name=${ICON_NEW}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
</div>
|
</div>
|
||||||
<wa-icon name="list"></wa-icon>
|
<wa-icon name=${ICON_PLAYLIST}></wa-icon>
|
||||||
<p>No playlists yet</p>
|
<p>No playlists yet</p>
|
||||||
<p style="font-size: 12px;">
|
<p style="font-size: 12px;">
|
||||||
Create a playlist or drop
|
Create a playlist or drop
|
||||||
@@ -1666,7 +1670,7 @@ export class PlaylistView extends ViewLifecycleMixin(LitElement) {
|
|||||||
>
|
>
|
||||||
<div class="drop-zone-icon">
|
<div class="drop-zone-icon">
|
||||||
<wa-icon
|
<wa-icon
|
||||||
name="plus"
|
name=${ICON_NEW}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
</div>
|
</div>
|
||||||
<p>
|
<p>
|
||||||
@@ -1701,7 +1705,7 @@ export class PlaylistView extends ViewLifecycleMixin(LitElement) {
|
|||||||
>
|
>
|
||||||
<div class="drop-zone-icon">
|
<div class="drop-zone-icon">
|
||||||
<wa-icon
|
<wa-icon
|
||||||
name="plus"
|
name=${ICON_NEW}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -60,6 +60,11 @@ import {
|
|||||||
trackLink,
|
trackLink,
|
||||||
exploreLinkStyles,
|
exploreLinkStyles,
|
||||||
} from '@utils/explore-link';
|
} from '@utils/explore-link';
|
||||||
|
import {
|
||||||
|
ICON_NEW,
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_QUEUE,
|
||||||
|
} from '@utils/icon-language';
|
||||||
/** Above this many tracks, clearing the queue asks first. */
|
/** Above this many tracks, clearing the queue asks first. */
|
||||||
const CLEAR_CONFIRM_THRESHOLD = 20;
|
const CLEAR_CONFIRM_THRESHOLD = 20;
|
||||||
|
|
||||||
@@ -1755,7 +1760,7 @@ export class QueuePanel
|
|||||||
title="Add queue to playlist"
|
title="Add queue to playlist"
|
||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
name="plus"
|
name=${ICON_PLAYLIST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
@@ -1794,11 +1799,11 @@ export class QueuePanel
|
|||||||
? html`<div class="empty-state">
|
? html`<div class="empty-state">
|
||||||
<div class="drop-zone-icon">
|
<div class="drop-zone-icon">
|
||||||
<wa-icon
|
<wa-icon
|
||||||
name="plus"
|
name=${ICON_NEW}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
</div>
|
</div>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
name="list"
|
name=${ICON_QUEUE}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
<p>Queue is empty</p>
|
<p>Queue is empty</p>
|
||||||
<p style="font-size: 12px;">
|
<p style="font-size: 12px;">
|
||||||
@@ -1875,7 +1880,7 @@ export class QueuePanel
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_PLAYLIST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Playlist
|
Add to Playlist
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -4,6 +4,10 @@ import '@awesome.me/webawesome/dist/components/icon/icon.js';
|
|||||||
import { designTokens } from '../../styles/tokens.css';
|
import { designTokens } from '../../styles/tokens.css';
|
||||||
|
|
||||||
import type { DragActiveDetail } from '@utils/drag-controller';
|
import type { DragActiveDetail } from '@utils/drag-controller';
|
||||||
|
import {
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_REQUESTED,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
type View = 'home' | 'playlists' | 'artists' | 'genres' | 'albums' | 'tracks' | 'explore' | 'downloads' | 'autotag' | 'jobs' | 'settings';
|
type View = 'home' | 'playlists' | 'artists' | 'genres' | 'albums' | 'tracks' | 'explore' | 'downloads' | 'autotag' | 'jobs' | 'settings';
|
||||||
|
|
||||||
@@ -197,13 +201,13 @@ export class AppSidebar extends LitElement {
|
|||||||
|
|
||||||
private navItems: NavItem[] = [
|
private navItems: NavItem[] = [
|
||||||
{ id: 'home', label: 'Home', icon: 'house' },
|
{ id: 'home', label: 'Home', icon: 'house' },
|
||||||
{ id: 'playlists', label: 'Playlists', icon: 'list' },
|
{ id: 'playlists', label: 'Playlists', icon: ICON_PLAYLIST },
|
||||||
{ id: 'artists', label: 'Artists', icon: 'user-group' },
|
{ id: 'artists', label: 'Artists', icon: 'user-group' },
|
||||||
{ id: 'genres', label: 'Genres', icon: 'masks-theater' },
|
{ id: 'genres', label: 'Genres', icon: 'masks-theater' },
|
||||||
{ id: 'albums', label: 'Albums', icon: 'compact-disc' },
|
{ id: 'albums', label: 'Albums', icon: 'compact-disc' },
|
||||||
{ id: 'tracks', label: 'Tracks', icon: 'music' },
|
{ id: 'tracks', label: 'Tracks', icon: 'music' },
|
||||||
{ id: 'explore', label: 'Explore', icon: 'globe' },
|
{ id: 'explore', label: 'Explore', icon: 'globe' },
|
||||||
{ id: 'downloads', label: 'Downloads', icon: 'bookmark' },
|
{ id: 'downloads', label: 'Downloads', icon: ICON_REQUESTED },
|
||||||
{ id: 'autotag', label: 'Autotag', icon: 'tag' },
|
{ id: 'autotag', label: 'Autotag', icon: 'tag' },
|
||||||
{ id: 'jobs', label: 'Jobs', icon: 'list-check' },
|
{ id: 'jobs', label: 'Jobs', icon: 'list-check' },
|
||||||
{ id: 'settings', label: 'Settings', icon: 'gear' },
|
{ id: 'settings', label: 'Settings', icon: 'gear' },
|
||||||
|
|||||||
@@ -61,6 +61,10 @@ import {
|
|||||||
import '@components/smart-playlist-editor/smart-playlist-editor.js';
|
import '@components/smart-playlist-editor/smart-playlist-editor.js';
|
||||||
import { designTokens } from '../../styles/tokens.css';
|
import { designTokens } from '../../styles/tokens.css';
|
||||||
import { list } from '@utils/binding';
|
import { list } from '@utils/binding';
|
||||||
|
import {
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_QUEUE,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1481,7 +1485,7 @@ export class SmartPlaylistDetails
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_QUEUE}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
@@ -1521,7 +1525,7 @@ export class SmartPlaylistDetails
|
|||||||
>
|
>
|
||||||
<wa-icon
|
<wa-icon
|
||||||
slot="icon"
|
slot="icon"
|
||||||
name="plus"
|
name=${ICON_PLAYLIST}
|
||||||
></wa-icon>
|
></wa-icon>
|
||||||
Add to Playlist
|
Add to Playlist
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -74,6 +74,10 @@ import { tracksByFilePath, tracksForPaths } from '@utils/track-index.js';
|
|||||||
import '@components/playlist-picker/playlist-picker.js';
|
import '@components/playlist-picker/playlist-picker.js';
|
||||||
import type { TrackDetails } from '@components/track-details/track-details.js';
|
import type { TrackDetails } from '@components/track-details/track-details.js';
|
||||||
import type { CoverArtUrls } from '@components/track-details/track-details.js';
|
import type { CoverArtUrls } from '@components/track-details/track-details.js';
|
||||||
|
import {
|
||||||
|
ICON_PLAYLIST,
|
||||||
|
ICON_QUEUE,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
const COLUMN_STORAGE_KEY = 'track-list-column-widths';
|
const COLUMN_STORAGE_KEY = 'track-list-column-widths';
|
||||||
const SORT_FIELD_KEY = 'track-list-sort-field';
|
const SORT_FIELD_KEY = 'track-list-sort-field';
|
||||||
@@ -2342,7 +2346,7 @@ export class TrackList
|
|||||||
@click=${() => this.onContextMenuAction('add-to-queue')}
|
@click=${() => this.onContextMenuAction('add-to-queue')}
|
||||||
@mouseenter=${() => this.ctxMenu.closePlaylistSubmenu()}
|
@mouseenter=${() => this.ctxMenu.closePlaylistSubmenu()}
|
||||||
>
|
>
|
||||||
<wa-icon slot="icon" name="plus"></wa-icon>
|
<wa-icon slot="icon" name=${ICON_QUEUE}></wa-icon>
|
||||||
Add to Queue
|
Add to Queue
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
<wa-dropdown-item
|
<wa-dropdown-item
|
||||||
@@ -2364,7 +2368,7 @@ export class TrackList
|
|||||||
void this.ctxMenu.showPlaylistSubmenu(this.selection.getSelectedKeysOrdered());
|
void this.ctxMenu.showPlaylistSubmenu(this.selection.getSelectedKeysOrdered());
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<wa-icon slot="icon" name="plus"></wa-icon>
|
<wa-icon slot="icon" name=${ICON_PLAYLIST}></wa-icon>
|
||||||
Add to Playlist
|
Add to Playlist
|
||||||
<span class="submenu-arrow">▶</span>
|
<span class="submenu-arrow">▶</span>
|
||||||
</wa-dropdown-item>
|
</wa-dropdown-item>
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ solid/arrows-rotate
|
|||||||
solid/arrow-up-short-wide
|
solid/arrow-up-short-wide
|
||||||
solid/backward-step
|
solid/backward-step
|
||||||
solid/bars
|
solid/bars
|
||||||
|
solid/bars-staggered
|
||||||
regular/bookmark
|
regular/bookmark
|
||||||
solid/bookmark
|
solid/bookmark
|
||||||
solid/box-open
|
solid/box-open
|
||||||
|
|||||||
@@ -0,0 +1,100 @@
|
|||||||
|
/**
|
||||||
|
* What each icon in this app means, once.
|
||||||
|
*
|
||||||
|
* The set was a mix: `plus` meant "add to the queue", "add to a
|
||||||
|
* playlist", "make a new playlist" and "you do not own this" — the
|
||||||
|
* first two *adjacent in the same context menu* — while `list` meant
|
||||||
|
* the queue, the Playlists destination, and (in `queue-panel` alone)
|
||||||
|
* adding to the queue. Two icons carrying seven meanings between them
|
||||||
|
* is not a vocabulary, and a user cannot learn one that says four
|
||||||
|
* things.
|
||||||
|
*
|
||||||
|
* The rule these are chosen by: **an icon names the noun it acts on,
|
||||||
|
* not the verb.** "Add to queue" and "add to playlist" are the same
|
||||||
|
* verb on different nouns, so the noun is what has to differ — which is
|
||||||
|
* also why adding to a playlist wears the Playlists destination's own
|
||||||
|
* icon rather than a generic plus. `plus` survives for exactly the one
|
||||||
|
* thing it is unambiguous about, making something that did not exist.
|
||||||
|
*
|
||||||
|
* Import these rather than writing a name inline. A literal string is
|
||||||
|
* how the last set drifted, and nothing catches it: a wrong-but-real
|
||||||
|
* icon renders perfectly.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** Start playing this now. */
|
||||||
|
export const ICON_PLAY = 'play';
|
||||||
|
|
||||||
|
/** Start playing this now, in a shuffled order. */
|
||||||
|
export const ICON_SHUFFLE = 'shuffle';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The queue, and putting something into it.
|
||||||
|
*
|
||||||
|
* One glyph for the noun and the action, so the button that opens the
|
||||||
|
* queue and the menu item that adds to it are visibly the same subject.
|
||||||
|
* The queue used to wear `list`, which is the Playlists destination.
|
||||||
|
*/
|
||||||
|
export const ICON_QUEUE = 'bars-staggered';
|
||||||
|
|
||||||
|
/** Put this next in the queue rather than at the end. */
|
||||||
|
export const ICON_PLAY_NEXT = 'forward-step';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A playlist, and adding something to one.
|
||||||
|
*
|
||||||
|
* The same icon as the Playlists destination in the sidebar, which is
|
||||||
|
* the point: the menu item says where the thing is going.
|
||||||
|
*/
|
||||||
|
export const ICON_PLAYLIST = 'list';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make a new thing that did not exist — a playlist, a rule, a library.
|
||||||
|
*
|
||||||
|
* This is the only meaning `plus` keeps. It used to carry four.
|
||||||
|
*/
|
||||||
|
export const ICON_NEW = 'plus';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The request ("want") toggle, as an outline/solid pair.
|
||||||
|
*
|
||||||
|
* Two states of one control have to read as each other's opposite,
|
||||||
|
* which a plus and a bookmark do not. The pair was already in the app
|
||||||
|
* and already correct — `explore-album-details`'s "Want this" button
|
||||||
|
* has used it since it was written, and `favorites-controller` uses the
|
||||||
|
* same shape for `regular/heart` → `heart` — while the badge forty
|
||||||
|
* pixels away showed a plus for the same state.
|
||||||
|
*
|
||||||
|
* That is `utils/library-status.ts`'s fault one layer down: it made the
|
||||||
|
* two surfaces agree on *what wanting means* and left them disagreeing
|
||||||
|
* on what it looks like.
|
||||||
|
*/
|
||||||
|
export const ICON_CAN_REQUEST = 'regular/bookmark';
|
||||||
|
export const ICON_REQUESTED = 'solid/bookmark';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* You have this.
|
||||||
|
*
|
||||||
|
* Deliberately not drawn on the common case — see the tracklist, where
|
||||||
|
* absence is what gets marked. This is for the places that answer the
|
||||||
|
* question directly, like the badge on a catalog card.
|
||||||
|
*/
|
||||||
|
export const ICON_IN_LIBRARY = 'check';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Something is being fetched right now.
|
||||||
|
*
|
||||||
|
* Distinct from `ICON_REQUESTED`: a request may sit on the list
|
||||||
|
* forever without anything happening, which is exactly why the badge's
|
||||||
|
* "queued" state stopped being an hourglass.
|
||||||
|
*/
|
||||||
|
export const ICON_DOWNLOADING = 'download';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Take this away.
|
||||||
|
*
|
||||||
|
* One icon for removing from a playlist, from the queue and from the
|
||||||
|
* library, because the difference that matters is stated in the words
|
||||||
|
* beside it and in the confirmation — "Remove from Library" says in its
|
||||||
|
* impact line that the files are not deleted.
|
||||||
|
*/
|
||||||
|
export const ICON_REMOVE = 'trash';
|
||||||
@@ -0,0 +1,238 @@
|
|||||||
|
/**
|
||||||
|
* Asking to see the whole album.
|
||||||
|
*
|
||||||
|
* The page could already draw the full release with the missing rows
|
||||||
|
* dimmed, and did so automatically once the tags said the album was
|
||||||
|
* incomplete. What it could not do was be *asked*: the rule depends on
|
||||||
|
* the files declaring a per-disc total, so where they declare none —
|
||||||
|
* which is a great deal of any library — a partly-owned album showed
|
||||||
|
* only the tracks on disk and nothing said the rest existed.
|
||||||
|
*
|
||||||
|
* The switch is the explicit route. Its rules are all one rule: a
|
||||||
|
* control that cannot change what is on screen is worse than no
|
||||||
|
* control, which is the same test the version dropdown answers.
|
||||||
|
*/
|
||||||
|
import { describe, expect, it, beforeEach } from 'vitest';
|
||||||
|
import { page } from 'vitest/browser';
|
||||||
|
import type { LitElement } from 'lit';
|
||||||
|
|
||||||
|
import '@components/explore-album-details/explore-album-details';
|
||||||
|
import { stub, flush, resetHarness } from '@test/support/harness';
|
||||||
|
import { fixture, shadow, shadowAll } from '@test/support/render';
|
||||||
|
|
||||||
|
const MBID = 'rg-0001';
|
||||||
|
|
||||||
|
function track(n: number, owned = false) {
|
||||||
|
return {
|
||||||
|
position: n,
|
||||||
|
discNumber: 1,
|
||||||
|
title: `Track ${n}`,
|
||||||
|
length: 200000,
|
||||||
|
mbid: `rec-${n}`,
|
||||||
|
inLibrary: owned,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function release(mbid: string, date: string, trackCount: number, owned = 0) {
|
||||||
|
return {
|
||||||
|
mbid,
|
||||||
|
title: 'Glass Harbour',
|
||||||
|
date,
|
||||||
|
status: 'Official',
|
||||||
|
tracks: Array.from({ length: trackCount }, (_, i) =>
|
||||||
|
track(i + 1, i < owned),
|
||||||
|
),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Local files with no recording MBIDs — an untagged rip, which is the
|
||||||
|
* case the automatic rule cannot see. */
|
||||||
|
function localTracks(count: number) {
|
||||||
|
return Array.from({ length: count }, (_, i) => ({
|
||||||
|
TrackName: `Track ${i + 1}`,
|
||||||
|
TrackNumber: i + 1,
|
||||||
|
DiscNumber: 1,
|
||||||
|
TrackLength: '210000',
|
||||||
|
RecordingMBID: '',
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
const UNKNOWN = { owned: 0, expected: 0, known: false, complete: false };
|
||||||
|
|
||||||
|
async function albumWith(
|
||||||
|
releases: unknown[],
|
||||||
|
completeness: Record<string, unknown>,
|
||||||
|
local: unknown[] = [],
|
||||||
|
): Promise<LitElement> {
|
||||||
|
stub('explore.Service.BrowseReleases', releases);
|
||||||
|
stub('library.Library.GetAlbumCompleteness', completeness);
|
||||||
|
stub('library.Library.GetAlbumTracks', local);
|
||||||
|
|
||||||
|
const el = await fixture<LitElement>('explore-album-details', {
|
||||||
|
releaseGroupMBID: MBID,
|
||||||
|
localAlbumId: 7,
|
||||||
|
albumName: 'Glass Harbour',
|
||||||
|
});
|
||||||
|
|
||||||
|
await flush();
|
||||||
|
await el.updateComplete;
|
||||||
|
|
||||||
|
return el;
|
||||||
|
}
|
||||||
|
|
||||||
|
const scopeSwitch = (el: LitElement) => shadow(el, '.tracklist-scope wa-switch');
|
||||||
|
|
||||||
|
async function toggle(el: LitElement) {
|
||||||
|
const sw = scopeSwitch(el) as HTMLInputElement | null;
|
||||||
|
if (!sw) throw new Error('no tracklist scope switch on the page');
|
||||||
|
|
||||||
|
sw.checked = !sw.checked;
|
||||||
|
sw.dispatchEvent(new Event('change'));
|
||||||
|
|
||||||
|
await flush();
|
||||||
|
await el.updateComplete;
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('the "show the whole album" switch', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
resetHarness();
|
||||||
|
stub('explore.Service.LookupReleaseGroup', {
|
||||||
|
mbid: MBID,
|
||||||
|
title: 'Glass Harbour',
|
||||||
|
artistCredit: 'Tideline',
|
||||||
|
});
|
||||||
|
stub('explore.Service.GetThumbnail', '');
|
||||||
|
stub('library.Library.GetAllLibrariesWithTrackCounts', []);
|
||||||
|
stub('library.Library.GetFilePathsByRecordingMBIDs', {});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The report, exactly: two tracks on disk, twelve on the release,
|
||||||
|
* and nothing to say so because the tags declared no total.
|
||||||
|
*/
|
||||||
|
it('reveals the rest of the release when the total is unknown', async () => {
|
||||||
|
const el = await albumWith(
|
||||||
|
[release('rel-1', '2019-04-01', 12, 2)],
|
||||||
|
UNKNOWN,
|
||||||
|
localTracks(2),
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(shadowAll(el, '.track-row')).toHaveLength(2);
|
||||||
|
|
||||||
|
await toggle(el);
|
||||||
|
|
||||||
|
const rows = shadowAll(el, '.track-row');
|
||||||
|
expect(rows).toHaveLength(12);
|
||||||
|
// Nothing resolves to a file, so every row is marked unowned —
|
||||||
|
// the dimming is the signal, and it is not this switch's job to
|
||||||
|
// invent ownership it cannot prove.
|
||||||
|
expect(rows.filter((r) => r.classList.contains('unowned'))).toHaveLength(12);
|
||||||
|
});
|
||||||
|
|
||||||
|
/** And back again — a switch that only goes one way is a button. */
|
||||||
|
it('goes back to the files on disk', async () => {
|
||||||
|
const el = await albumWith(
|
||||||
|
[release('rel-1', '2019-04-01', 12, 2)],
|
||||||
|
UNKNOWN,
|
||||||
|
localTracks(2),
|
||||||
|
);
|
||||||
|
|
||||||
|
await toggle(el);
|
||||||
|
expect(shadowAll(el, '.track-row')).toHaveLength(12);
|
||||||
|
|
||||||
|
await toggle(el);
|
||||||
|
expect(shadowAll(el, '.track-row')).toHaveLength(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The automatic rule still fires, and the control has to agree with
|
||||||
|
* the page it is sitting on rather than starting out contradicting
|
||||||
|
* it. This is what the tri-state is for.
|
||||||
|
*/
|
||||||
|
it('starts checked when the tags already said the album is short', async () => {
|
||||||
|
stub(
|
||||||
|
'library.Library.GetFilePathsByRecordingMBIDs',
|
||||||
|
Object.fromEntries(
|
||||||
|
Array.from({ length: 9 }, (_, i) => [
|
||||||
|
`rec-${i + 1}`,
|
||||||
|
[`/music/0${i + 1}.mp3`],
|
||||||
|
]),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
const el = await albumWith(
|
||||||
|
[release('rel-1', '2019-04-01', 12, 9)],
|
||||||
|
{ owned: 9, expected: 12, known: true, complete: false },
|
||||||
|
localTracks(9),
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(shadowAll(el, '.track-row')).toHaveLength(12);
|
||||||
|
expect((scopeSwitch(el) as HTMLInputElement).checked).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
/** And the user outranks it: turning it off asks for the files. */
|
||||||
|
it('lets the automatic answer be overridden', async () => {
|
||||||
|
const el = await albumWith(
|
||||||
|
[release('rel-1', '2019-04-01', 12, 9)],
|
||||||
|
{ owned: 9, expected: 12, known: true, complete: false },
|
||||||
|
localTracks(9),
|
||||||
|
);
|
||||||
|
|
||||||
|
await toggle(el);
|
||||||
|
|
||||||
|
expect(shadowAll(el, '.track-row')).toHaveLength(9);
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A control the accessibility tree cannot name is not a control, and
|
||||||
|
* this app has shipped that fault twice — `wa-slider` pointed
|
||||||
|
* `aria-labelledby` at an empty internal label, and `config-field`
|
||||||
|
* rendered a `<label>` as a sibling with no `for`.
|
||||||
|
*
|
||||||
|
* `wa-switch` gets it right for a *different* reason than either:
|
||||||
|
* its `<input role="switch">` sits inside a native `<label>` that also
|
||||||
|
* holds the `<slot>`, so the name is computed across the flattened
|
||||||
|
* tree from light-DOM text. That is worth an assertion rather than an
|
||||||
|
* assumption — and it has to be the browser's own answer, since
|
||||||
|
* querying shadow roots cannot compute a name.
|
||||||
|
*/
|
||||||
|
it('is named for anyone not looking at it', async () => {
|
||||||
|
await albumWith(
|
||||||
|
[release('rel-1', '2019-04-01', 12, 2)],
|
||||||
|
UNKNOWN,
|
||||||
|
localTracks(2),
|
||||||
|
);
|
||||||
|
|
||||||
|
await expect
|
||||||
|
.element(page.getByRole('switch', { name: 'Show the whole album' }))
|
||||||
|
.toBeInTheDocument();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('is absent where it could not change anything', () => {
|
||||||
|
it('when the album is entirely owned', async () => {
|
||||||
|
// Ten files, a ten-track release: the switch would redraw the
|
||||||
|
// same list, which reads as broken.
|
||||||
|
const el = await albumWith(
|
||||||
|
[release('rel-1', '2019-04-01', 10, 10)],
|
||||||
|
{ owned: 10, expected: 10, known: true, complete: true },
|
||||||
|
localTracks(10),
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(scopeSwitch(el)).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('when there is no catalog release to switch to', async () => {
|
||||||
|
const el = await albumWith([], UNKNOWN, localTracks(4));
|
||||||
|
|
||||||
|
expect(scopeSwitch(el)).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('when the album is not in the library at all', async () => {
|
||||||
|
// Every entry here is already a catalog tracklist; there is no
|
||||||
|
// "only my tracks" to go back to.
|
||||||
|
const el = await albumWith([release('rel-1', '2019-04-01', 12)], UNKNOWN);
|
||||||
|
|
||||||
|
expect(scopeSwitch(el)).toBeNull();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -19,6 +19,11 @@ import {
|
|||||||
update,
|
update,
|
||||||
visual,
|
visual,
|
||||||
} from '@test/support/render';
|
} from '@test/support/render';
|
||||||
|
import {
|
||||||
|
ICON_CAN_REQUEST,
|
||||||
|
ICON_IN_LIBRARY,
|
||||||
|
ICON_REQUESTED,
|
||||||
|
} from '@utils/icon-language';
|
||||||
|
|
||||||
describe('<app-sidebar>', () => {
|
describe('<app-sidebar>', () => {
|
||||||
it('renders a testid per destination, which is how e2e navigates', async () => {
|
it('renders a testid per destination, which is how e2e navigates', async () => {
|
||||||
@@ -154,9 +159,20 @@ describe('<library-status-indicator>', () => {
|
|||||||
it('defaults to "not in library"', async () => {
|
it('defaults to "not in library"', async () => {
|
||||||
const el = await fixture('library-status-indicator');
|
const el = await fixture('library-status-indicator');
|
||||||
|
|
||||||
expect(shadow(el, 'wa-icon')?.getAttribute('name')).toBe('plus');
|
expect(shadow(el, 'wa-icon')?.getAttribute('name')).toBe(ICON_CAN_REQUEST);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Named from the vocabulary rather than written out, or this test
|
||||||
|
* pins the glyphs *against* the table it is supposed to follow —
|
||||||
|
* which is what it did: it asserted `plus` for the un-owned state,
|
||||||
|
* the same glyph two adjacent menu items were using for two other
|
||||||
|
* meanings, and passing was the reason nobody looked.
|
||||||
|
*
|
||||||
|
* What is still worth asserting is that the three differ, which is
|
||||||
|
* the property the states need and the one the table cannot state
|
||||||
|
* about itself here.
|
||||||
|
*/
|
||||||
it('uses a distinct glyph per state', async () => {
|
it('uses a distinct glyph per state', async () => {
|
||||||
const glyphs: (string | null | undefined)[] = [];
|
const glyphs: (string | null | undefined)[] = [];
|
||||||
|
|
||||||
@@ -166,7 +182,8 @@ describe('<library-status-indicator>', () => {
|
|||||||
glyphs.push(shadow(el, 'wa-icon')?.getAttribute('name'));
|
glyphs.push(shadow(el, 'wa-icon')?.getAttribute('name'));
|
||||||
}
|
}
|
||||||
|
|
||||||
expect(glyphs).toEqual(['check', 'bookmark', 'plus']);
|
expect(glyphs).toEqual([ICON_IN_LIBRARY, ICON_REQUESTED, ICON_CAN_REQUEST]);
|
||||||
|
expect(new Set(glyphs).size).toBe(3);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('phrases its label around the entity it describes', async () => {
|
it('phrases its label around the entity it describes', async () => {
|
||||||
|
|||||||
@@ -0,0 +1,140 @@
|
|||||||
|
/**
|
||||||
|
* The icon vocabulary is one table, and nothing writes around it.
|
||||||
|
*
|
||||||
|
* A wrong-but-real icon name renders perfectly: no error, no fallback,
|
||||||
|
* no failing assertion anywhere. That is how `plus` came to mean "add
|
||||||
|
* to the queue", "add to a playlist", "make a new playlist" and "you do
|
||||||
|
* not own this" — the first two adjacent in the same context menu —
|
||||||
|
* while `list` meant the queue, the Playlists destination *and* adding
|
||||||
|
* to the queue.
|
||||||
|
*
|
||||||
|
* `src/icons/index.ts` catches a name that is not *bundled*. Nothing
|
||||||
|
* catches a name that is bundled and means something else, so this
|
||||||
|
* sweeps the source for the governed ones. It is the same shape as
|
||||||
|
* `TestNoDirectRuntimeEmits` and `TestNoWritesOnTheReadPool` in the
|
||||||
|
* backend, and exists for the same reason: the rule is about every call
|
||||||
|
* site, so checking one is checking nothing.
|
||||||
|
*/
|
||||||
|
import { describe, expect, it } from 'vitest';
|
||||||
|
|
||||||
|
import { bundledIconNames } from '../../src/icons';
|
||||||
|
import * as icons from '@utils/icon-language';
|
||||||
|
|
||||||
|
/** Every component source, as text. */
|
||||||
|
const SOURCES = import.meta.glob<string>('../../src/**/*.ts', {
|
||||||
|
eager: true,
|
||||||
|
query: '?raw',
|
||||||
|
import: 'default',
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The names that carry a meaning the table owns.
|
||||||
|
*
|
||||||
|
* Deliberately not every bundled name. `check` is `ICON_IN_LIBRARY`
|
||||||
|
* here and also the "Copied" confirmation in `job-log-view`, which is
|
||||||
|
* a different, perfectly good meaning — governing it would force a
|
||||||
|
* false rename. What belongs on this list is a name that was actually
|
||||||
|
* overloaded.
|
||||||
|
*/
|
||||||
|
const GOVERNED = [
|
||||||
|
'plus',
|
||||||
|
'list',
|
||||||
|
'bookmark',
|
||||||
|
'solid/bookmark',
|
||||||
|
'regular/bookmark',
|
||||||
|
'bars-staggered',
|
||||||
|
];
|
||||||
|
|
||||||
|
/** The one file allowed to say them, plus its own test. */
|
||||||
|
const DEFINITION = /icon-language\.(ts|test\.ts)$/;
|
||||||
|
|
||||||
|
describe('the icon vocabulary', () => {
|
||||||
|
/**
|
||||||
|
* A sweep over nothing passes. This is the assertion that makes the
|
||||||
|
* rest of the file mean something, and it is the first thing that
|
||||||
|
* breaks if the glob pattern stops matching after a move.
|
||||||
|
*/
|
||||||
|
it('actually reads the source', () => {
|
||||||
|
const paths = Object.keys(SOURCES);
|
||||||
|
|
||||||
|
expect(paths.length).toBeGreaterThan(100);
|
||||||
|
expect(paths.some((p) => p.endsWith('/track-list.ts'))).toBe(true);
|
||||||
|
expect(SOURCES[paths[0]!]).toContain('import');
|
||||||
|
});
|
||||||
|
|
||||||
|
it.each(GOVERNED)('is not written around for %s', (name) => {
|
||||||
|
const offenders: string[] = [];
|
||||||
|
|
||||||
|
for (const [path, source] of Object.entries(SOURCES)) {
|
||||||
|
if (DEFINITION.test(path)) continue;
|
||||||
|
|
||||||
|
// Both spellings: an icon in a template, and an icon name in a
|
||||||
|
// data table (which is how the sidebar and bottom-nav carry
|
||||||
|
// theirs).
|
||||||
|
const literal = new RegExp(
|
||||||
|
`(name="${name}"|icon: '${name}'|name=\\$\\{[^}]*'${name}')`,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (literal.test(source)) offenders.push(path);
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(offenders).toEqual([]);
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A meaning with no icon behind it is the state the badge's `queued`
|
||||||
|
* spent a year in — declared, styled, and produced by nothing.
|
||||||
|
*/
|
||||||
|
it('gives every meaning a name', () => {
|
||||||
|
const values = Object.entries(icons).filter(([k]) => k.startsWith('ICON_'));
|
||||||
|
|
||||||
|
expect(values.length).toBeGreaterThan(0);
|
||||||
|
|
||||||
|
for (const [key, value] of values) {
|
||||||
|
expect(`${key}=${value}`).toMatch(/^ICON_[A-Z_]+=[a-z]+[a-z/-]*$/);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Every name in the table is a name the app actually ships.
|
||||||
|
*
|
||||||
|
* This is the loop the vocabulary closes. A name that is not bundled
|
||||||
|
* renders a circled question mark and reports itself to
|
||||||
|
* `__yjIconMisses` — at *runtime*, from a state something has to
|
||||||
|
* reach first. `bookmark-check` is Font Awesome **Pro**, and it was
|
||||||
|
* on `explore-artist-details`'s Follow button, drawn for every
|
||||||
|
* followed artist, invisible to `offline-icons.spec.ts` because no
|
||||||
|
* spec had ever followed one. Reaching the state is no longer how
|
||||||
|
* this is found.
|
||||||
|
*/
|
||||||
|
it('names only icons that are bundled', () => {
|
||||||
|
const bundled = new Set(bundledIconNames());
|
||||||
|
const missing = Object.entries(icons)
|
||||||
|
.filter(([k]) => k.startsWith('ICON_'))
|
||||||
|
.filter(([, v]) => !bundled.has(v as string))
|
||||||
|
.map(([k, v]) => `${k} (${v})`);
|
||||||
|
|
||||||
|
expect(missing).toEqual([]);
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The two states of the request toggle have to be the same glyph in
|
||||||
|
* two weights, or they do not read as each other's opposite — which
|
||||||
|
* is what a plus against a bookmark was.
|
||||||
|
*/
|
||||||
|
it('makes the request toggle an outline/solid pair', () => {
|
||||||
|
expect(icons.ICON_CAN_REQUEST).toBe(`regular/${icons.ICON_REQUESTED.replace('solid/', '')}`);
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The queue and the Playlists destination wore the same icon, and
|
||||||
|
* "add to queue" and "add to playlist" sat next to each other wearing
|
||||||
|
* a third same one. Whatever the table says, these three have to
|
||||||
|
* differ from each other.
|
||||||
|
*/
|
||||||
|
it('keeps the queue, playlists and creating something apart', () => {
|
||||||
|
const three = [icons.ICON_QUEUE, icons.ICON_PLAYLIST, icons.ICON_NEW];
|
||||||
|
|
||||||
|
expect(new Set(three).size).toBe(3);
|
||||||
|
});
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user