slate/components/api-docs/v1/update-slate.js

78 lines
2.3 KiB
JavaScript
Raw Normal View History

2021-03-24 07:10:26 +03:00
import * as React from "react";
import * as System from "~/components/system";
import CodeBlock from "~/components/system/CodeBlock";
2021-03-24 07:10:26 +03:00
2021-03-25 07:28:14 +03:00
const EXAMPLE_CODE_JS = (key, slateId) => {
2021-03-30 04:19:36 +03:00
return `const SLATE_ID = "${slateId}"
2021-03-24 07:10:26 +03:00
const slateResponseData = getSlateById(SLATE_ID);
const slate = slateResponseData.data;
slate.data.objects[0].title = "Julie Was Here."
const response = await fetch('https://slate.host/api/v1/update-slate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: 'Basic ${key}',
},
body: JSON.stringify({ data: slate })
2021-03-30 04:35:06 +03:00
});`;
2021-03-24 07:10:26 +03:00
};
2021-03-30 04:19:36 +03:00
const EXAMPLE_CODE_PY = (key, slateId) =>
2021-03-30 04:35:06 +03:00
`import requests
headers = {
2021-03-30 04:19:36 +03:00
"content-type": "application/json",
"Authorization": "Basic ${key}",
}
2021-03-30 04:35:06 +03:00
2021-03-30 04:19:36 +03:00
json = {"id": "${slateId}"}
2021-03-30 04:35:06 +03:00
2021-03-30 04:19:36 +03:00
get_slate = requests.post(
"https://slate.host/api/v1/get-slate", headers=headers, json=json
)
get_slate_response = get_slate.json()
2021-03-30 04:35:06 +03:00
2021-03-30 04:19:36 +03:00
slate = get_slate_response["slate"]
slate["data"]["objects"][0]["title"] = "i changed the title"
2021-03-30 04:35:06 +03:00
updated_data = {"data": slate}
2021-03-30 04:19:36 +03:00
url = "https://slate.host/api/v1/update-slate"
2021-03-24 07:10:26 +03:00
2021-03-30 04:35:06 +03:00
r = requests.post(url, headers=headers, json=updated_data)`;
2021-03-30 04:19:36 +03:00
export default class APIDocsUpdateSlate extends React.Component {
render() {
let language = this.props.language;
let key = this.props.APIKey;
let slateId = this.props.slateId;
let code = {
javascript: EXAMPLE_CODE_JS(key, slateId),
python: EXAMPLE_CODE_PY(key, slateId),
};
2021-03-24 07:10:26 +03:00
return (
<React.Fragment>
<System.DescriptionGroup
2021-03-30 04:19:36 +03:00
style={{ maxWidth: 640, marginTop: 64 }}
2021-03-24 07:10:26 +03:00
label="Update slate by ID"
2021-03-30 04:19:36 +03:00
description="This API endpoint allows you to modify a slate by saving the response from get-slate, modifying it, and sending it back. Be VERY careful modifying the data field of the JSON because it allows for full customization. If you change the wrong fields, it will break you slate when the database JSONB is updated. As a rule of thumb, if a field looks like something Slate would generate (keys, hashes, id's), don't change it."
2021-03-24 07:10:26 +03:00
/>
<CodeBlock
2021-03-30 04:19:36 +03:00
children={code}
style={{ maxWidth: "820px" }}
2021-03-24 07:10:26 +03:00
language={language}
2021-03-25 07:28:14 +03:00
title="Update slate by ID"
2021-03-30 04:19:36 +03:00
multiLang="true"
onLanguageChange={this.props.onLanguageChange}
2021-03-24 07:10:26 +03:00
/>
</React.Fragment>
);
}
}