huguesbert17 / react-native-moodle

A React Native application developed to work with Moodle.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-moodlemobile

A React Native application developed to work with Moodle.

How to run:

  • Clone the repository and access it
  • Install the dependencies with: npm install or yarn install
  • Create your .env file based on .example.env, and fill in the information from your moodle site information
  • If you want to run on an iOS device, access ios/ and install the pods with: cd ios and pod install
  • Run the application with: react-native run-ios or react-native run-android

Environment variables

The .env file is where you will inform information about your instance

  • MOODLE_HOST: is the URL of your moodle instance.
  • MOODLE_SERVICE: Moodle services are specified in plugins > external services. Enter here which service you want to use. Commonly the service to be used is moodle_mobile_app.
  • MOODLE_ADMIN_TOKEN: Enter the token generated by the administrator. To generate, go to plugins > manage tokens

Project structure

The project is divided into the following structure

  • src
    • api: This directory contains all files related to calls to the moodle webservice. This facilitates the implementation of new calls and the maintenance of existing ones.
    • blocks: Here all the blocks to be used by the application, if you have a proprietary moodle block and want to use it in your application, you must implement it here.
    • components: Here are React Components commonly used by the application.
    • events: Here all the files related to the events emitted by the application.
    • locales: All files related to the internationalization of the application are here
    • modules: This is where the moodle educational modules are implemented
    • screens: Everything you can see on your device's screen is here.

Application screenshots

screenshot-1 screenshot-2 screenshot-3

About

A React Native application developed to work with Moodle.

License:MIT License


Languages

Language:JavaScript 88.6%Language:Java 5.4%Language:Objective-C 3.5%Language:Starlark 1.7%Language:Ruby 0.7%Language:Shell 0.1%