Snai3i-MarketPlace / frontend / src / app / slices / courses.ts
courses.ts
Raw
import { createSlice } from '@reduxjs/toolkit';
import {
  threeD,
  afk,
  makemehappy,
  python,
  mecha,
} from '@/assets/images/courses-thumb';

const initialState: {
  courses: Course[] | null;
  categories: string[];
} | null = {
  courses: [
    {
      id: '1',
      title: 'AFK For Kids',
      description:
        'In this course, students will learn how to design the user interface of an application, followed by programming it, Each session will focus on a new type of application that challenges them to learn more, such as using Canvas to add animation to their application or linking it to cloud storage        ',
      teacher: 'Sna3i',
      price: 240000,
      image: afk,
      category: 'Programming',
      rating: 4.5,
      video: 'https://www.youtube.com/embed/EZxG_XxUuwE',
      hours: 24,
      uploadedDate: 'Dec 21,2024',
      chapters: [
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
      ],
    },
    {
      id: '2',
      title: 'Artificial Intelligence',
      description:
        'In this course, students will acquire knowledge in the field of artificial intelligence, where they will delve deeper into machine learning, followed by neural networks and deep learning. They will have the opportunity to develop their programming skills by working on various programs that rely on applications and technologies related to artificial intelligence      ',
      teacher: 'Snai3i',
      price: 120000,
      image: makemehappy,
      category: 'Coding',
      rating: 4.5,
      video: 'https://www.youtube.com/embed/q6jlJpQfc94',
      hours: 12,
      uploadedDate: 'Dec 21,2024',
      chapters: [
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
      ],
    },
    {
      id: '3',
      title: 'Python for kids',
      description:
        'During this course, students will learn the fundamentals of the Python programming language. Python is one of the most important programming languages widely used in professional settings, with particular significance in the field of artificial intelligence.',
      teacher: 'Snai3i',
      price: 120000,
      image: python,
      category: 'Coding',
      rating: 4.5,
      video: 'https://www.youtube.com/embed/lMhoutqpODE',
      hours: 12,
      uploadedDate: 'Dec 21,2024',
      chapters: [
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
      ],
    },
    {
      id: '4',
      title: '3D for kids',
      description:
        ' During this course, students will become familiar with the design process using software such as Tinkercad and SolidWorks. Additionally, students will learn how to use 3D printers. This step will be pivotal for applying what they have learned in their designs realistically and creating actual models using 3D printing technology',
      teacher: 'Snai3i',
      price: 160000,
      image: threeD,
      category: 'Mechatronics',
      rating: 4.5,
      video: 'https://www.youtube.com/embed/YLxHcSiRwkQ',
      hours: 16,
      uploadedDate: 'Dec 21,2024',
      chapters: [
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
      ],
    },
    {
      id: '5',
      title: 'Mechatronics',
      description:
        'children will learn the basics of mechanics, enabling them to understand how mechanical systems work and interact with different parts. Additionally, they will learn about electricity and how to use it to operate electronic devices and robots. This integrated approach helps children understand how to design and build devices and systems that combine mechanical and electrical sciences.',
      teacher: 'Snai3i',
      price: 160000,
      image: mecha,
      category: 'Electronics', // + coding
      rating: 4.5,
      video: 'https://www.youtube.com/embed/oQG3YpE4YE4',
      hours: 16,
      uploadedDate: 'Dec 21,2024',
      chapters: [
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
        {
          title: '',
          duration: '',
        },
      ],
    },
  ],
  categories: ['All', 'Programming', 'Coding', 'Mechatronics', 'Electronics'],
};
/*

*/

const coursesSlice = createSlice({
  name: 'courses',
  initialState: initialState,
  reducers: {
    setCourses: (state, action) => {
      state.courses = action.payload;
    },
  },
});

export const { setCourses } = coursesSlice.actions;
export default coursesSlice.reducer;