mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Use Mixins for global functions.
This commit is contained in:
parent
dfa94f6d7f
commit
8e545dfb27
5 changed files with 134 additions and 130 deletions
|
@ -71,14 +71,11 @@ export default {
|
||||||
.then(data => (this.channel = data))
|
.then(data => (this.channel = data))
|
||||||
.then(() => (document.title = this.channel.name + " - Piped"));
|
.then(() => (document.title = this.channel.name + " - Piped"));
|
||||||
},
|
},
|
||||||
timeFormat(d) {
|
|
||||||
return require("@/utils/TimeUtils.js").default.timeFormat(d);
|
|
||||||
},
|
|
||||||
handleScroll() {
|
handleScroll() {
|
||||||
if (this.loading || !this.channel || !this.channel.nextpage) return;
|
if (this.loading || !this.channel || !this.channel.nextpage) return;
|
||||||
if (
|
if (
|
||||||
window.innerHeight + window.scrollY >=
|
window.innerHeight + window.scrollY >=
|
||||||
document.body.offsetHeight - window.innerHeight / 2
|
document.body.offsetHeight - window.innerHeight
|
||||||
) {
|
) {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
fetch(
|
fetch(
|
||||||
|
|
|
@ -51,9 +51,6 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
async fetchTrending() {
|
async fetchTrending() {
|
||||||
return await (await fetch(Constants.BASE_URL + "/trending")).json();
|
return await (await fetch(Constants.BASE_URL + "/trending")).json();
|
||||||
},
|
|
||||||
timeFormat(d) {
|
|
||||||
return require("@/utils/TimeUtils.js").default.timeFormat(d);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,13 +14,17 @@
|
||||||
|
|
||||||
<p class="uk-dark">
|
<p class="uk-dark">
|
||||||
<font-awesome-icon icon="thumbs-down"></font-awesome-icon>
|
<font-awesome-icon icon="thumbs-down"></font-awesome-icon>
|
||||||
{{ video.likes }}
|
<b>{{ video.likes }}</b>
|
||||||
|
|
||||||
<font-awesome-icon icon="thumbs-up"></font-awesome-icon>
|
<font-awesome-icon icon="thumbs-up"></font-awesome-icon>
|
||||||
{{ video.dislikes }}
|
<b>{{ video.dislikes }}</b>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<font-awesome-icon icon="eye"></font-awesome-icon>
|
<font-awesome-icon icon="eye"></font-awesome-icon>
|
||||||
{{ video.views }} views
|
<b>{{ video.views }}</b> views
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Uploaded on <b>{{ video.uploadDate }}</b>
|
||||||
</p>
|
</p>
|
||||||
<p class="uk-light" v-html="video.description"></p>
|
<p class="uk-light" v-html="video.description"></p>
|
||||||
<a v-if="sponsors && sponsors.segments"
|
<a v-if="sponsors && sponsors.segments"
|
||||||
|
|
26
src/main.js
26
src/main.js
|
@ -12,7 +12,33 @@ import App from './App.vue'
|
||||||
|
|
||||||
import './registerServiceWorker'
|
import './registerServiceWorker'
|
||||||
|
|
||||||
|
const mixin = {
|
||||||
|
methods: {
|
||||||
|
timeFormat: function (duration) {
|
||||||
|
|
||||||
|
var pad = function (num, size) {
|
||||||
|
return ("000" + num).slice(size * -1);
|
||||||
|
};
|
||||||
|
|
||||||
|
var time = parseFloat(duration).toFixed(3),
|
||||||
|
hours = Math.floor(time / 60 / 60),
|
||||||
|
minutes = Math.floor(time / 60) % 60,
|
||||||
|
seconds = Math.floor(time - minutes * 60);
|
||||||
|
|
||||||
|
var str = "";
|
||||||
|
|
||||||
|
if (hours > 0) str += pad(hours, 2) + ":";
|
||||||
|
|
||||||
|
str += pad(minutes, 2) + ":" + pad(seconds, 2);
|
||||||
|
|
||||||
|
return str;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
app.use(router)
|
app.use(router)
|
||||||
|
app.mixin(mixin)
|
||||||
app.component('font-awesome-icon', FontAwesomeIcon)
|
app.component('font-awesome-icon', FontAwesomeIcon)
|
||||||
app.mount('#app')
|
app.mount('#app')
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
export default {
|
|
||||||
timeFormat: function (duration) {
|
|
||||||
var pad = function (num, size) {
|
|
||||||
return ("000" + num).slice(size * -1);
|
|
||||||
};
|
|
||||||
|
|
||||||
var time = parseFloat(duration).toFixed(3),
|
|
||||||
hours = Math.floor(time / 60 / 60),
|
|
||||||
minutes = Math.floor(time / 60) % 60,
|
|
||||||
seconds = Math.floor(time - minutes * 60);
|
|
||||||
|
|
||||||
var str = "";
|
|
||||||
|
|
||||||
if (hours > 0) str += pad(hours, 2) + ":";
|
|
||||||
|
|
||||||
str += pad(minutes, 2) + ":" + pad(seconds, 2);
|
|
||||||
|
|
||||||
return str;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue