cache home page recommended videos

This commit is contained in:
Ethan 2022-03-23 23:28:57 -05:00
parent a25c31f3e6
commit a27feaf36c
2 changed files with 30 additions and 12 deletions

View File

@ -4,28 +4,36 @@
* This is to allow use of "recommended" videos on other pages such as /watch
* -Front
* -->
<horizontal-list-renderer :recommends="recommends" />
<horizontal-list-renderer :recommends="recommends" class="video-list" />
</template>
<script>
import horizontalListRenderer from "../components/horizontalListRenderer.vue";
export default {
components: { horizontalListRenderer },
data() {
return {
recommends: [],
};
computed: {
recommends: {
get() {
return this.$store.state.recommendedVideos;
},
set(val) {
this.$store.commit("updateRecommendedVideos", val);
},
},
},
// The following code is only a demo for debugging purposes, note that each "shelfRenderer" has a "title" value that seems to align to the categories at the top of the vanilla yt app
mounted() {
this.$youtube
.recommend()
.then((result) => {
if (result) this.recommends = result[0];
})
.catch((error) => this.$logger("Home Page", error, true));
if (!this.recommends.length) {
this.$youtube
.recommend()
.then((result) => {
if (result) this.recommends = result[0];
})
.catch((error) => this.$logger("Home Page", error, true));
}
},
};
</script>

View File

@ -1 +1,11 @@
/* activate vuex store */
import Vue from "vue";
export const state = () => ({
recommendedVideos: [],
});
export const mutations = {
updateRecommendedVideos(state, payload) {
Vue.set(state, "recommendedVideos", payload);
},
};