mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-29 08:49:17 +03:00
27 lines
958 B
JavaScript
27 lines
958 B
JavaScript
import * as Serializers from "~/node_common/serializers";
|
|
|
|
import { runQuery } from "~/node_common/data/utilities";
|
|
|
|
//NOTE(martina): if updating privacy, use the separate update-slate-privacy function which will remove it from activity as well
|
|
|
|
//NOTE(martina): you can pass in an update object whose data component is incomplete (e.g. data: { name: "New name" }) without accidentally
|
|
//wiping the rest of data b/c this updater method overlays it over the current value for data
|
|
|
|
export default async ({ objects, ...slate }) => {
|
|
return await runQuery({
|
|
label: "UPDATE_SLATE_BY_ID",
|
|
queryFn: async (DB) => {
|
|
const response = await DB.from("slates").where("id", slate.id).update(slate).returning("*");
|
|
|
|
const index = response ? response.pop() : null;
|
|
return JSON.parse(JSON.stringify(index));
|
|
},
|
|
errorFn: async (e) => {
|
|
return {
|
|
error: true,
|
|
decorator: "UPDATE_SLATE_BY_ID",
|
|
};
|
|
},
|
|
});
|
|
};
|