build artist page

+ connect artist page to backend
~ bugs introduced as there are hashing changes in the backend

[will fix later]
This commit is contained in:
geoffrey45
2022-12-03 16:06:26 +03:00
committed by Mungai Njoroge
parent fff2c53801
commit 075765088f
17 changed files with 382 additions and 82 deletions
+6 -1
View File
@@ -34,7 +34,7 @@ export interface Folder {
is_sym: boolean;
}
export interface AlbumInfo {
export interface Album {
albumid: string;
title: string;
albumartists: {
@@ -61,6 +61,11 @@ export interface AlbumInfo {
export interface Artist {
name: string;
image: string;
artisthash: string;
trackcount: number;
albumcount: number;
duration: number;
colors: string[];
}
export interface Option {