2020-01-10 20:00:42 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div v-if="stories.length != 0">
|
2020-04-09 04:03:46 +00:00
|
|
|
<div id="storyContainer" :class="[list == true ? 'mt-1 mr-3 mb-0 ml-1':'m-3']"></div>
|
2020-01-10 20:00:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style type="text/css" scoped>
|
|
|
|
#storyContainer > .story {
|
|
|
|
margin-right: 3rem;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
import 'zuck.js/dist/zuck.css';
|
|
|
|
import 'zuck.js/dist/skins/snapgram.css';
|
|
|
|
let Zuck = require('zuck.js');
|
|
|
|
|
|
|
|
export default {
|
2020-04-09 04:03:46 +00:00
|
|
|
props: ['list'],
|
2020-01-10 20:00:42 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
stories: {},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.fetchStories();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
fetchStories() {
|
2020-02-05 04:04:58 +00:00
|
|
|
axios.get('/api/stories/v0/recent')
|
2020-01-10 20:00:42 +00:00
|
|
|
.then(res => {
|
|
|
|
let data = res.data;
|
|
|
|
let stories = new Zuck('storyContainer', {
|
2020-04-09 04:03:46 +00:00
|
|
|
list: this.list == true ? true : false,
|
2020-01-10 20:00:42 +00:00
|
|
|
stories: data,
|
|
|
|
localStorage: true,
|
|
|
|
callbacks: {
|
|
|
|
onOpen (storyId, callback) {
|
|
|
|
document.body.style.overflow = "hidden";
|
|
|
|
callback()
|
|
|
|
},
|
|
|
|
|
|
|
|
onEnd (storyId, callback) {
|
|
|
|
axios.post('/i/stories/viewed', {
|
|
|
|
id: storyId
|
|
|
|
});
|
|
|
|
callback();
|
|
|
|
},
|
|
|
|
|
|
|
|
onClose (storyId, callback) {
|
|
|
|
document.body.style.overflow = "auto";
|
|
|
|
callback();
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
data.forEach(d => {
|
2020-02-05 04:04:58 +00:00
|
|
|
let url = '/api/stories/v0/fetch/' + d.pid;
|
2020-01-10 20:00:42 +00:00
|
|
|
axios.get(url)
|
|
|
|
.then(res => {
|
|
|
|
res.data.forEach(item => {
|
|
|
|
let img = new Image();
|
|
|
|
img.src = item.src;
|
|
|
|
stories.addItem(d.id, item);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
#storyContainer .story {
|
|
|
|
margin-right: 2rem;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 64px;
|
|
|
|
}
|
|
|
|
.stories.carousel .story > .item-link > .item-preview {
|
|
|
|
height: 64px;
|
|
|
|
}
|
|
|
|
#zuck-modal.with-effects {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.stories.carousel .story > .item-link > .info .name {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.stories.carousel .story > .item-link > .info {
|
|
|
|
}
|
|
|
|
</style>
|