Update background message name

This commit is contained in:
奇趣保罗 2024-04-24 13:14:30 +08:00
parent 8bf22edbda
commit 46d7d4b26f
6 changed files with 37 additions and 38 deletions

View File

@ -0,0 +1,22 @@
import type { PlasmoMessaging } from "@plasmohq/messaging";
const handler: PlasmoMessaging.MessageHandler = async (req, res) => {
const { token, siteUrl } = await chrome.storage.local.get(["token", "siteUrl"]);
// 更新追番进度
if (req.body.action === "updateBangumiProgress") {
const { values } = req.body;
const updateRequest = await fetch(`${siteUrl}/api/bangumi/update`, {
method: "POST",
body: JSON.stringify(values),
headers: {
"paul-token-code": token,
},
}).then((res) => res.json());
res.send(updateRequest);
}
}
export default handler;

View File

@ -3,7 +3,7 @@ import type { PlasmoMessaging } from "@plasmohq/messaging";
const handler: PlasmoMessaging.MessageHandler = async (req, res) => {
const { token, siteUrl } = await chrome.storage.local.get(["token", "siteUrl"]);
if (req.body.action === "submitAddForm") {
if (req.body.action === "addRead") {
const { values } = req.body;
const formData = new FormData();

View File

@ -4,7 +4,7 @@ const handler: PlasmoMessaging.MessageHandler = async (req, res) => {
const { token, siteUrl } = await chrome.storage.local.get(["token", "siteUrl"]);
// 添加手办
if (req.body.action === "submitAddForm") {
if (req.body.action === "addToy") {
const { values } = req.body;
let imageBlob: Blob | undefined;
@ -33,21 +33,6 @@ const handler: PlasmoMessaging.MessageHandler = async (req, res) => {
res.send(addReq);
}
// 更新追番进度
if (req.body.action === "updateBangumiProgress") {
const { values } = req.body;
const updateRequest = await fetch(`${siteUrl}/api/bangumi/update`, {
method: "POST",
body: JSON.stringify(values),
headers: {
"paul-token-code": token,
},
}).then((res) => res.json());
res.send(updateRequest);
}
}
export default handler;

View File

@ -28,20 +28,13 @@ const submitForm = (body: FormValue) => {
sendToBackground({
name: "read",
body: {
action: "submitAddForm",
action: "addRead",
values: body,
},
}).then((res) => {
if (res.status === "Success") {
add({
content: "提交成功",
});
}
else {
add({
content: res.msg,
});
}
add({
content: res.msg,
});
}).catch((e) => {
if (e instanceof Error) {
add({

View File

@ -42,23 +42,22 @@ function Toy() {
const submitForm = (body: FormValue) => {
sendToBackground({
name: "bili",
name: "toy",
body: {
action: "submitAddForm",
action: "addToy",
values: {
...body,
imageUrl: imgs[0],
},
},
}).then((res) => {
if (res.status === "Success") {
add({
content: res.msg,
});
}).catch((e) => {
if (e instanceof Error) {
add({
content: "提交成功",
});
}
else {
add({
content: res.msg,
content: e.message,
});
}
});

View File

@ -33,7 +33,7 @@ const SyncButton = () => {
console.log("Toolbox: 获得追番信息", res.value);
sendToBackground({
name: "bili",
name: "bangumi",
body: {
action: "updateBangumiProgress",
values: res.value,