-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.ts
More file actions
132 lines (127 loc) · 2.94 KB
/
index.ts
File metadata and controls
132 lines (127 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import { createFoundationSimulationServer } from "../../src/index.ts";
import type {
AnyState,
ExtendSimulationSchema,
FoundationSimulator,
} from "../../src/index.ts";
const openapiSchemaFromRealEndpoint = {
openapi: "3.0.0",
info: {
title: "API",
version: "1.0.0",
},
paths: {
"/dogs": {
get: {
summary: "Get the dogs",
responses: {
200: {
description: "All of the dogs",
},
},
},
},
},
};
const openapiSchemaWithModificationsForSimulation = {
paths: {
"/pets": {
get: {
operationId: "getPets",
responses: {
200: {
$ref: "#/components/responses/PetList",
},
},
},
},
"/dogs": {
get: {
operationId: "getDogs",
},
},
"/more-dogs": {
get: {
operationId: "putDogs",
responses: {
200: {
description: "All of the dogs",
},
},
},
},
},
components: {
responses: {
PetList: {
description: "you would love them",
content: {
"application/json": {
example: [
{ id: 1, name: "Garfield" },
{ id: 2, name: "Odie" },
],
},
},
},
},
},
};
export function simulation(): FoundationSimulator<any> {
return createFoundationSimulationServer({
port: 9999,
serveJsonFiles: `${import.meta.dirname}/jsonFiles`,
openapi: [
{
document: [
openapiSchemaFromRealEndpoint,
openapiSchemaWithModificationsForSimulation,
],
handlers({ store, schema, actions }) {
return {
getDogs: (_c, _req, res) => {
let dogs = schema.boop.select(store.getState());
res.status(200).json({ dogs });
},
putDogs: (_c, _req, res) => {
store.dispatch(actions.batchUpdater([schema.boop.increment()]));
res.sendStatus(200);
},
};
},
apiRoot: "/api",
},
],
extendStore: {
logs: false,
actions: ({ thunks, schema }) => {
let upsertTest = thunks.create<AnyState>(
"user:upsert",
function* boop(ctx, next) {
yield* schema.update(
schema.test.add({ [ctx.payload.id]: ctx.payload })
);
yield* next();
}
);
return { upsertTest };
},
schema: ({ slice }: ExtendSimulationSchema) => {
let slices = {
test: slice.table(),
booping: slice.str(),
boop: slice.num(),
};
return slices;
},
},
extendRouter(router, simulationStore) {
router.get("/extended-route", (_req, res) => {
let dogs = simulationStore.schema.boop.select(
simulationStore.store.getState()
);
res.status(200).json({ dogs });
});
},
})();
}