multiple scenes, drag and drop, blob snapshots from video
parent
64e14c715d
commit
43e73e3dc9
@ -1,79 +1,101 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="scene">
|
|
||||||
<button class="remove" @click="emit('remove')">x</button>
|
<section class="scene">
|
||||||
<img :src="img">
|
|
||||||
<div class="meta">
|
|
||||||
<span class="order">{{order}}</span>
|
<h2>{{title}}</h2>
|
||||||
<h3 class="title">{{title}}</h3>
|
|
||||||
<p class="description">{{description}}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
<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>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<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'])
|
import {ref, computed} from 'vue'
|
||||||
const emit = defineEmits(['remove'])
|
|
||||||
|
|
||||||
</script>
|
const props = defineProps(['title'])
|
||||||
<style>
|
|
||||||
|
|
||||||
.scene {
|
const shots = ref([])
|
||||||
position: relative;
|
const drag = ref(false)
|
||||||
display: inline-block;
|
|
||||||
border: 1px solid currentColor;
|
const dragOptions = computed(()=> {
|
||||||
}
|
return {
|
||||||
|
animation: 200,
|
||||||
|
group: "description",
|
||||||
|
disabled: false,
|
||||||
|
ghostClass: "ghost"
|
||||||
|
}})
|
||||||
|
|
||||||
.scene img {
|
|
||||||
width: 320px;
|
|
||||||
height: 180px;
|
|
||||||
object-fit: cover;
|
|
||||||
}
|
|
||||||
|
|
||||||
.meta {
|
const add = (e) => {
|
||||||
position: relative;
|
shots.value.push(e)
|
||||||
max-width: 320px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.title, .description{
|
const remove = (index) => {
|
||||||
margin-block: 0;
|
shots.value.splice(index, 1)
|
||||||
margin-inline: 8px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.description {
|
|
||||||
font-size: 0.75rem;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
.shots {
|
||||||
|
margin-block: 32px;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.order {
|
.ghost {
|
||||||
position: absolute;
|
opacity: 0.5;
|
||||||
top: 0;
|
|
||||||
right: 4px ;
|
|
||||||
display: inline-block;
|
|
||||||
background-color: white;
|
|
||||||
z-index: 100;
|
|
||||||
padding: 4px;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.remove {
|
.scene {
|
||||||
opacity: 0;
|
margin-block: 32px;
|
||||||
dislay: inline-block;
|
|
||||||
position: absolute;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
color: white;
|
|
||||||
right: 4px;
|
|
||||||
top: 0px;
|
|
||||||
font-size: 1rem;
|
|
||||||
font-weight: bold;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.scene:hover .remove {
|
.scene h2 {
|
||||||
opacity: 1;
|
margin-block: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</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