Ayeshashaik759 / ExerciserReact

React code of Exerciser Activity. GSoC 2018

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sugarizer Exerciser Activity

The Sugarizer Exerciser Activity is an Academic focused Activity for the Sugarizer Platform. It provides Teachers to build interactive Exercises for students, using multiple templates, and share them with their Students using the sugarizer-server.

This activity was developped by Mankirat Singh during GSoC 2018. Learn more about this work on Mankirat's blog.

The Exerciser Activity is written using ReactJS framework. The ReactJS source code is maintain here and, once build, the code is integrated in Sugarizer.

Templates present in the application

  1. Multiple Choice Questions -
    Build an exercise with questions and option choices. Here the user is supposed to select the correct answer to the question from a set of given options.
  2. Cloze Text -
    Build an exercise with questions that have blanks to be filled. Here the user is supposed to fill in the blanks with the most appropriate answer.
  3. Reorder List -
    Build an exercise with Jumbled Lists that need to be ordered.
  4. Group Assignment -
    Build an exercise with questions that need to be placed in the correct group.
  5. Free text Input -
    Build an exercise with questions that have answers in text format.
  6. Matching Pair -
    Build an exercise to match questions with answers. Here the user is supposed to match one item in the left column to its corresponding item in the right column by connecting their two points.

Steps to run project

Make sure npm and nodejs are installed on your machine.

Clone the repository on your local machine and run.

npm install

Setting up the development environment

Copy the lib folder, inside the main directory of the project folder, into the node_modules folder (after npm install). These are dependencies required by the sugarizer platform.

mkdir node_modules/lib
cp -r lib/* node_modules/lib

Running the project

As a React App (No Sugarizer Features):
npm run start
As a Sugarizer Activity inside Sugarizer:

This step requires sugarizer. The steps to get Sugarizer working on your machine can be found here: Sugarizer

Build the Activity
npm run build

The built activity can now be found inside the build folder.

Deploy Activity:

Copy the contents of the build folder and paste them inside the activity folder corresponding to Exerciser (/activities/Exerciser.activity), inside Sugarizer.

rm -rf ../sugarizer/activities/Exerciser.activity/*
cp -r build/* ../sugarizer/activities/Exerciser.activity

Restart Sugarizer.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b feature/feature_name)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin feature/feature_name)
  5. Create a new Pull Request

LICENSE

License

This repository is Licensed under Apache v2 license.

About

React code of Exerciser Activity. GSoC 2018

License:Apache License 2.0


Languages

Language:JavaScript 88.6%Language:CSS 9.0%Language:Less 2.3%Language:HTML 0.2%