2023-08-10 13:45:44 +00:00
|
|
|
import { create } from "zustand";
|
2023-10-21 13:16:57 +00:00
|
|
|
import { devtools, persist } from "zustand/middleware";
|
2023-10-02 19:43:07 +00:00
|
|
|
|
|
|
|
import type {
|
2023-10-21 13:16:57 +00:00
|
|
|
AnyQuizQuestion,
|
|
|
|
ImageQuestionVariant,
|
|
|
|
QuestionVariant,
|
|
|
|
QuizQuestionType
|
2023-10-02 19:43:07 +00:00
|
|
|
} from "../model/questionTypes/shared";
|
|
|
|
|
2023-10-21 13:16:57 +00:00
|
|
|
import { produce, setAutoFreeze } from "immer";
|
2023-10-03 14:03:57 +00:00
|
|
|
import { QUIZ_QUESTION_BASE } from "../constants/base";
|
|
|
|
import { QUIZ_QUESTION_DATE } from "../constants/date";
|
|
|
|
import { QUIZ_QUESTION_EMOJI } from "../constants/emoji";
|
|
|
|
import { QUIZ_QUESTION_FILE } from "../constants/file";
|
|
|
|
import { QUIZ_QUESTION_IMAGES } from "../constants/images";
|
|
|
|
import { QUIZ_QUESTION_NUMBER } from "../constants/number";
|
|
|
|
import { QUIZ_QUESTION_PAGE } from "../constants/page";
|
|
|
|
import { QUIZ_QUESTION_RATING } from "../constants/rating";
|
|
|
|
import { QUIZ_QUESTION_SELECT } from "../constants/select";
|
|
|
|
import { QUIZ_QUESTION_TEXT } from "../constants/text";
|
|
|
|
import { QUIZ_QUESTION_VARIANT } from "../constants/variant";
|
|
|
|
import { QUIZ_QUESTION_VARIMG } from "../constants/varimg";
|
2023-10-13 12:11:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
setAutoFreeze(false);
|
2023-07-20 22:02:20 +00:00
|
|
|
|
2023-06-28 23:32:43 +00:00
|
|
|
interface QuestionStore {
|
2023-10-21 13:16:57 +00:00
|
|
|
listQuestions: Record<string, AnyQuizQuestion[]>;
|
|
|
|
openedModalSettings: string;
|
2023-06-28 23:32:43 +00:00
|
|
|
}
|
|
|
|
|
2023-09-27 14:14:48 +00:00
|
|
|
let isFirstPartialize = true;
|
2023-09-20 12:42:14 +00:00
|
|
|
|
2023-06-28 23:32:43 +00:00
|
|
|
export const questionStore = create<QuestionStore>()(
|
2023-10-21 13:16:57 +00:00
|
|
|
persist(
|
|
|
|
devtools(
|
|
|
|
() => ({
|
|
|
|
listQuestions: {},
|
|
|
|
openedModalSettings: "",
|
|
|
|
}),
|
|
|
|
{
|
|
|
|
name: "Question",
|
|
|
|
enabled: process.env.NODE_ENV === "development",
|
|
|
|
trace: process.env.NODE_ENV === "development",
|
|
|
|
}
|
|
|
|
),
|
|
|
|
{
|
|
|
|
name: "question",
|
|
|
|
partialize: (state: QuestionStore) => {
|
|
|
|
if (isFirstPartialize) {
|
|
|
|
isFirstPartialize = false;
|
|
|
|
|
|
|
|
Object.keys(state.listQuestions).forEach((quizId) => {
|
|
|
|
[...state.listQuestions[quizId]].forEach(({ id, deleted }) => {
|
|
|
|
if (deleted) {
|
|
|
|
const removedItemIndex = state.listQuestions[quizId].findIndex(
|
|
|
|
(item) => item.id === id
|
|
|
|
);
|
|
|
|
|
|
|
|
state.listQuestions[quizId].splice(removedItemIndex, 1);
|
2023-10-13 12:11:00 +00:00
|
|
|
}
|
|
|
|
});
|
2023-10-21 13:16:57 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
},
|
|
|
|
merge: (persistedState, currentState) => {
|
|
|
|
const state = persistedState as QuestionStore;
|
|
|
|
|
|
|
|
// replace blob urls with ""
|
|
|
|
Object.values(state.listQuestions).forEach(questions => {
|
|
|
|
questions.forEach(question => {
|
|
|
|
if (question.type === "page") {
|
|
|
|
if (question.content.picture.startsWith("blob:")) {
|
|
|
|
question.content.picture = "";
|
2023-10-13 12:11:00 +00:00
|
|
|
}
|
2023-10-21 13:16:57 +00:00
|
|
|
}
|
|
|
|
if (question.type === "images") {
|
|
|
|
question.content.variants.forEach(variant => {
|
|
|
|
if (variant.extendedText.startsWith("blob:")) {
|
|
|
|
variant.extendedText = "";
|
|
|
|
}
|
|
|
|
if (variant.originalImageUrl.startsWith("blob:")) {
|
|
|
|
variant.originalImageUrl = "";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (question.type === "varimg") {
|
|
|
|
question.content.variants.forEach(variant => {
|
|
|
|
if (variant.extendedText.startsWith("blob:")) {
|
|
|
|
variant.extendedText = "";
|
|
|
|
}
|
|
|
|
if (variant.originalImageUrl.startsWith("blob:")) {
|
|
|
|
variant.originalImageUrl = "";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2023-10-13 12:11:00 +00:00
|
|
|
});
|
|
|
|
|
2023-10-21 13:16:57 +00:00
|
|
|
return {
|
|
|
|
...currentState,
|
|
|
|
...state,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
2023-08-10 13:45:44 +00:00
|
|
|
);
|
2023-10-02 19:43:07 +00:00
|
|
|
export const updateQuestionsList = <T = AnyQuizQuestion>(
|
2023-10-21 13:16:57 +00:00
|
|
|
quizId: number,
|
|
|
|
index: number,
|
|
|
|
data: Partial<T>
|
2023-09-06 11:51:08 +00:00
|
|
|
) => {
|
2023-10-21 13:16:57 +00:00
|
|
|
const questionListClone = { ...questionStore.getState()["listQuestions"] };
|
|
|
|
questionListClone[quizId][index] = {
|
|
|
|
...questionListClone[quizId][index],
|
|
|
|
...data,
|
|
|
|
};
|
|
|
|
questionStore.setState({ listQuestions: questionListClone });
|
2023-07-27 17:30:55 +00:00
|
|
|
};
|
|
|
|
|
2023-10-23 15:33:56 +00:00
|
|
|
export const removeQuestionsByQuizId = (quizId: number) => setProducedState(state => {
|
|
|
|
delete state.listQuestions[quizId];
|
|
|
|
}, "removeQuestionsByQuizId");
|
|
|
|
|
2023-08-11 06:15:04 +00:00
|
|
|
export const updateQuestionsListDragAndDrop = (
|
2023-10-21 13:16:57 +00:00
|
|
|
quizId: number,
|
|
|
|
updatedQuestions: AnyQuizQuestion[]
|
2023-08-11 06:15:04 +00:00
|
|
|
) => {
|
2023-10-21 13:16:57 +00:00
|
|
|
const questionListClone = { ...questionStore.getState()["listQuestions"] };
|
|
|
|
questionStore.setState({
|
|
|
|
listQuestions: { ...questionListClone, [quizId]: updatedQuestions },
|
|
|
|
});
|
2023-07-27 17:30:55 +00:00
|
|
|
};
|
2023-07-20 22:02:20 +00:00
|
|
|
|
2023-09-06 11:51:08 +00:00
|
|
|
export const updateVariants = (
|
2023-10-21 13:16:57 +00:00
|
|
|
quizId: number,
|
|
|
|
index: number,
|
|
|
|
variants: ImageQuestionVariant[] | QuestionVariant[],
|
|
|
|
) => setProducedState(state => {
|
|
|
|
const question = state.listQuestions[quizId][index];
|
|
|
|
|
|
|
|
if ("variants" in question.content) question.content.variants = variants;
|
|
|
|
});
|
2023-08-18 11:16:56 +00:00
|
|
|
|
2023-10-02 19:43:07 +00:00
|
|
|
export const createQuestion = (
|
2023-10-21 13:16:57 +00:00
|
|
|
quizId: number,
|
|
|
|
questionType: QuizQuestionType = "nonselected",
|
|
|
|
placeIndex = -1
|
2023-10-02 19:43:07 +00:00
|
|
|
) => {
|
2023-10-21 13:16:57 +00:00
|
|
|
const id = getRandom();
|
|
|
|
const newData = { ...questionStore.getState()["listQuestions"] };
|
2023-09-06 13:20:12 +00:00
|
|
|
|
2023-10-21 13:16:57 +00:00
|
|
|
if (!newData[quizId]) {
|
|
|
|
newData[quizId] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
const defaultObject = [
|
|
|
|
QUIZ_QUESTION_BASE,
|
|
|
|
QUIZ_QUESTION_DATE,
|
|
|
|
QUIZ_QUESTION_EMOJI,
|
|
|
|
QUIZ_QUESTION_FILE,
|
|
|
|
QUIZ_QUESTION_IMAGES,
|
|
|
|
QUIZ_QUESTION_NUMBER,
|
|
|
|
QUIZ_QUESTION_PAGE,
|
|
|
|
QUIZ_QUESTION_RATING,
|
|
|
|
QUIZ_QUESTION_SELECT,
|
|
|
|
QUIZ_QUESTION_TEXT,
|
|
|
|
QUIZ_QUESTION_VARIANT,
|
|
|
|
QUIZ_QUESTION_VARIMG,
|
|
|
|
].find((defaultObjectItem) => defaultObjectItem.type === questionType);
|
|
|
|
|
|
|
|
if (defaultObject) {
|
|
|
|
newData[quizId].splice(
|
|
|
|
placeIndex < 0 ? newData[quizId].length : placeIndex,
|
|
|
|
0,
|
|
|
|
{ ...defaultObject, id }
|
|
|
|
);
|
|
|
|
|
|
|
|
questionStore.setState({ listQuestions: newData });
|
|
|
|
}
|
2023-07-27 17:30:55 +00:00
|
|
|
};
|
2023-07-20 22:02:20 +00:00
|
|
|
|
2023-09-06 13:20:12 +00:00
|
|
|
export const copyQuestion = (quizId: number, copiedQuestionIndex: number) => {
|
2023-10-21 13:16:57 +00:00
|
|
|
const listQuestions = { ...questionStore.getState()["listQuestions"] };
|
|
|
|
|
|
|
|
const copiedQuiz = listQuestions[quizId][copiedQuestionIndex];
|
|
|
|
copiedQuiz.id = getRandom();
|
|
|
|
listQuestions[quizId].splice(
|
|
|
|
copiedQuestionIndex,
|
|
|
|
0,
|
|
|
|
copiedQuiz
|
|
|
|
);
|
2023-08-11 07:25:28 +00:00
|
|
|
|
2023-10-21 13:16:57 +00:00
|
|
|
questionStore.setState({ listQuestions });
|
2023-08-11 07:25:28 +00:00
|
|
|
};
|
|
|
|
|
2023-09-27 14:14:48 +00:00
|
|
|
export const removeQuestionForce = (quizId: number, removedId: number) => {
|
2023-10-21 13:16:57 +00:00
|
|
|
const questionListClone = { ...questionStore.getState()["listQuestions"] };
|
|
|
|
const removedItemIndex = questionListClone[quizId].findIndex(
|
|
|
|
({ id }) => id === removedId
|
|
|
|
);
|
|
|
|
questionListClone[quizId].splice(removedItemIndex, 1);
|
|
|
|
questionStore.setState({ listQuestions: questionListClone });
|
2023-09-27 14:14:48 +00:00
|
|
|
};
|
2023-09-06 11:51:08 +00:00
|
|
|
|
2023-09-27 14:14:48 +00:00
|
|
|
export const removeQuestion = (quizId: number, index: number) => {
|
2023-10-21 13:16:57 +00:00
|
|
|
const questionListClone = { ...questionStore.getState()["listQuestions"] };
|
|
|
|
questionListClone[quizId][index].deleted = true;
|
|
|
|
questionStore.setState({ listQuestions: questionListClone });
|
2023-07-27 17:30:55 +00:00
|
|
|
};
|
2023-07-20 22:02:20 +00:00
|
|
|
|
2023-07-30 15:35:40 +00:00
|
|
|
export const resetSomeField = (data: Record<string, string>) => {
|
2023-10-21 13:16:57 +00:00
|
|
|
questionStore.setState(data);
|
2023-07-27 17:30:55 +00:00
|
|
|
};
|
2023-07-20 22:02:20 +00:00
|
|
|
|
2023-09-06 13:20:12 +00:00
|
|
|
export const findQuestionById = (quizId: number) => {
|
2023-10-21 13:16:57 +00:00
|
|
|
let found = null;
|
|
|
|
questionStore
|
|
|
|
.getState()
|
2023-10-02 19:43:07 +00:00
|
|
|
["listQuestions"][quizId].some((quiz: AnyQuizQuestion, index: number) => {
|
2023-10-21 13:16:57 +00:00
|
|
|
if (quiz.id === quizId) {
|
|
|
|
found = { quiz, index };
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2023-08-11 06:15:04 +00:00
|
|
|
});
|
2023-10-21 13:16:57 +00:00
|
|
|
return found;
|
2023-07-27 17:30:55 +00:00
|
|
|
};
|
2023-07-11 10:43:04 +00:00
|
|
|
|
2023-10-15 00:40:40 +00:00
|
|
|
function getRandom() {
|
2023-10-21 13:16:57 +00:00
|
|
|
const min = Math.ceil(1000000);
|
|
|
|
const max = Math.floor(10000000);
|
|
|
|
return Math.floor(Math.random() * (max - min)) + min;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setProducedState<A extends string | { type: unknown; }>(
|
|
|
|
recipe: (state: QuestionStore) => void,
|
|
|
|
action?: A,
|
|
|
|
) {
|
|
|
|
questionStore.setState(state => produce(state, recipe), false, action);
|
|
|
|
}
|