Cleansed some cors stuff

This commit is contained in:
2020-02-06 22:02:14 +11:00
parent 28f91d2bf5
commit fe446cab6c
4 changed files with 6 additions and 6 deletions

View File

@ -52,5 +52,5 @@ export const sendMail = withHandler<sendMailParams>(async (e,c) => {
<span>Time: ${new Date().toLocaleString()}
`
});
return { statusCode: 200, body: x && x.accepted && x.accepted.length }
return { statusCode: 200, body: x && x.accepted && x.accepted.length ? true : false }
});

View File

@ -47,8 +47,8 @@ export const withHandler = <T=any>(callable:APICallable<T>) => {
return callable(event, context).then(d => {
if(!callback) return d;
let contentType = (d.headers?d.headers['Content-Type']:null) ||'application/json';
let json = contentType.includes('application/json');
let contentType = (d.headers?d.headers['Content-Type']:null) || 'application/json';
let json = contentType.indexOf('application/json') !== -1;
callback(null, {
...d,

View File

@ -1,13 +1,13 @@
export const APIRequest = (url:string, body?:object) => {
return fetch(`https://api.domsplace.com/v1/${url}`, {
mode: 'no-cors',
//mode: 'no-cors',
method: body ? 'POST' : 'GET',
body: body ? JSON.stringify(body) : null,
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
});
}).then(e => e.json());
}

View File

@ -2,7 +2,7 @@ import { APIRequest } from "./APIRequest";
export const sendMail = (name:string, email:string, message:string) => APIRequest('mail/send', {
name, email, message
});
}).then(e => e.body);
///@ts-ginore
(globalThis as any)['sendMail' as any] = sendMail as any;