UNPKG

rerumaccusamus

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

34 lines (30 loc) 706 B
import { match } from '@modern-js/bff-runtime'; import { useContext } from '../../../../../../src/context'; export const get = ({ query }: { query: Record<string, unknown> }) => ({ query, }); export const post = ({ data }: { data: Record<string, unknown> }) => { // eslint-disable-next-line react-hooks/rules-of-hooks const ctx = useContext(); const { cookies } = ctx; return { query: ctx.query, data, cookies: { id: cookies.get('id'), name: cookies.get('name'), }, }; }; export const patch = match( { request: { data: { id: Number, name: String, }, }, response: { id: Number }, }, ({ data: { id } }) => ({ id }), );