30382/backend/src/db/seeders/20231127130745-sample-data.js
2025-04-01 12:01:17 +00:00

423 lines
9.8 KiB
JavaScript

const db = require('../models');
const Users = db.users;
const Analytics = db.analytics;
const Courses = db.courses;
const DiscussionBoards = db.discussion_boards;
const Enrollments = db.enrollments;
const Instructors = db.instructors;
const Students = db.students;
const AnalyticsData = [
{
// type code here for "relation_many" field
// type code here for "relation_many" field
// type code here for "relation_many" field
},
{
// type code here for "relation_many" field
// type code here for "relation_many" field
// type code here for "relation_many" field
},
{
// type code here for "relation_many" field
// type code here for "relation_many" field
// type code here for "relation_many" field
},
];
const CoursesData = [
{
title: 'Introduction to Programming',
description: 'Learn the basics of programming with Python.',
// type code here for "relation_many" field
// type code here for "relation_many" field
// type code here for "relation_many" field
},
{
title: 'Advanced Mathematics',
description: 'Explore advanced topics in mathematics.',
// type code here for "relation_many" field
// type code here for "relation_many" field
// type code here for "relation_many" field
},
{
title: 'History of Art',
description: 'Study the evolution of art through the ages.',
// type code here for "relation_many" field
// type code here for "relation_many" field
// type code here for "relation_many" field
},
];
const DiscussionBoardsData = [
{
// type code here for "relation_one" field
topic: 'General Discussion',
// type code here for "relation_many" field
},
{
// type code here for "relation_one" field
topic: 'Math Queries',
// type code here for "relation_many" field
},
{
// type code here for "relation_one" field
topic: 'Art History Discussions',
// type code here for "relation_many" field
},
];
const EnrollmentsData = [
{
// type code here for "relation_one" field
// type code here for "relation_one" field
payment_status: 'completed',
},
{
// type code here for "relation_one" field
// type code here for "relation_one" field
payment_status: 'completed',
},
{
// type code here for "relation_one" field
// type code here for "relation_one" field
payment_status: 'pending',
},
];
const InstructorsData = [
{
// type code here for "relation_one" field
// type code here for "relation_many" field
},
{
// type code here for "relation_one" field
// type code here for "relation_many" field
},
{
// type code here for "relation_one" field
// type code here for "relation_many" field
},
];
const StudentsData = [
{
// type code here for "relation_one" field
// type code here for "relation_many" field
// type code here for "relation_many" field
},
{
// type code here for "relation_one" field
// type code here for "relation_many" field
// type code here for "relation_many" field
},
{
// type code here for "relation_one" field
// type code here for "relation_many" field
// type code here for "relation_many" field
},
];
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
async function associateDiscussionBoardWithCourse() {
const relatedCourse0 = await Courses.findOne({
offset: Math.floor(Math.random() * (await Courses.count())),
});
const DiscussionBoard0 = await DiscussionBoards.findOne({
order: [['id', 'ASC']],
offset: 0,
});
if (DiscussionBoard0?.setCourse) {
await DiscussionBoard0.setCourse(relatedCourse0);
}
const relatedCourse1 = await Courses.findOne({
offset: Math.floor(Math.random() * (await Courses.count())),
});
const DiscussionBoard1 = await DiscussionBoards.findOne({
order: [['id', 'ASC']],
offset: 1,
});
if (DiscussionBoard1?.setCourse) {
await DiscussionBoard1.setCourse(relatedCourse1);
}
const relatedCourse2 = await Courses.findOne({
offset: Math.floor(Math.random() * (await Courses.count())),
});
const DiscussionBoard2 = await DiscussionBoards.findOne({
order: [['id', 'ASC']],
offset: 2,
});
if (DiscussionBoard2?.setCourse) {
await DiscussionBoard2.setCourse(relatedCourse2);
}
}
// Similar logic for "relation_many"
async function associateEnrollmentWithStudent() {
const relatedStudent0 = await Students.findOne({
offset: Math.floor(Math.random() * (await Students.count())),
});
const Enrollment0 = await Enrollments.findOne({
order: [['id', 'ASC']],
offset: 0,
});
if (Enrollment0?.setStudent) {
await Enrollment0.setStudent(relatedStudent0);
}
const relatedStudent1 = await Students.findOne({
offset: Math.floor(Math.random() * (await Students.count())),
});
const Enrollment1 = await Enrollments.findOne({
order: [['id', 'ASC']],
offset: 1,
});
if (Enrollment1?.setStudent) {
await Enrollment1.setStudent(relatedStudent1);
}
const relatedStudent2 = await Students.findOne({
offset: Math.floor(Math.random() * (await Students.count())),
});
const Enrollment2 = await Enrollments.findOne({
order: [['id', 'ASC']],
offset: 2,
});
if (Enrollment2?.setStudent) {
await Enrollment2.setStudent(relatedStudent2);
}
}
async function associateEnrollmentWithCourse() {
const relatedCourse0 = await Courses.findOne({
offset: Math.floor(Math.random() * (await Courses.count())),
});
const Enrollment0 = await Enrollments.findOne({
order: [['id', 'ASC']],
offset: 0,
});
if (Enrollment0?.setCourse) {
await Enrollment0.setCourse(relatedCourse0);
}
const relatedCourse1 = await Courses.findOne({
offset: Math.floor(Math.random() * (await Courses.count())),
});
const Enrollment1 = await Enrollments.findOne({
order: [['id', 'ASC']],
offset: 1,
});
if (Enrollment1?.setCourse) {
await Enrollment1.setCourse(relatedCourse1);
}
const relatedCourse2 = await Courses.findOne({
offset: Math.floor(Math.random() * (await Courses.count())),
});
const Enrollment2 = await Enrollments.findOne({
order: [['id', 'ASC']],
offset: 2,
});
if (Enrollment2?.setCourse) {
await Enrollment2.setCourse(relatedCourse2);
}
}
async function associateInstructorWithUser() {
const relatedUser0 = await Users.findOne({
offset: Math.floor(Math.random() * (await Users.count())),
});
const Instructor0 = await Instructors.findOne({
order: [['id', 'ASC']],
offset: 0,
});
if (Instructor0?.setUser) {
await Instructor0.setUser(relatedUser0);
}
const relatedUser1 = await Users.findOne({
offset: Math.floor(Math.random() * (await Users.count())),
});
const Instructor1 = await Instructors.findOne({
order: [['id', 'ASC']],
offset: 1,
});
if (Instructor1?.setUser) {
await Instructor1.setUser(relatedUser1);
}
const relatedUser2 = await Users.findOne({
offset: Math.floor(Math.random() * (await Users.count())),
});
const Instructor2 = await Instructors.findOne({
order: [['id', 'ASC']],
offset: 2,
});
if (Instructor2?.setUser) {
await Instructor2.setUser(relatedUser2);
}
}
// Similar logic for "relation_many"
async function associateStudentWithUser() {
const relatedUser0 = await Users.findOne({
offset: Math.floor(Math.random() * (await Users.count())),
});
const Student0 = await Students.findOne({
order: [['id', 'ASC']],
offset: 0,
});
if (Student0?.setUser) {
await Student0.setUser(relatedUser0);
}
const relatedUser1 = await Users.findOne({
offset: Math.floor(Math.random() * (await Users.count())),
});
const Student1 = await Students.findOne({
order: [['id', 'ASC']],
offset: 1,
});
if (Student1?.setUser) {
await Student1.setUser(relatedUser1);
}
const relatedUser2 = await Users.findOne({
offset: Math.floor(Math.random() * (await Users.count())),
});
const Student2 = await Students.findOne({
order: [['id', 'ASC']],
offset: 2,
});
if (Student2?.setUser) {
await Student2.setUser(relatedUser2);
}
}
// Similar logic for "relation_many"
// Similar logic for "relation_many"
module.exports = {
up: async (queryInterface, Sequelize) => {
await Analytics.bulkCreate(AnalyticsData);
await Courses.bulkCreate(CoursesData);
await DiscussionBoards.bulkCreate(DiscussionBoardsData);
await Enrollments.bulkCreate(EnrollmentsData);
await Instructors.bulkCreate(InstructorsData);
await Students.bulkCreate(StudentsData);
await Promise.all([
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
// Similar logic for "relation_many"
await associateDiscussionBoardWithCourse(),
// Similar logic for "relation_many"
await associateEnrollmentWithStudent(),
await associateEnrollmentWithCourse(),
await associateInstructorWithUser(),
// Similar logic for "relation_many"
await associateStudentWithUser(),
// Similar logic for "relation_many"
// Similar logic for "relation_many"
]);
},
down: async (queryInterface, Sequelize) => {
await queryInterface.bulkDelete('analytics', null, {});
await queryInterface.bulkDelete('courses', null, {});
await queryInterface.bulkDelete('discussion_boards', null, {});
await queryInterface.bulkDelete('enrollments', null, {});
await queryInterface.bulkDelete('instructors', null, {});
await queryInterface.bulkDelete('students', null, {});
},
};