misskey-awawa/src/client/app/common/views/components/media-list.vue

92 lines
1.6 KiB
Vue
Raw Normal View History

2018-02-12 00:06:22 +00:00
<template>
2018-05-29 02:45:01 +00:00
<div class="mk-media-list">
2018-05-29 04:21:38 +00:00
<div :data-count="mediaList.length" ref="grid">
2018-05-29 02:45:01 +00:00
<template v-for="media in mediaList">
<mk-media-video :video="media" :key="media.id" v-if="media.type.startsWith('video')" :inline-playable="mediaList.length === 1"/>
<mk-media-image :image="media" :key="media.id" v-else :raw="raw"/>
</template>
</div>
2018-02-12 00:06:22 +00:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
2018-05-04 07:27:03 +00:00
props: {
mediaList: {
required: true
},
raw: {
default: false
}
2018-05-29 04:21:38 +00:00
},
mounted() {
// for Safari bug
2018-05-29 06:38:48 +00:00
this.$refs.grid.style.height = this.$refs.grid.clientHeight ? `${this.$refs.grid.clientHeight}px` : '128px';
2018-05-04 07:27:03 +00:00
}
2018-02-12 00:06:22 +00:00
});
</script>
2018-02-15 06:14:28 +00:00
<style lang="stylus" scoped>
.mk-media-list
2018-05-29 02:45:01 +00:00
width 100%
2018-02-15 06:14:28 +00:00
2018-05-29 02:45:01 +00:00
&:before
content ''
display block
padding-top 56.25% // 16:9
> div
position absolute
top 0
2018-05-29 02:53:28 +00:00
right 0
2018-05-29 04:21:38 +00:00
bottom 0
left 0
2018-05-29 02:45:01 +00:00
display grid
grid-gap 4px
2018-07-19 17:40:37 +00:00
> *
overflow hidden
border-radius 4px
2018-05-29 02:45:01 +00:00
&[data-count="1"]
grid-template-rows 1fr
2018-07-19 17:40:37 +00:00
2018-05-29 02:45:01 +00:00
&[data-count="2"]
grid-template-columns 1fr 1fr
grid-template-rows 1fr
2018-07-19 17:40:37 +00:00
2018-05-29 02:45:01 +00:00
&[data-count="3"]
grid-template-columns 1fr 0.5fr
grid-template-rows 1fr 1fr
2018-07-19 17:40:37 +00:00
> *:nth-child(1)
2018-05-29 02:45:01 +00:00
grid-row 1 / 3
2018-07-19 17:40:37 +00:00
> *:nth-child(3)
2018-05-29 02:45:01 +00:00
grid-column 2 / 3
2018-05-29 04:21:38 +00:00
grid-row 2 / 3
2018-07-19 17:40:37 +00:00
2018-05-29 02:45:01 +00:00
&[data-count="4"]
grid-template-columns 1fr 1fr
grid-template-rows 1fr 1fr
2018-05-04 07:27:03 +00:00
2018-07-19 17:40:37 +00:00
> *:nth-child(1)
2018-05-29 02:45:01 +00:00
grid-column 1 / 2
grid-row 1 / 2
2018-07-19 17:40:37 +00:00
> *:nth-child(2)
2018-05-29 02:45:01 +00:00
grid-column 2 / 3
grid-row 1 / 2
2018-07-19 17:40:37 +00:00
> *:nth-child(3)
2018-05-29 02:45:01 +00:00
grid-column 1 / 2
grid-row 2 / 3
2018-07-19 17:40:37 +00:00
> *:nth-child(4)
grid-column 2 / 3
2018-05-29 02:45:01 +00:00
grid-row 2 / 3
2018-05-04 07:27:03 +00:00
2018-02-15 06:14:28 +00:00
</style>