fix: cannot upload image when creating a new post in UC editor (#5114)

#### What type of PR is this?

/area console
/kind bug
/milestone 2.12.x

#### What this PR does / why we need it:

修复在个人中心的文章编辑器中创建新文章时无法上传图片的问题

#### Which issue(s) this PR fixes:

Fixes https://github.com/halo-dev/halo/issues/5035

#### Special notes for your reviewer:

测试在 UC 新建文章,在未保存时是否能上传图片。

#### Does this PR introduce a user-facing change?

```release-note
修复个人中心创建新文章时无法上传图片的问题
```
pull/5078/head
Ryan Wang 2023-12-27 11:50:09 +08:00 committed by GitHub
parent e7789929ec
commit 285ac6a77f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 3 deletions

View File

@ -229,11 +229,11 @@ function handleSaveClick() {
}
}
function onCreatePostSuccess(data: Post) {
async function onCreatePostSuccess(data: Post) {
formState.value = data;
// Update route query params
name.value = data.metadata.name;
handleFetchContent();
await handleFetchContent();
}
// Save post
@ -344,9 +344,19 @@ async function handleUploadImage(file: File) {
[contentAnnotations.CONTENT_JSON]: JSON.stringify(content.value),
};
await apiClient.uc.post.createMyPost({
if (!formState.value.spec.title) {
formState.value.spec.title = t("core.post_editor.untitled");
}
if (!formState.value.spec.slug) {
formState.value.spec.slug = new Date().getTime().toString();
}
const { data } = await apiClient.uc.post.createMyPost({
post: formState.value,
});
await onCreatePostSuccess(data);
}
const { data } = await apiClient.uc.attachment.createAttachmentForPost({