multiple scenes, drag and drop, blob snapshots from video
parent
64e14c715d
commit
43e73e3dc9
@ -1,79 +1,101 @@
|
||||
<template>
|
||||
<div class="scene">
|
||||
<button class="remove" @click="emit('remove')">x</button>
|
||||
<img :src="img">
|
||||
<div class="meta">
|
||||
<span class="order">{{order}}</span>
|
||||
<h3 class="title">{{title}}</h3>
|
||||
<p class="description">{{description}}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="scene">
|
||||
|
||||
|
||||
<h2>{{title}}</h2>
|
||||
|
||||
|
||||
|
||||
<draggable
|
||||
tag="transition-group"
|
||||
:component-data="{
|
||||
tag: 'div',
|
||||
type: 'transition-group',
|
||||
name: !drag ? 'flip-list' : null
|
||||
}"
|
||||
v-bind="dragOptions"
|
||||
group="shots"
|
||||
class="shots list-group"
|
||||
:list="shots"
|
||||
@start="drag=true"
|
||||
@end="drag=false"
|
||||
item-key="id">
|
||||
|
||||
<template #footer>
|
||||
<AddShot @add="add"/>
|
||||
</template>
|
||||
|
||||
<template #item="{element, index}">
|
||||
<ShotEntry
|
||||
:title="element.title"
|
||||
:description="element.description"
|
||||
:img="element.img"
|
||||
:order="index + 1"
|
||||
@remove="remove(index)"
|
||||
/>
|
||||
</template>
|
||||
</draggable>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
import draggable from 'vuedraggable'
|
||||
import AddShot from '../components/AddShot.vue'
|
||||
import ShotEntry from '../components/ShotEntry.vue'
|
||||
|
||||
const props = defineProps(['title', 'description', 'img', 'order'])
|
||||
const emit = defineEmits(['remove'])
|
||||
import {ref, computed} from 'vue'
|
||||
|
||||
</script>
|
||||
<style>
|
||||
const props = defineProps(['title'])
|
||||
|
||||
.scene {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
border: 1px solid currentColor;
|
||||
}
|
||||
const shots = ref([])
|
||||
const drag = ref(false)
|
||||
|
||||
const dragOptions = computed(()=> {
|
||||
return {
|
||||
animation: 200,
|
||||
group: "description",
|
||||
disabled: false,
|
||||
ghostClass: "ghost"
|
||||
}})
|
||||
|
||||
.scene img {
|
||||
width: 320px;
|
||||
height: 180px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.meta {
|
||||
position: relative;
|
||||
max-width: 320px;
|
||||
const add = (e) => {
|
||||
shots.value.push(e)
|
||||
}
|
||||
|
||||
.title, .description{
|
||||
margin-block: 0;
|
||||
margin-inline: 8px;
|
||||
const remove = (index) => {
|
||||
shots.value.splice(index, 1)
|
||||
}
|
||||
|
||||
.description {
|
||||
font-size: 0.75rem;
|
||||
margin-bottom: 8px;
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
.shots {
|
||||
margin-block: 32px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.order {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 4px ;
|
||||
display: inline-block;
|
||||
background-color: white;
|
||||
z-index: 100;
|
||||
padding: 4px;
|
||||
font-weight: bold;
|
||||
.ghost {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.remove {
|
||||
opacity: 0;
|
||||
dislay: inline-block;
|
||||
position: absolute;
|
||||
background: none;
|
||||
border: none;
|
||||
color: white;
|
||||
right: 4px;
|
||||
top: 0px;
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
.scene {
|
||||
margin-block: 32px;
|
||||
}
|
||||
|
||||
.scene:hover .remove {
|
||||
opacity: 1;
|
||||
.scene h2 {
|
||||
margin-block: 32px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
@ -0,0 +1,85 @@
|
||||
<template>
|
||||
<div class="shot">
|
||||
<button class="remove" @click="emit('remove')">x</button>
|
||||
<img :src="img">
|
||||
<div class="meta">
|
||||
<span class="order">{{order}}</span>
|
||||
<h3 class="title">{{title}}</h3>
|
||||
<p class="description">{{description}}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</template>
|
||||
<script setup>
|
||||
|
||||
|
||||
const props = defineProps(['title', 'description', 'img', 'order'])
|
||||
const emit = defineEmits(['remove'])
|
||||
|
||||
</script>
|
||||
<style>
|
||||
|
||||
.shot {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.shot img {
|
||||
width: 320px;
|
||||
height: 180px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.shot .meta {
|
||||
position: relative;
|
||||
max-width: 320px;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.title, .description{
|
||||
margin-block: 0;
|
||||
margin-inline: 8px;
|
||||
}
|
||||
|
||||
.title {
|
||||
word-wrap: break-word;
|
||||
padding-right: 1rem;
|
||||
}
|
||||
|
||||
.description {
|
||||
font-size: 0.85rem;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.order {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 4px ;
|
||||
display: inline-block;
|
||||
background-color: white;
|
||||
z-index: 100;
|
||||
padding: 4px;
|
||||
font-weight: bold;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.remove {
|
||||
opacity: 0;
|
||||
dislay: inline-block;
|
||||
position: absolute;
|
||||
background: none;
|
||||
border: none;
|
||||
color: white;
|
||||
right: 4px;
|
||||
top: 0px;
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.shot:hover .remove {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
</style>
|
Loading…
Reference in New Issue