frontPanel/src/stores/questions.ts

255 lines
5.2 KiB
TypeScript
Raw Normal View History

2023-08-10 13:45:44 +00:00
import { create } from "zustand";
import { persist } from "zustand/middleware";
2023-07-30 16:02:41 +00:00
export type Variants = {
answer: string;
hints: string;
2023-09-21 10:07:30 +00:00
emoji: string;
};
2023-08-24 11:09:47 +00:00
type Hint = {
text: string;
video: string;
};
2023-08-24 20:53:27 +00:00
type Rule = {
or: boolean;
show: boolean;
reqs: [
{
id: string;
vars: number[];
}
];
};
export interface Question {
id: number;
2023-08-10 13:45:44 +00:00
title: string;
description: string;
type: string;
required: boolean;
deleted: true;
2023-08-10 13:45:44 +00:00
page: number;
content: {
variants: Variants[];
2023-08-24 11:09:47 +00:00
hint: Hint;
2023-08-24 20:53:27 +00:00
rule: Rule;
2023-08-28 08:20:09 +00:00
images: string[];
2023-09-05 08:25:47 +00:00
largeCheck: boolean;
large: string;
multi: boolean;
2023-08-24 09:09:43 +00:00
own: boolean;
2023-09-05 08:25:47 +00:00
innerNameCheck: boolean;
2023-08-24 09:09:43 +00:00
innerName: string;
2023-08-24 11:57:42 +00:00
back: string;
2023-08-25 08:29:42 +00:00
placeholder: string;
2023-08-25 09:14:53 +00:00
type: string;
2023-08-25 09:30:25 +00:00
autofill: boolean;
2023-08-25 10:27:43 +00:00
default: string;
2023-08-28 08:20:09 +00:00
single: boolean;
number: boolean;
2023-08-28 09:31:34 +00:00
xy: string;
format: "carousel" | "masonry";
2023-09-05 13:54:41 +00:00
text: string;
picture: string;
video: string;
2023-09-06 08:01:44 +00:00
dateRange: boolean;
2023-09-05 16:34:52 +00:00
time: boolean;
2023-09-06 06:47:23 +00:00
form: string;
steps: number;
2023-09-06 08:01:44 +00:00
range: string;
start: number;
step: number;
chooseRange: boolean;
2023-09-07 14:14:48 +00:00
required: boolean;
replText: string;
2023-09-27 07:55:11 +00:00
ratingNegativeDescription: string;
ratingPositiveDescription: string;
};
2023-08-10 13:45:44 +00:00
version: number;
parent_ids: number[];
created_at: string;
updated_at: string;
2023-08-24 09:09:43 +00:00
expanded: boolean;
}
interface QuestionStore {
2023-09-06 11:51:08 +00:00
listQuestions: Record<string, Question[]>;
openedModalSettings: string;
}
2023-09-20 12:42:14 +00:00
export const DEFAULT_QUESTION: Omit<Question, "id"> = {
title: "",
description: "",
type: "",
required: true,
deleted: true,
page: 0,
content: {
largeCheck: false,
large: "",
multi: false,
own: false,
innerNameCheck: false,
innerName: "",
back: "",
placeholder: "",
type: "all",
autofill: true,
default: "",
images: [],
number: false,
single: false,
xy: "",
format: "carousel",
text: "",
picture: "",
video: "",
dateRange: false,
time: false,
form: "star",
steps: 5,
range: "0—100",
start: 50,
step: 1,
chooseRange: false,
required: false,
replText: "",
2023-09-27 07:55:11 +00:00
ratingNegativeDescription: "",
ratingPositiveDescription: "",
2023-09-20 12:42:14 +00:00
variants: [
{
answer: "",
hints: "",
2023-09-21 10:07:30 +00:00
emoji: "",
2023-09-20 12:42:14 +00:00
},
],
hint: {
text: "",
video: "",
},
rule: {
or: true,
show: true,
reqs: [
{
id: "",
vars: [],
},
],
},
},
version: 0,
parent_ids: [0],
created_at: "",
updated_at: "",
expanded: false,
};
export const questionStore = create<QuestionStore>()(
2023-07-30 15:48:41 +00:00
persist<QuestionStore>(
() => ({
2023-09-06 11:51:08 +00:00
listQuestions: {},
openedModalSettings: "",
2023-08-10 13:45:44 +00:00
}),
2023-08-10 13:45:44 +00:00
{
name: "question",
}
)
);
2023-09-06 11:51:08 +00:00
export const updateQuestionsList = (
2023-09-06 13:20:12 +00:00
quizId: number,
index: number,
2023-09-06 11:51:08 +00:00
data: Partial<Question>
) => {
const questionListClone = { ...questionStore.getState()["listQuestions"] };
2023-09-06 13:20:12 +00:00
questionListClone[quizId][index] = {
...questionListClone[quizId][index],
...data,
};
2023-09-06 11:51:08 +00:00
questionStore.setState({ listQuestions: questionListClone });
};
2023-08-11 06:15:04 +00:00
export const updateQuestionsListDragAndDrop = (
2023-09-06 13:20:12 +00:00
quizId: number,
2023-08-11 06:15:04 +00:00
updatedQuestions: Question[]
) => {
2023-09-06 11:51:08 +00:00
const questionListClone = { ...questionStore.getState()["listQuestions"] };
questionStore.setState({
2023-09-06 13:20:12 +00:00
listQuestions: { ...questionListClone, [quizId]: updatedQuestions },
2023-09-06 11:51:08 +00:00
});
};
2023-09-06 11:51:08 +00:00
export const updateVariants = (
2023-09-06 13:20:12 +00:00
quizId: number,
2023-09-06 11:51:08 +00:00
index: number,
variants: Variants[]
) => {
const listQuestions = { ...questionStore.getState()["listQuestions"] };
2023-09-06 13:20:12 +00:00
listQuestions[quizId][index].content.variants = variants;
2023-08-18 11:16:56 +00:00
questionStore.setState({ listQuestions });
};
2023-09-13 10:58:07 +00:00
export const createQuestion = (quizId: number, placeIndex = -1) => {
2023-09-06 11:51:08 +00:00
const id = getRandom(1000000, 10000000);
const newData = { ...questionStore.getState()["listQuestions"] };
2023-09-06 13:20:12 +00:00
if (!newData[quizId]) {
newData[quizId] = [];
}
2023-09-13 10:58:07 +00:00
newData[quizId].splice(
placeIndex < 0 ? newData[quizId].length : placeIndex,
0,
2023-09-20 12:42:14 +00:00
{ ...DEFAULT_QUESTION, id }
2023-09-13 10:58:07 +00:00
);
2023-09-06 13:20:12 +00:00
questionStore.setState({ listQuestions: newData });
};
2023-09-06 13:20:12 +00:00
export const copyQuestion = (quizId: number, copiedQuestionIndex: number) => {
2023-09-06 11:51:08 +00:00
const listQuestions = { ...questionStore.getState()["listQuestions"] };
2023-08-11 07:25:28 +00:00
2023-09-08 11:24:09 +00:00
listQuestions[quizId].splice(
copiedQuestionIndex,
0,
listQuestions[quizId][copiedQuestionIndex]
);
2023-08-11 07:25:28 +00:00
questionStore.setState({ listQuestions });
};
2023-09-06 13:20:12 +00:00
export const removeQuestion = (quizId: number, index: number) => {
2023-09-06 11:51:08 +00:00
const questionListClone = { ...questionStore.getState()["listQuestions"] };
2023-09-06 13:20:12 +00:00
questionListClone[quizId].splice(index, 1);
2023-09-06 11:51:08 +00:00
questionStore.setState({ listQuestions: questionListClone });
};
2023-07-30 15:35:40 +00:00
export const resetSomeField = (data: Record<string, string>) => {
questionStore.setState(data);
};
2023-09-06 13:20:12 +00:00
export const findQuestionById = (quizId: number) => {
let found = null;
2023-08-11 06:15:04 +00:00
questionStore
.getState()
2023-09-06 13:20:12 +00:00
["listQuestions"][quizId].some((quiz: Question, index: number) => {
if (quiz.id === quizId) {
2023-08-11 06:15:04 +00:00
found = { quiz, index };
return true;
}
});
return found;
};
function getRandom(min: number, max: number) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min;
}