feat: separate discs in album page

+ remove tooltip markup
+ refactor css classnames
This commit is contained in:
geoffrey45
2022-10-01 21:35:02 +03:00
committed by Mungai Njoroge
parent 278439eee8
commit 977d9282cb
23 changed files with 187 additions and 193 deletions
+7 -4
View File
@@ -1,6 +1,11 @@
import { FromOptions, NotifType } from "./composables/enums";
export interface Track {
export interface AlbumDisc {
is_album_disc_number?: boolean;
album_page_disc_number?: number;
}
export interface Track extends AlbumDisc {
trackid: string;
title: string;
album?: string;
@@ -18,7 +23,7 @@ export interface Track {
index: number;
hash: string;
copyright?: string;
filetype: string
filetype: string;
}
export interface Folder {
@@ -116,5 +121,3 @@ export interface FuseResult {
item: Track;
refIndex: number;
}