Sharkey/src/client/app/common/views/components/url-preview.vue

149 lines
2.6 KiB
Vue
Raw Normal View History

2018-02-05 07:25:19 +02:00
<template>
2018-03-18 19:56:35 +02:00
<iframe v-if="youtubeId" type="text/html" height="250"
2018-03-18 20:46:13 +02:00
:src="`https://www.youtube.com/embed/${youtubeId}?origin=${misskeyUrl}`"
2018-03-18 19:56:35 +02:00
frameborder="0"/>
<div v-else>
<a class="mk-url-preview" :href="url" target="_blank" :title="url" v-if="!fetching">
<div class="thumbnail" v-if="thumbnail" :style="`background-image: url(${thumbnail})`"></div>
<article>
<header>
<h1>{{ title }}</h1>
</header>
<p>{{ description }}</p>
<footer>
<img class="icon" v-if="icon" :src="icon"/>
<p>{{ sitename }}</p>
</footer>
</article>
</a>
</div>
2018-02-05 07:25:19 +02:00
</template>
2018-02-11 16:35:32 +02:00
<script lang="ts">
import Vue from 'vue';
2018-03-18 20:20:10 +02:00
import { url as misskeyUrl } from '../../../config';
2018-02-11 16:35:32 +02:00
export default Vue.extend({
props: ['url'],
data() {
return {
fetching: true,
title: null,
description: null,
thumbnail: null,
icon: null,
2018-03-18 19:56:35 +02:00
sitename: null,
2018-03-18 20:20:10 +02:00
youtubeId: null,
misskeyUrl
2018-02-11 16:35:32 +02:00
};
},
created() {
2018-03-18 19:56:35 +02:00
const url = new URL(this.url);
if (url.hostname == 'www.youtube.com') {
this.youtubeId = url.searchParams.get('v');
} else if (url.hostname == 'youtu.be') {
this.youtubeId = url.pathname;
} else {
2018-04-13 06:05:24 +03:00
fetch('/url?url=' + this.url).then(res => {
2018-03-18 19:56:35 +02:00
res.json().then(info => {
this.title = info.title;
this.description = info.description;
this.thumbnail = info.thumbnail;
this.icon = info.icon;
this.sitename = info.sitename;
this.fetching = false;
});
2018-02-05 07:25:19 +02:00
});
2018-03-18 19:56:35 +02:00
}
2018-02-11 16:35:32 +02:00
}
});
2018-02-05 07:25:19 +02:00
</script>
<style lang="stylus" scoped>
2018-03-18 19:56:35 +02:00
iframe
width 100%
2018-04-21 13:05:55 +03:00
root(isDark)
2018-02-11 16:35:32 +02:00
display block
font-size 16px
2018-04-22 01:23:56 +03:00
border solid 1px isDark ? #191b1f : #eee
2018-02-11 16:35:32 +02:00
border-radius 4px
overflow hidden
&:hover
text-decoration none
2018-04-22 01:23:56 +03:00
border-color isDark ? #4f5561 : #ddd
2018-02-11 16:35:32 +02:00
> article > header > h1
text-decoration underline
> .thumbnail
position absolute
width 100px
height 100%
background-position center
background-size cover
& + article
left 100px
width calc(100% - 100px)
> article
padding 16px
> header
margin-bottom 8px
> h1
margin 0
font-size 1em
2018-04-21 13:05:55 +03:00
color isDark ? #d6dae0 : #555
2018-02-11 16:35:32 +02:00
> p
margin 0
2018-04-21 13:05:55 +03:00
color isDark ? #a4aab3 : #777
2018-02-11 16:35:32 +02:00
font-size 0.8em
> footer
margin-top 8px
height 16px
> img
display inline-block
width 16px
height 16px
margin-right 4px
vertical-align top
> p
display inline-block
margin 0
2018-04-21 13:05:55 +03:00
color isDark ? #b0b4bf : #666
2018-02-11 16:35:32 +02:00
font-size 0.8em
line-height 16px
vertical-align top
@media (max-width 500px)
font-size 8px
border none
> .thumbnail
width 70px
& + article
left 70px
width calc(100% - 70px)
> article
padding 8px
2018-02-05 07:25:19 +02:00
2018-04-21 13:05:55 +03:00
.mk-url-preview[data-darkmode]
root(true)
.mk-url-preview:not([data-darkmode])
root(false)
2018-02-05 07:25:19 +02:00
</style>