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

80 lines
1.5 KiB
Vue
Raw Normal View History

2018-02-12 02:06:22 +02:00
<template>
2018-05-29 05:45:01 +03:00
<div class="mk-media-list">
2018-05-29 07:21:38 +03:00
<div :data-count="mediaList.length" ref="grid">
2018-05-29 05:45:01 +03: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 02:06:22 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
2018-05-04 10:27:03 +03:00
props: {
mediaList: {
required: true
},
raw: {
default: false
}
2018-05-29 07:21:38 +03:00
},
mounted() {
// for Safari bug
2018-05-29 09:38:48 +03:00
this.$refs.grid.style.height = this.$refs.grid.clientHeight ? `${this.$refs.grid.clientHeight}px` : '128px';
2018-05-04 10:27:03 +03:00
}
2018-02-12 02:06:22 +02:00
});
</script>
2018-02-15 08:14:28 +02:00
<style lang="stylus" scoped>
.mk-media-list
2018-05-29 05:45:01 +03:00
width 100%
2018-02-15 08:14:28 +02:00
2018-05-29 05:45:01 +03:00
&:before
content ''
display block
padding-top 56.25% // 16:9
> div
position absolute
top 0
2018-05-29 05:53:28 +03:00
right 0
2018-05-29 07:21:38 +03:00
bottom 0
left 0
2018-05-29 05:45:01 +03:00
display grid
grid-gap 4px
&[data-count="1"]
grid-template-rows 1fr
&[data-count="2"]
grid-template-columns 1fr 1fr
grid-template-rows 1fr
&[data-count="3"]
grid-template-columns 1fr 0.5fr
grid-template-rows 1fr 1fr
:nth-child(1)
grid-row 1 / 3
:nth-child(3)
grid-column 2 / 3
2018-05-29 07:21:38 +03:00
grid-row 2 / 3
2018-05-29 05:45:01 +03:00
&[data-count="4"]
grid-template-columns 1fr 1fr
grid-template-rows 1fr 1fr
2018-05-04 10:27:03 +03:00
:nth-child(1)
2018-05-29 05:45:01 +03:00
grid-column 1 / 2
grid-row 1 / 2
:nth-child(2)
grid-column 2 / 3
grid-row 1 / 2
:nth-child(3)
2018-05-29 05:45:01 +03:00
grid-column 1 / 2
grid-row 2 / 3
:nth-child(4)
grid-column 2 / 3
2018-05-29 05:45:01 +03:00
grid-row 2 / 3
2018-05-04 10:27:03 +03:00
2018-02-15 08:14:28 +02:00
</style>