Cleansed some cors stuff
This commit is contained in:
@ -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 }
|
||||
});
|
@ -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,
|
||||
|
@ -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());
|
||||
}
|
||||
|
||||
|
||||
|
@ -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;
|
Reference in New Issue
Block a user