Coder Social home page Coder Social logo

earth-dashboard's Introduction

Earth Dashboard

Earth Dashboard features hundreds of data sets all in one place on the state of the planet’s resources and citizens. Users can visualize challenges facing people and the planet, from climate change to poverty, water risk to state instability, air pollution to human migration, and more.

Requirements

Native execution requires the following:

Installation (native) πŸ“¦

Run

yarn

in your terminal will install all dependencies. Once done, type:

yarn dev

and your app will be served in http://localhost:9000/ (if you didn't change the default port in the .env).

Branch structure

  • main: This is the production branch. The code from this branch should be deployable at any time.
  • develop: This is the reference branch for development. This branch will be used for the staging site and all feature/bug branches should be created starting from it.

Production build

If you need a production-ready build, run:

yarn build

this will generate your build in ./dist folder ready to run

Happy coding!

Deploying to servers

Deployment is done using Capistrano, a Ruby gem. It also requires you to have SSH access to the server using a public/private key pair.

Once you have Capistrano and its dependencies up and running, simply run:

bundle exec cap <environment> deploy

Each available environment will have a file with its name in the config/deploy folder.

The process may take a few minutes. The deployment is based of Github, not your local machine, so be sure to have the code you want to see live pushed to Github. You can continue editing your code locally while the deployment process takes place.

env

There's an .env.sample file you will need to duplicate and rename to .env in order to make the app work. Populate it properly and that's all. You can find information there about the environment variables that are necessary for this project.

Troubleshooting πŸ€”

You might run into some problems installing dependencies:

Cairo / Canvas

If the installation fails at the point where it installs canvas, you may want to take a look at this.

Architecture πŸ“‚

The application is built on top of Next.js - a framework for server-rendered React apps. Next provides a zero-setup webpack build ready to develop along a express server to run the application and SASS styles compilation.

Folder structure

Earth Dashboard application is split into the next main folders:

  • components
  • css
  • layout
  • pages
  • public
  • redactions (legacy)
  • selectors (legacy)
  • services
  • slices
  • utils

./pages

Pages are the first component to be loaded according Next specification. They contain the layout to be loaded. They are also in charge of fetching data for that specific page.

There are the main pages/groups of pages:

  • [topic]: contains the two pages that are related to each specific topic i) indicators page (index.js) and ii) "scrolly-telling" page (data.js).
  • admin: contains the pages that are rendered as part of the back office.
  • index: homepage.
  • about: about page (it's actually loading the homepage with the navigation menu open and the about tab selected).
  • 404: custom page not found layout.
  • sign-in: back office log in page.

NOTE: The way pages and routing works have changed in the last versions of Next.js has changed in the most recent versions of the library. For more information about how this works in the version that ED uses - 9.5.3 please check the official routing documentation.

Apart from the custom pages, there exist the following 3 unique pages defined by Next:

_app

Page overriding the default page initialization. The code included here applies to all the rest of pages defined for the app. Please refer to the Custom App section of the official documentation for more information about this.

_document

Custom Document page used to augment the application's <html> and <body> tags. Please refer to the Custom Document section of the official documentation for more information about this.

_error

Custom error page (only shown in production). Please refer to the Custom Error Page section of the official documentation for more information about this.

./layouts

Layouts are the second component to be loaded as part of the page render process. They contain all components that will be displayed in the page. Layouts don't directly fetch data but rather wait for it. Internal components could ask for data though.

./components

Every component will be contained in its own folder with its name. A basic component will contain the component itself (component.js) plus an entrypoint to it (index.js). If the component needs access to the store, we will provide it here, otherwise we will just import the component. Additional files would be component-name.module.scss (containing component-scoped styles), constants.js (component-scoped constants), and data.js (component-scoped data).

./components/sidebar/
   ./constants.js (not required)
   ./component.js (required)
   ./index.js (required)
   ./sidebar.module.scss (not required)
   ./data.js (not required)

Recommendation: Try to make stateless components (unless it's necessary for some reason). This will make components easier to track and reuse.

./redactions + ./selectors

These two are legacy folders from RW that are necessary for the back office components to work. Please refer to the Resource Watch documentation for more information about this.

css

Contains generic application styles, grid, settings, mixins and anything style-related in a global scope. It also contains third-app components styles if needed.

Legacy note: you will notice some style definitions whose scope are the components themselves as part of the ./css/components folder. These however are RW migrated styles that were necessary for the back office to work properly. Please refer to the Resource Watch documentation for more information about this.

./services

Services are in charge of connecting the application with external APIs/other services. Every service contains a set of fetches (usually based on CRUD), it's possible to extend them if needed, but take into account there shouldn't be any app-related logic here. Every fetch should be able to be used in any context.

Services are based on Axios to manage XMLHttpRequests/HTTP requests.

Services are split into entities (most of them coming from WRI API, feel free to create a new one if needed. Every fetch must be documented. You can find more info about it in the documentation section.

All request wrappers are implemented as standalone functions using Axios that can potentially be used anywhere without any initialization. Most - if not all - of them return promises that should be handled in order to retrieve the results or manage potential errors.

./utils

Contains general use functions that are used across the app. Like constants, think about the scope of your util before implementing it here, perhaps just adding it at component's level is enough.

.public/static

Contains assets that are used across the app, like data, images, favicon, robots...

App State Management πŸŒ…

Earth Dashboard uses Redux together with @reduxjs/toolkit to manage the app state.

Connection to the store must be isolated from the component itself (separating presentation from logic).

import { connect } from 'react-redux';

// component
import PagesShow from './component';

export default connect(
  state => ({
    user: state.user,
    id: state.routes.query.id
  }),
  null
)(PagesShow);

The example above shows an index.js separating the logic from the component layout.

Authentication 🚫

Authentication is based on the RW API user management API and it's handled entirely by the front-end. Check the methods from services/user and the user slice for more information about this.

Mobile/Desktop/Desktop large... versions πŸ“±

We're using Fresnel -an SSR compatible approach to CSS, to manage the different versions of the interface depending on the device that's being used. Definitions of the breakpoints plus components that can be used to define the interface for each of the cases can be found on /utils/responsive

Optimization πŸ”Ž

Bundle Analyzer

Bundle Analyzer is a development tool that creates an interactive treemap visualization of the contents of all your bundles.

To run it: yarn bundle-analyzer.

It will run the application in production build (makes a yarn build internally) and open a tab in your browser displaying the bundles treemap.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.