61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
import * as yup from 'yup';
|
|
|
|
export const ABCDQuestionSchema = yup
|
|
.array()
|
|
.of(
|
|
yup.object({
|
|
right: yup.boolean().required(),
|
|
answer: yup.string().required('You need an answer')
|
|
})
|
|
)
|
|
.min(2, 'You need at least 2 answers')
|
|
.max(16, "You can't have more than 16 answers");
|
|
|
|
export const RangeQuestionSchema = yup.object({
|
|
min: yup.number(),
|
|
max: yup.number(),
|
|
min_correct: yup.number(),
|
|
max_correct: yup.number()
|
|
});
|
|
export const dataSchema = yup.object({
|
|
public: yup.boolean().required(),
|
|
type: yup.string(),
|
|
title: yup
|
|
.string()
|
|
.required('A title is required')
|
|
.min(3, 'The title has to be longer than 3 characters')
|
|
.max(300, 'The title has to be shorter than 300 characters'),
|
|
description: yup
|
|
.string()
|
|
.required('The description is required!')
|
|
.min(3, 'The description has to be longer than 3 characters')
|
|
.max(500, 'The description has to be shorter than 500 characters'),
|
|
questions: yup
|
|
.array()
|
|
.of(
|
|
yup.object({
|
|
question: yup.string().required('A question-title is required').max(299),
|
|
time: yup.number().required().positive('The time has to be positive'),
|
|
image: yup
|
|
.string()
|
|
.nullable()
|
|
.matches(
|
|
/^(http(|s):\/\/.*(|:)\d*\/api\/v1\/storage\/download\/.{36}--.{36}|https:\/\/i\.imgur\.com\/.{7}.(jpg|png|gif))$|^$/,
|
|
"The image-url isn't valid"
|
|
)
|
|
.lowercase(),
|
|
answers: yup.lazy((v) =>
|
|
Array.isArray(v) ? ABCDQuestionSchema : RangeQuestionSchema
|
|
)
|
|
})
|
|
)
|
|
.min(1, 'You need at least one question')
|
|
.max(50, "You can't have more than 32 questions")
|
|
});
|