discourse/app/assets/javascripts/wizard/addon/test-helpers/wizard-pretender.js
David Taylor 1506017767
DEV: Refactor wizard preview components to use inheritence (#20282)
The previous `createPreviewComponent` implementation was problematic for template colocation. We can achieve the same result using normal component class inheritance.
2023-02-14 14:20:15 +00:00

65 lines
1.7 KiB
JavaScript

export default function (helpers) {
const { parsePostData, response } = helpers;
this.get("/wizard.json", () => {
return response({
wizard: {
start: "hello-world",
completed: true,
steps: [
{
id: "hello-world",
title: "hello there",
index: 0,
description: "hello!",
fields: [
{
id: "full_name",
type: "text",
required: true,
description: "Your name",
},
],
next: "styling",
},
{
id: "styling",
title: "Second step",
index: 1,
fields: [{ id: "some_title", type: "text" }],
previous: "hello-world",
next: "corporate",
},
{
id: "corporate",
index: 2,
fields: [
{ id: "company_name", type: "text", required: true },
{ id: "styling_preview", type: "component" },
],
previous: "styling",
},
],
},
});
});
this.put("/wizard/steps/:id", (request) => {
const body = parsePostData(request.requestBody);
if (body.fields.full_name === "Server Fail") {
return response(422, {
errors: [{ field: "full_name", description: "Invalid name" }],
});
} else if (body.fields.company_name === "Server Fail") {
return response(422, {
errors: [
{ field: "company_name", description: "Invalid company name" },
],
});
} else {
return response(200, { success: true });
}
});
}