Add move to destination functionality

This commit is contained in:
2023-03-13 10:32:20 +10:30
parent ba87b943ea
commit b40dd218f1
5 changed files with 74 additions and 18 deletions

View File

@@ -33,6 +33,9 @@
.state-downloading {
color: blue;
}
.state-moved {
color: green;
}
.state-complete {
color: green;
}

View File

@@ -101,6 +101,10 @@
this.state = info.state;
this.playlist_current = info.playlist_current;
this.playlist_total = info.playlist_total;
this.destination_chosen = null;
if (info.destination) {
this.destination_chosen = info.destination.name;
}
if (this.state != 'choose profile') {
this.profile_chosen = true;
}