Compare commits

...

3 Commits

Author SHA1 Message Date
Artem Anufrij
25be34d9c7 wip
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-04 11:20:39 +02:00
Artem Anufrij
2abc46216d adjust banner animation for smartphones
All checks were successful
continuous-integration/drone/push Build is passing
2023-09-28 12:48:11 +02:00
Artem Anufrij
dbefc505dd adjust viewbox
All checks were successful
continuous-integration/drone/push Build is passing
2023-09-27 22:35:09 +02:00
5 changed files with 27 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
{
"backend_de": "http://localhost:31204",
"backend_dev": "https://webplay.rocks",
"backend_dev": "http://localhost:31204",
"backend_de": "https://webplay.rocks",
"backend": "https://webplay.rocks"
}

View File

@@ -3,12 +3,18 @@ import axios from 'axios'
export default {
checkIfInstanceIsNew(context) {
return new Promise((resolve) => {
axios.get(context.rootGetters.server + "/api/system/setup").then((res) => {
axios
.get(context.rootGetters.server + "/api/system/setup")
.then((res) => {
console.log(res.status);
if (res.status == 200) {
resolve(true);
} else {
resolve(false);
}
})
.catch(err => {
console.log(err);
});
});
},

View File

@@ -10,11 +10,13 @@ export default {
load(context) {
return new Promise((resolve, reject) => {
axios.get(context.rootGetters.server + "/api/user/login", context.rootGetters.headers).then((res) => {
console.log(res.data);
context.commit("load", res.data);
context.rootState["player"].shuffle = res.data.player.shuffle;
context.rootState["player"].repeatType = res.data.player.repeat;
resolve();
}).catch(err => {
console.log("error")
context.commit("resetToken");
reject(err);
});

View File

@@ -3,12 +3,12 @@
<div id="welcomeLeft" class="flex-column grow">
<div id="banner" class="center flex-column shadow">
<div id="collage">
<svg width="100%" height="100%" viewBox="20 20 700 100">
<svg width="100%" height="100%" viewBox="20 40 600 100">
<g>
<animateTransform id="animY1" attributeName="transform" type="translate" begin="0s; animY2.end" from="-40 -60" to="-10 -20" dur="30s" />
<animateTransform id="animY2" attributeName="transform" type="translate" begin="animY1.end" from="-10 -20" to="-40 -60" dur="30s" />
<animateTransform id="animY1" attributeName="transform" type="translate" begin="0s; animY2.end" from="0 -140" to="-20 -60" dur="30s" />
<animateTransform id="animY2" attributeName="transform" type="translate" begin="animY1.end" from="-20 -60" to="0 -140" dur="30s" />
<image :xlink:href="item.covers.cover64" :x="Math.floor(i / 4) * 64" :y="i % 4 * 64" width="64" height="64" v-for="(item, i) in randomCovers" :key="item" />
<image :xlink:href="item.covers.cover64" :x="Math.floor(i / 6) * 64" :y="i % 6 * 64" width="64" height="64" v-for="(item, i) in randomCovers" :key="item" />
</g>
</svg>
</div>
@@ -113,7 +113,7 @@ export default {
this.$store.dispatch("tracks/loadMostListened");
this.$store.dispatch("videos/loadMostViewed");
if (this.randomCovers.length == 0) {
this.$store.dispatch("albums/loadRandomCovers", 48);
this.$store.dispatch("albums/loadRandomCovers", 60);
this.$store.dispatch("albums/loadAlbums", true);
this.$store.dispatch("artists/loadArtists", true);
}

View File

@@ -123,13 +123,17 @@ export default {
checkTocken() {
let token = localStorage.getItem("token");
if (token) {
console.log("hello token")
this.$store.dispatch("user/setToken", token);
console.log("hello token; user/load")
this.$store
.dispatch("user/load")
.then(() => {
console.log("user loaded")
this.goto();
})
.catch((err) => {
console.log("user not loaded")
console.log(err);
this.checkIfNewBackend();
});
@@ -157,6 +161,7 @@ export default {
});
},
checkIfNewBackend() {
console.log("check new instance")
this.$store.dispatch("checkIfInstanceIsNew").then((res) => {
if (res) {
this.$router.replace("setup");