README.md 5.49 KB
Newer Older
wuruchi's avatar
wuruchi committed
# Autosubmit GUI
wuruchi's avatar
wuruchi committed
[![status](https://joss.theoj.org/papers/a8ac17f6c02fdf76098ac97ed3e09b22/status.svg)](https://joss.theoj.org/papers/a8ac17f6c02fdf76098ac97ed3e09b22)
wuruchi's avatar
wuruchi committed
# Table of Contents

1. [Overview](#Overview)
2. [General Knowledge Requirements](#general-knowledge-requirements)
wuruchi's avatar
wuruchi committed
3. [Installation](#installation)
4. [Testing](#testing)
5. [User Guide](#user-guide)
6. [Contributing](#contributing)
wuruchi's avatar
wuruchi committed

## Overview:
wuruchi's avatar
wuruchi committed
Autosubmit GUI is a front-end software developed using [ReactJS](https://reactjs.org/docs/getting-started.html) as the main framework, and JavaScript in general.
This front-end software consumes most of the information it needs from [Autosubmit API](https://earth.bsc.es/gitlab/wuruchi/autosubmit_api/-/wikis/home), an API that retrieves information from an internal file system that results from the execution of [Autosubmit](https://earth.bsc.es/gitlab/es/autosubmit) to execute experiments on a High Performance Computing environment.
wuruchi's avatar
wuruchi committed

These two systems, the API and the GUI, are independent of each other. It is possible to replace Autosubmit API for another API that provides similar information. For
that purpose, we provide with response examples (more details in the installation section) that can help the developer understand how the information is used in
wuruchi's avatar
wuruchi committed
the components of the GUI.
Autosubmit GUI uses [FancyTree](https://github.com/mar10/fancytree/), [vis.js](https://visjs.org/), and [d3js](https://d3js.org/); these are popular and very useful libraries that help us show the experiment information in a graphical and comprehensive way. The GUI implements creative ways to use these libraries to dynamically display information without losing performance.
Some of the expermients in our environment can include more than `10000` jobs, and showing this information in a web format without significant loss of performance is
by itself an achievement.
wuruchi's avatar
wuruchi committed
## General Knowledge Requirements:
- npm
- Javascript: asynchronous functions, promises, event handling, etc.
- Bootstrap 4 and CSS
- DOM manipulation
- JSON
- ReactJS
wuruchi's avatar
wuruchi committed

wuruchi's avatar
wuruchi committed
## Installation
wuruchi's avatar
wuruchi committed
The main development framework is **npm**, we are currently using version `6.9.0`. You can find the main **npm** dependencies in the file: [package.json](package.json).
Refer to: [npm documentation](https://docs.npmjs.com/) for more information about installation and first steps on this platform.

Make sure to have npm installed in your local environment.

Execute:

wuruchi's avatar
wuruchi committed
`git clone https://earth.bsc.es/gitlab/es/autosubmitreact/`
wuruchi's avatar
wuruchi committed

As default, the GUI will request data from the `Autosubmit API`, which is inacessible from outside the Barcelona Supercomputing Center internal network.
wuruchi's avatar
wuruchi committed
So, we should open the file:

`/autosubmitreact/src/components/context/vars.js`

wuruchi's avatar
wuruchi committed

`export const NOAPI = false;`
wuruchi's avatar
wuruchi committed

`export const AUTHENTICATION = true;`
wuruchi's avatar
wuruchi committed

wuruchi's avatar
wuruchi committed

`export const NOAPI = true;`
wuruchi's avatar
wuruchi committed

`export const AUTHENTICATION = false;`
wuruchi's avatar
wuruchi committed

This will effectively set the API calls to be redirected towards an internal data samples folder `/autosubmitreact/src/components/context/data/` implemented for testing purposes.
wuruchi's avatar
wuruchi committed

**IMPORTANT**: The static data required by `NOAPI = true` is stored in [/autosubmitreact/data](https://earth.bsc.es/gitlab/es/autosubmitreact/-/tree/master/data) because we don't want that the package sent for deployment includes all this information that will only increase the size of the package. Therefore, in forder for `NOAPI = true` to work, you should copy the contents of `/autosubmitreact/data/` into `/autosubmitreact/src/components/context/data/`.

In the case of `AUTHENTICATION`, you set it to `false` to avoid the requirement of an authentication token, because you won't be able to get one from BSC internal Central Authentication Service.
However, some API calls might require that you have a valid token, but if you are using the internal data, it shouldn't be a problem.
wuruchi's avatar
wuruchi committed

Then, you can run:

`npm install`

And all the necessary dependencies will be installed.

After that, you will be able to run:
wuruchi's avatar
wuruchi committed

`npm start`

wuruchi's avatar
wuruchi committed
Then, the GUI should open in your default browser, and the information displayed should correspond to that of the data samples folder.
wuruchi's avatar
wuruchi committed

wuruchi's avatar
wuruchi committed
## Testing
wuruchi's avatar
wuruchi committed

The testing suite has been developed using [JEST](https://jestjs.io/en/).

To execute it, go to your main folder (`/autosubmitreact/`) and execute:

`npm test`

Almost all tests can be found at `/autosubmitreact/src/components/experiment/tests/`.

Make sure that you have installed the dependencies before running the tests.

Note: It could happen that `jest` fails to run or is not automatically installed along the other dependencies on a Windows machine, please install it manually.

wuruchi's avatar
wuruchi committed
## User Guide
wuruchi's avatar
wuruchi committed

A user guide has been developed and published at [https://autosubmit.readthedocs.io/en/latest/autosubmit-gui.html](https://autosubmit.readthedocs.io/en/latest/autosubmit-gui.html).
wuruchi's avatar
wuruchi committed
Although a little outdated, we are constantly working on updating it considering the latest features.

wuruchi's avatar
wuruchi committed
## Contributing
wuruchi's avatar
wuruchi committed

Currently, the development of this software is under the `Autosubmit team` that belongs to the `Earth Science Department` of the `Barcelona Supercomputing Center`.
wuruchi's avatar
wuruchi committed

You can open issues in this repository using the `Email a new issue to this project` function, since user creation is currently restricted to only `BSC` members.
wuruchi's avatar
wuruchi committed
Most issues have been centralized in the [Autosubmit repository](https://earth.bsc.es/gitlab/es/autosubmit/-/issues), and you can check them there.

wuruchi's avatar
wuruchi committed
You are free (and encouraged) to clone this software and modify it to fit your needs. Moreover, the `BSC` is always looking for collaboration, so feel free to request support.