-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMCreatePost.vue
354 lines (324 loc) · 11.1 KB
/
MCreatePost.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
<script lang="ts" setup>
import BaseModal from '@/components/base/BaseModal.vue'
import { QuillEditor } from '@vueup/vue-quill'
import '@vueup/vue-quill/dist/vue-quill.snow.css'
import Button from '@/components/ui/button/Button.vue'
import Card from '@/components/ui/card/Card.vue'
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
import sanitizeHtml from 'sanitize-html'
import { type ICreatePost } from '@/types/group'
import { useQuizzflyStore } from '@/stores/quizzfly/quizzfly'
import { usePostStore } from '@/stores/group/post'
import ScrollArea from '@/components/ui/scroll-area/ScrollArea.vue'
import { uploadMultiFileApi } from '@/services/file'
import { showToast } from '@/utils/toast'
const quizzflyStore = useQuizzflyStore()
const postStore = usePostStore()
const route = useRoute()
const idQuizzfly = ref('')
const idGroup = route.params.groupId as string
const quizzflyShared = computed(() => {
return quizzflyStore.getQuizzflyShared
})
const emits = defineEmits<{
(e: 'close'): void
(e: 'created'): void
(e: 'openQuizzflys'): void
}>()
const isLoading = ref(false)
const closeModal = () => {
handleRemoveQuizzfly()
emits('close')
}
const content = ref('')
const type = ref<'SHARE' | 'POST'>('POST')
const refImage = ref<HTMLInputElement | null>(null)
const listImage = ref<string[]>([])
const ImageUpload = ref<File[]>([])
const quillEditor = ref<any>(null)
const onChangeBg = (e: Event) => {
const target = e.target as HTMLInputElement
const files = target?.files
if (files && files.length > 0) {
for (let i = 0; i < files.length; i++) {
const file = files[i]
ImageUpload.value.push(file)
listImage.value.push(URL.createObjectURL(file))
}
}
}
const showChooseImage = () => {
refImage.value?.click()
}
const resetData = () => {
ImageUpload.value = []
listImage.value = []
content.value = ''
if (quillEditor.value) {
quillEditor.value.setContents('')
}
console.log(ImageUpload.value, content.value, 'check value reset')
}
const removeBg = (data: string) => {
const index = listImage.value.indexOf(data)
if (index > -1) {
ImageUpload.value.splice(index, 1)
listImage.value.splice(index, 1)
}
}
const onSubmit = async () => {
isLoading.value = true
let listImageUpload = [] as any
if (ImageUpload.value.length > 0) {
const formData = new FormData()
for (let i = 0; i < ImageUpload.value.length; i++) {
formData.append('files', ImageUpload.value[i])
}
try {
await uploadMultiFileApi(formData).then((res) => {
listImageUpload.push(...res.data)
})
} catch (error) {
showToast({
description: 'Upload files failed',
variant: 'destructive',
})
}
}
if (quizzflyShared.value.id) {
type.value = 'SHARE'
idQuizzfly.value = quizzflyShared.value.id
} else {
type.value = 'POST'
idQuizzfly.value = ''
}
const data: ICreatePost = {
type: type.value,
content: sanitizeHtml(content.value),
quizzfly_id: quizzflyShared.value?.id,
files: listImageUpload,
}
await postStore.createPost(idGroup, data)
listImageUpload = []
resetData()
closeModal()
emits('created')
isLoading.value = false
}
const handleRemoveQuizzfly = () => {
const data = {}
quizzflyStore.setQuizzflyShared(data)
}
</script>
<template>
<BaseModal @click="closeModal()">
<form
class="post-container bg-white w-[700px] mx-auto my-11 rounded-3xl shadow-lg py-6 flex flex-col gap-6"
@submit.prevent="onSubmit"
@click.stop
>
<div class="flex items-center justify-between px-6">
<div
class="cursor-pointer -ml-2"
@click="closeModal()"
>
<span class="i-material-symbols-light-close-small-outline-rounded w-8 h-8"></span>
</div>
<div class="cursor-pointer w-8 h-8 rounded-xl flex items-center justify-center border">
<span class="i-solar-menu-dots-bold rotate-90"></span>
</div>
</div>
<ScrollArea class="flex px-6 flex-col gap-8 overflow-y-auto overflow-hidden">
<div class="flex flex-col gap-8">
<div class="flex flex-col h-52">
<div class="form-data h-52">
<QuillEditor
ref="quillEditor"
v-model:content="content"
:toolbar="['bold', 'italic', 'underline', 'link']"
placeholder="Enter your post"
content-type="html"
theme="snow"
/>
</div>
</div>
<div
v-if="quizzflyShared?.id || listImage.length > 0"
class="mt-12 flex flex-col gap-6"
>
<ScrollArea
v-if="listImage.length > 0"
class="h-[300px] overflow-hidden overflow-y-auto"
>
<div
class="rounded-lg px-4 py-3 flex flex-col items-center justify-center cursor-pointer border border-primary gap-4"
>
<div
v-for="item in listImage"
:key="item"
class="relative w-full"
>
<img
class="h-[200px] w-full object-cover rounded-lg"
:src="item"
/>
<div
class="flex items-center justify-center absolute -top-2 -right-2 cursor-pointer w-7 h-7 rounded-full bg-slate-100"
@click="removeBg(item)"
>
<span
class="i-material-symbols-light-close-small-outline-rounded h-6 w-6"
></span>
</div>
</div>
</div>
</ScrollArea>
<div
v-if="quizzflyShared?.id"
:class="{ 'h-auto rounded-lg px-4 py-3': quizzflyShared?.id }"
class="hover:bg-slate-100 flex h-11 items-center justify-center cursor-pointer rounded-full border border-primary"
@click="emits('openQuizzflys')"
>
<div class="w-full">
<Card>
<div class="flex w-full h-98 cursor-pointer">
<!-- left -->
<div>
<img
v-image
class="w-[148px] h-[98px] object-cover rounded-s-md"
:src="quizzflyShared.cover_image || ''"
alt=""
/>
</div>
<div class="flex justify-between items-center w-full">
<div class="flex flex-col w-full justify-between p-3 h-full">
<div class="flex items-center justify-between">
<div class="flex item-center gap-1">
<span
class="i-material-symbols-light-grid-view-outline-rounded h-6 w-6"
></span>
<h2 class="title text-base font-medium">
{{ quizzflyShared.title || 'Untitled' }}
</h2>
</div>
</div>
<div class="flex items-center gap-2">
<div class="flex gap-1 items-center">
<Avatar class="h-7 w-7">
<AvatarImage :src="quizzflyShared.avatar" />
<AvatarFallback v-if="quizzflyShared.username">{{
quizzflyShared.username.charAt(0).toUpperCase()
}}</AvatarFallback>
</Avatar>
<div class="text-sm text-gray-500">@{{ quizzflyShared.username }}</div>
</div>
<div class="flex gap-1 items-center">
<span class="i-material-symbols-light-person h-5 w-5"></span>
<p class="text-sm text-gray-500">private</p>
</div>
</div>
</div>
<div class="mr-3">
<Button
variant="secondary"
class="h-8"
@click.prevent.stop="handleRemoveQuizzfly"
>
Remove
</Button>
</div>
</div>
</div>
</Card>
</div>
</div>
</div>
<div
:class="{ 'mt-12': !quizzflyShared?.id && listImage.length === 0 }"
class="form-data flex h-11 items-center justify-center rounded-full border border-primary gap-11"
>
<p class="text-primary">Add to your post you want to share</p>
<div class="flex items-center gap-1">
<div
class="hover:bg-slate-100 h-8 w-8 flex items-center justify-center rounded-full cursor-pointer"
@click="showChooseImage"
>
<span
class="i-material-symbols-light-photo-library-rounded h-7 w-6 text-primary"
></span>
<input
ref="refImage"
type="file"
accept="image/jpeg, image/png, image/jpg"
multiple
class="hidden"
@input="onChangeBg"
/>
</div>
<div
class="hover:bg-slate-100 h-8 w-8 flex items-center justify-center rounded-full cursor-pointer"
@click="emits('openQuizzflys')"
>
<span
class="i-material-symbols-light-grid-view-outline-rounded h-6 w-6 text-primary"
></span>
</div>
</div>
</div>
</div>
</ScrollArea>
<div class="flex justify-end pr-6">
<Button
:disabled="isLoading"
type="submit"
class="h-10 bg-primary flex gap-1 text-sm px-6"
>
<span
v-if="isLoading"
class="i-svg-spinners-ring-resize"
></span>
Post
<span class="i-material-symbols-light-send-rounded -mr-1 w-6 h-7 text-white"></span>
</Button>
</div>
</form>
</BaseModal>
</template>
<style scoped lang="scss">
.post-container {
max-height: calc(100vh - 40px);
}
.form-data {
&:deep() {
.ql-toolbar.ql-snow {
border-top-left-radius: 16px;
border-top-right-radius: 16px;
}
.ql-container.ql-snow {
border-bottom-left-radius: 16px;
border-bottom-right-radius: 16px;
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-track {
background: #f0f0f0;
border-radius: 6px;
}
::-webkit-scrollbar-thumb {
background-color: #888;
border-radius: 6px;
border: 2px solid #f0f0f0;
}
::-webkit-scrollbar-thumb:hover {
background-color: #555;
}
.scrollable-element {
scrollbar-width: thin;
scrollbar-color: #888 #f0f0f0;
}
}
}
</style>