-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathBookmark.vue
63 lines (61 loc) · 2.07 KB
/
Bookmark.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<template>
<div
class="p-4 bg-gray-200 dark:bg-gray-840 m-1 rounded flex items-center relative cursor-pointer"
@click="setTime(bookmark.seek)"
>
<div class="mr-4">
<i class="fa-light fa-fw fa-bookmark fa-xl" />
</div>
<div class="flex-1">
<div class="text-sm">{{ bookmark.name }}</div>
<div class="text-xs text-gray-500 flex items-center justify-between">
<div class="flex flex-col">
<span class="text-pink-600"><i class="fa-solid fa-fw fa-circle-play mr-1" />{{ $formatToTime(bookmark.seek, 3, false) }}</span>
<span>Added: {{ $formatDate(bookmark.added) }} - {{ $formatTime(bookmark.added) }}</span>
</div>
</div>
</div>
<div @click.stop="showdelete = true" class=""><i class="fa-light fa-fw fa-trash-can" /></div>
<div v-if="showdelete" class="absolute inset-0 bg-gray-200 dark:bg-gray-840 p-2 flex items-center">
<div class="flex w-full">
<button
@click.stop="deleteItem"
class="flex-1 bg-pink-600 hover:bg-opacity-90 p-4 py-2 text-gray-50 flex flex-col text-xs mx-1 items-center justify-content text-center rounded"
>
<span class="text-gray-50 text-opacity-80">Delete bookmark?</span>
<span class="text-sm uppercase">Yes</span>
</button>
<button
@click.stop="showdelete = false"
class="flex-1 bg-gray-700 hover:bg-opacity-90 p-4 py-2 text-gray-50 flex flex-col text-xs mx-1 items-center justify-content text-center rounded"
>
<span class="text-gray-50 text-opacity-70">Delete bookmark?</span>
<span class="text-sm uppercase">No</span>
</button>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'Bookmark',
props: ['bookmark', 'index'],
data () {
return {
showdelete: false
}
},
computed: {
},
methods: {
setTime (time) {
this.showdelete = false
this.$emit('setTime', time)
},
deleteItem () {
this.showdelete = false
this.$store.dispatch('app/deleteBookmark', this.index)
}
}
}
</script>