|
@@ -5,140 +5,158 @@ import { useRouter, useRoute } from "vue-router";
|
|
|
|
|
|
import ChooseSubjectToTalk from "~/components/ChooseSubjectToTalk/index.vue";
|
|
|
import { getSourcesSuffix } from "~/utils/util";
|
|
|
-import { useUploadImage } from "~/useHook/useUploadImage"
|
|
|
+import { useUploadImage } from "~/useHook/useUploadImage";
|
|
|
import { usePost } from "~/useHook/usePost";
|
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
|
|
-const IMAGE_SUFFIX = getSourcesSuffix('image')
|
|
|
-const Router = useRouter()
|
|
|
-const Route = useRoute()
|
|
|
+const IMAGE_SUFFIX = getSourcesSuffix("image");
|
|
|
+const Router = useRouter();
|
|
|
+const Route = useRoute();
|
|
|
|
|
|
-const editId = Route.query?.id
|
|
|
+const editId = Route.query?.id;
|
|
|
+const currentTopid = ref()
|
|
|
+const topicTitle = ref()
|
|
|
+currentTopid.value = Route.query.id;
|
|
|
+topicTitle.value = Route.query.title;
|
|
|
|
|
|
-console.log('%c editId >>>', 'background: blue; color: #fff', editId);
|
|
|
+console.log("%c editId >>>", "background: blue; color: #fff", editId);
|
|
|
|
|
|
+const forumDesc = ref("");
|
|
|
|
|
|
-const forumDesc = ref('')
|
|
|
-
|
|
|
-const handleRecordMoment = status => {
|
|
|
+const handleRecordMoment = (status) => {
|
|
|
// status: draft.草稿, normal.发布
|
|
|
- let str = status === 'draft' ? '存草稿' : '发布'
|
|
|
+ let str = status === "draft" ? "存草稿" : "发布";
|
|
|
|
|
|
ElMessageBox.confirm(`确认要${str}吗`).then(async () => {
|
|
|
let formdata = {
|
|
|
content: forumDesc.value,
|
|
|
- topic_id: currentTopic.value ? currentTopic.value.id : '0', // default 0 or ''
|
|
|
+ topic_id: currentTopic.value ? currentTopic.value.id : "0", // default 0 or ''
|
|
|
status: status,
|
|
|
- images: showFileList.value.map(image => (image.urlHref))
|
|
|
- }
|
|
|
+ images: showFileList.value.map((image) => image.urlHref),
|
|
|
+ };
|
|
|
try {
|
|
|
- const result = await usePost('forum', formdata)
|
|
|
- ElMessage.success(`${str}成功`)
|
|
|
+ const result = await usePost("forum", formdata);
|
|
|
+ ElMessage.success(`${str}成功`);
|
|
|
+ if (str == "存草稿") {
|
|
|
+ Router.push({
|
|
|
+ path: "/draft",
|
|
|
+ });
|
|
|
+ } else if (str == "发布") {
|
|
|
+ Router.push({
|
|
|
+ path: "/forum",
|
|
|
+ });
|
|
|
+ }
|
|
|
} catch (error) {
|
|
|
- ElMessage.error(`${str}失败`)
|
|
|
+ ElMessage.error(`${str}失败`);
|
|
|
}
|
|
|
- })
|
|
|
-}
|
|
|
+ });
|
|
|
+};
|
|
|
|
|
|
-const visibilityDialog = ref(false)
|
|
|
+const visibilityDialog = ref(false);
|
|
|
|
|
|
// TODO:取消发布是否要主动吊起存草稿状态
|
|
|
const handleCancelSend = () => {
|
|
|
- Router.back()
|
|
|
-}
|
|
|
+ Router.back();
|
|
|
+};
|
|
|
|
|
|
// 接收话题
|
|
|
-const currentTopic = ref(null)
|
|
|
-const handleReciveTopic = topic => {
|
|
|
- console.log('%c current topic >>>', 'background: blue; color: #fff', topic);
|
|
|
- currentTopic.value = topic
|
|
|
-}
|
|
|
+const currentTopic = ref(null);
|
|
|
+const handleReciveTopic = (topic) => {
|
|
|
+ console.log("%c current topic >>>", "background: blue; color: #fff", topic);
|
|
|
+ currentTopic.value = topic;
|
|
|
+};
|
|
|
|
|
|
// upload file
|
|
|
-const uploadRef = ref()
|
|
|
-const fileList = ref([])
|
|
|
+const uploadRef = ref();
|
|
|
+const fileList = ref([]);
|
|
|
const handleClickUploadBtn = () => {
|
|
|
- visibilityDialog.value = true
|
|
|
-}
|
|
|
+ visibilityDialog.value = true;
|
|
|
+};
|
|
|
|
|
|
// remove image
|
|
|
-const handleRemoveImage = element => {
|
|
|
- fileList.value.splice(fileList.value.findIndex(file => file === element), 1)
|
|
|
- fileList.value = fileList.value.filter(file => file !== element)
|
|
|
-}
|
|
|
-
|
|
|
-const visibilityImagePreview = ref(false)
|
|
|
-const imagePreviewUrl = ref('')
|
|
|
-const handlePictureCardPreviewImage = element => {
|
|
|
- visibilityImagePreview.value = false
|
|
|
- imagePreviewUrl.value = element.url
|
|
|
- visibilityImagePreview.value = true
|
|
|
-}
|
|
|
-
|
|
|
-// TODO: 上传多图的 loading
|
|
|
+const handleRemoveImage = (element) => {
|
|
|
+ fileList.value.splice(
|
|
|
+ fileList.value.findIndex((file) => file === element),
|
|
|
+ 1
|
|
|
+ );
|
|
|
+ fileList.value = fileList.value.filter((file) => file !== element);
|
|
|
+};
|
|
|
+
|
|
|
+const visibilityImagePreview = ref(false);
|
|
|
+const imagePreviewUrl = ref("");
|
|
|
+const handlePictureCardPreviewImage = (element) => {
|
|
|
+ visibilityImagePreview.value = false;
|
|
|
+ imagePreviewUrl.value = element.url;
|
|
|
+ visibilityImagePreview.value = true;
|
|
|
+};
|
|
|
+
|
|
|
+// TODO: 上传多图的 loading
|
|
|
// 辅助上传图片
|
|
|
-const handleUploadImage = async options => {
|
|
|
- console.log('%c options >>>', 'background: blue; color: #fff', options);
|
|
|
+const handleUploadImage = async (options) => {
|
|
|
+ console.log("%c options >>>", "background: blue; color: #fff", options);
|
|
|
try {
|
|
|
+ const { file } = options;
|
|
|
|
|
|
- const { file } = options
|
|
|
-
|
|
|
- const formdata = new FormData()
|
|
|
+ const formdata = new FormData();
|
|
|
|
|
|
- formdata.append('image', file)
|
|
|
+ formdata.append("image", file);
|
|
|
|
|
|
- const { imageFile } = await useUploadImage(formdata)
|
|
|
- console.log('%c ImageFile >>>', 'background: blue; color: #fff', imageFile);
|
|
|
+ const { imageFile } = await useUploadImage(formdata);
|
|
|
+ console.log("%c ImageFile >>>", "background: blue; color: #fff", imageFile);
|
|
|
// imageCover.value = imageFile.value
|
|
|
- options.onSuccess(imageFile.value)
|
|
|
- console.log('show val>>>', fileList.value);
|
|
|
+ options.onSuccess(imageFile.value);
|
|
|
+ console.log("show val>>>", fileList.value);
|
|
|
} catch (error) {
|
|
|
- options.onError(options.file)
|
|
|
- console.log('%c ??? >>>', 'background: blue; color: #fff', error);
|
|
|
- ElMessage.error('上传封面图出错')
|
|
|
+ options.onError(options.file);
|
|
|
+ console.log("%c ??? >>>", "background: blue; color: #fff", error);
|
|
|
+ ElMessage.error("上传封面图出错");
|
|
|
}
|
|
|
-}
|
|
|
+};
|
|
|
|
|
|
// upload image success event;
|
|
|
const handleUploadImageSuccess = (response, uploadFile) => {
|
|
|
if (response) {
|
|
|
- uploadFile.urlHref = response
|
|
|
+ uploadFile.urlHref = response;
|
|
|
}
|
|
|
-}
|
|
|
+};
|
|
|
|
|
|
// 图片上传失败。
|
|
|
// TODO: 根据上传失败的图片 `uid`进行判断是否删除列表失败图片
|
|
|
const handleUploadImageError = (file, uploadFile) => {
|
|
|
if (file) {
|
|
|
- console.log('error', file);
|
|
|
- const { uid } = uploadFile
|
|
|
+ console.log("error", file);
|
|
|
+ const { uid } = uploadFile;
|
|
|
// TODO: 更新fileList
|
|
|
// handleConfirmImagesShow()
|
|
|
-
|
|
|
}
|
|
|
-}
|
|
|
+};
|
|
|
|
|
|
// 确定文件列表可以被展示
|
|
|
-const showFileList = ref([]) // 用于展示的图片列表
|
|
|
+const showFileList = ref([]); // 用于展示的图片列表
|
|
|
const handleConfirmImagesShow = () => {
|
|
|
if (!fileList.value.length) return;
|
|
|
- let temporaryArrs = []
|
|
|
- fileList.value.map(file => {
|
|
|
- console.log('%c file == >>>', 'background: blue; color: #fff', file);
|
|
|
- temporaryArrs.push(file)
|
|
|
- })
|
|
|
- showFileList.value = [...temporaryArrs]
|
|
|
- visibilityDialog.value = false
|
|
|
-}
|
|
|
-
|
|
|
+ let temporaryArrs = [];
|
|
|
+ fileList.value.map((file) => {
|
|
|
+ console.log("%c file == >>>", "background: blue; color: #fff", file);
|
|
|
+ temporaryArrs.push(file);
|
|
|
+ });
|
|
|
+ showFileList.value = [...temporaryArrs];
|
|
|
+ visibilityDialog.value = false;
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
|
<div class="forum-edit-container">
|
|
|
<div class="header flex-row flex-aic flex-jc-sb">
|
|
|
<div class="title">论坛话题发布</div>
|
|
|
- <div class="cancel" @click="handleCancelSend">取消发布</div>
|
|
|
+ <div
|
|
|
+ class="cancel"
|
|
|
+ style="background-color: #fff"
|
|
|
+ @click="handleCancelSend"
|
|
|
+ >
|
|
|
+ 取消发布
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<div class="forum-edit-upload">
|
|
@@ -157,28 +175,61 @@ const handleConfirmImagesShow = () => {
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <el-input resize="none" :show-word-limit="true" placeholder="请输入你想发布的内容..." type="textarea" :rows="12"
|
|
|
- v-model="forumDesc"></el-input>
|
|
|
+ <el-input
|
|
|
+ resize="none"
|
|
|
+ :show-word-limit="true"
|
|
|
+ placeholder="请输入你想发布的内容..."
|
|
|
+ type="textarea"
|
|
|
+ :rows="12"
|
|
|
+ v-model="forumDesc"
|
|
|
+ ></el-input>
|
|
|
|
|
|
<footer class="footer flex-row flex-aic flex-jc-sb">
|
|
|
<div class="footer__left">
|
|
|
- <ChooseSubjectToTalk line @recive-topic="handleReciveTopic" />
|
|
|
+ <ChooseSubjectToTalk
|
|
|
+ line
|
|
|
+ @recive-topic="handleReciveTopic"
|
|
|
+ :Topid="currentTopid"
|
|
|
+ :Title="topicTitle"
|
|
|
+ />
|
|
|
</div>
|
|
|
<div class="footer__right">
|
|
|
<el-button @click="handleRecordMoment('draft')">存草稿</el-button>
|
|
|
- <el-button type="primary" @click="handleRecordMoment('normal')">发布</el-button>
|
|
|
+ <el-button type="primary" @click="handleRecordMoment('normal')"
|
|
|
+ >发布</el-button
|
|
|
+ >
|
|
|
</div>
|
|
|
</footer>
|
|
|
|
|
|
- <el-dialog class="dialog-uploadbox" title="图库编辑" v-model="visibilityDialog" width="560">
|
|
|
+ <el-dialog
|
|
|
+ class="dialog-uploadbox"
|
|
|
+ title="图库编辑"
|
|
|
+ v-model="visibilityDialog"
|
|
|
+ width="560"
|
|
|
+ >
|
|
|
<p class="tips">选择图片并排序,最多不超过9张</p>
|
|
|
<div class="dialog-mainbox">
|
|
|
- <draggable class="custom-draggable" filter=".unmove" :list="fileList" ghost-class="ghost"
|
|
|
- chosen-class="chosenClass" animation="200" :sort="true" item-key="element">
|
|
|
+ <draggable
|
|
|
+ class="custom-draggable"
|
|
|
+ filter=".unmove"
|
|
|
+ :list="fileList"
|
|
|
+ ghost-class="ghost"
|
|
|
+ chosen-class="chosenClass"
|
|
|
+ animation="200"
|
|
|
+ :sort="true"
|
|
|
+ item-key="element"
|
|
|
+ >
|
|
|
<template #item="{ element }">
|
|
|
- <ul :item-key="element" class="el-upload-list el-upload-list--picture-card">
|
|
|
- <li class="el-upload-list__item is-success animated">
|
|
|
- <img :src="element.url" alt="" class="el-upload-list__item-thumbnail ">
|
|
|
+ <ul
|
|
|
+ :item-key="element"
|
|
|
+ class="el-upload-list el-upload-list--picture-card"
|
|
|
+ >
|
|
|
+ <li class="el-upload-list__item is-success animated">
|
|
|
+ <img
|
|
|
+ :src="element.url"
|
|
|
+ alt=""
|
|
|
+ class="el-upload-list__item-thumbnail"
|
|
|
+ />
|
|
|
<!-- <label class="el-upload-list__item-status-label">
|
|
|
<i class="el-icon el-icon--upload-success el-icon--check">
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024">
|
|
@@ -190,22 +241,36 @@ const handleConfirmImagesShow = () => {
|
|
|
</label> -->
|
|
|
<!-- <i class="el-icon-close"></i> -->
|
|
|
<span class="el-upload-list__item-actions">
|
|
|
- <span class="el-upload-list__item-preview" @click="handlePictureCardPreviewImage(element)">
|
|
|
+ <span
|
|
|
+ class="el-upload-list__item-preview"
|
|
|
+ @click="handlePictureCardPreviewImage(element)"
|
|
|
+ >
|
|
|
<i class="el-icon el-icon--zoom-in">
|
|
|
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024">
|
|
|
- <path fill="currentColor"
|
|
|
- d="m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z">
|
|
|
- </path>
|
|
|
+ <svg
|
|
|
+ xmlns="http://www.w3.org/2000/svg"
|
|
|
+ viewBox="0 0 1024 1024"
|
|
|
+ >
|
|
|
+ <path
|
|
|
+ fill="currentColor"
|
|
|
+ d="m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z"
|
|
|
+ ></path>
|
|
|
</svg>
|
|
|
</i>
|
|
|
</span>
|
|
|
<!-- remove -->
|
|
|
- <span class="el-upload-list__item-delete" @click="handleRemoveImage(element)">
|
|
|
+ <span
|
|
|
+ class="el-upload-list__item-delete"
|
|
|
+ @click="handleRemoveImage(element)"
|
|
|
+ >
|
|
|
<i class="el-icon el-icon--zoom-in">
|
|
|
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024">
|
|
|
- <path fill="currentColor"
|
|
|
- d="M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V256zm448-64v-64H416v64h192zM224 896h576V256H224v640zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32zm192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32z">
|
|
|
- </path>
|
|
|
+ <svg
|
|
|
+ xmlns="http://www.w3.org/2000/svg"
|
|
|
+ viewBox="0 0 1024 1024"
|
|
|
+ >
|
|
|
+ <path
|
|
|
+ fill="currentColor"
|
|
|
+ d="M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V256zm448-64v-64H416v64h192zM224 896h576V256H224v640zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32zm192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32z"
|
|
|
+ ></path>
|
|
|
</svg>
|
|
|
</i>
|
|
|
</span>
|
|
@@ -214,9 +279,20 @@ const handleConfirmImagesShow = () => {
|
|
|
</ul>
|
|
|
</template>
|
|
|
<template #footer>
|
|
|
- <el-upload v-show="fileList.length < 9" class="unmove" :show-file-list="false" :accept="IMAGE_SUFFIX"
|
|
|
- ref="uploadRef" v-model:file-list="fileList" action="#" :auto-upload="true" :limit="9"
|
|
|
- list-type="picture-card" :http-request="handleUploadImage" :on-success="handleUploadImageSuccess">
|
|
|
+ <el-upload
|
|
|
+ v-show="fileList.length < 9"
|
|
|
+ class="unmove"
|
|
|
+ :show-file-list="false"
|
|
|
+ :accept="IMAGE_SUFFIX"
|
|
|
+ ref="uploadRef"
|
|
|
+ v-model:file-list="fileList"
|
|
|
+ action="#"
|
|
|
+ :auto-upload="true"
|
|
|
+ :limit="9"
|
|
|
+ list-type="picture-card"
|
|
|
+ :http-request="handleUploadImage"
|
|
|
+ :on-success="handleUploadImageSuccess"
|
|
|
+ >
|
|
|
<el-icon>
|
|
|
<Plus />
|
|
|
</el-icon>
|
|
@@ -229,7 +305,9 @@ const handleConfirmImagesShow = () => {
|
|
|
<div class="dialog-footer flex-row flex-aic flex-jc-sb">
|
|
|
<span class="dialog-footer__left">拖拽图片进行排序</span>
|
|
|
<div class="dialog-footer__right">
|
|
|
- <el-button type="primary" @click="handleConfirmImagesShow">确定</el-button>
|
|
|
+ <el-button type="primary" @click="handleConfirmImagesShow"
|
|
|
+ >确定</el-button
|
|
|
+ >
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -237,7 +315,11 @@ const handleConfirmImagesShow = () => {
|
|
|
|
|
|
<!-- Image Preview -->
|
|
|
<el-dialog v-model="visibilityImagePreview" width="500">
|
|
|
- <el-image style="width: 100%; max-width: 500px;" :src="imagePreviewUrl" fit="cover" />
|
|
|
+ <el-image
|
|
|
+ style="width: 100%; max-width: 500px"
|
|
|
+ :src="imagePreviewUrl"
|
|
|
+ fit="cover"
|
|
|
+ />
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -250,7 +332,7 @@ const handleConfirmImagesShow = () => {
|
|
|
|
|
|
.header {
|
|
|
padding: 20px;
|
|
|
- border-bottom: 1px solid #F6F6F6;
|
|
|
+ border-bottom: 1px solid #f6f6f6;
|
|
|
|
|
|
.title {
|
|
|
font-size: 16px;
|
|
@@ -280,7 +362,7 @@ const handleConfirmImagesShow = () => {
|
|
|
}
|
|
|
|
|
|
.footer {
|
|
|
- border-top: 1px solid #F6F6F6;
|
|
|
+ border-top: 1px solid #f6f6f6;
|
|
|
padding: 20px;
|
|
|
padding-top: 30px;
|
|
|
}
|