Giter Site home page Giter Site logo

cid-harvard / cities-atlas-front-end Goto Github PK

View Code? Open in Web Editor NEW
11.0 4.0 2.0 20.05 MB

An Urban Economy Navigator designed to provide policymakers, entrepreneurs, investors, business organizations, civil society, and the general public with unprecedented economic data and visualizations for more than 1,000 cities in 79 countries.

Home Page: https://metroverse.cid.harvard.edu/

HTML 0.22% TypeScript 92.53% CSS 0.22% Fluent 7.03%
city-government city urban-planning policy economics data-visualization policy-making research harvard government

cities-atlas-front-end's Introduction

The Metroverse

by the Growth Lab at Harvard's Center for International Development

This package is part of Harvard Growth Lab’s portfolio of software packages, digital products and interactive data visualizations. To browse our entire portfolio, please visit The Viz Hub at growthlab.app. To learn more about our research, please visit Harvard Growth Lab’s home page.

License - Attribution-NonCommercial-ShareAlike 4.0 International © The President and Fellows of Harvard College

Table of Contents

Once this repo has been cloned, navigate to the directory via command line and run

npm install

This will install all of your dependencies.

Next, at the root directory create a .env file. Within the .env file, include the following contents (with the XXXX replaced by the corresponding variable values):

REACT_APP_API_URL=XXXX
REACT_APP_MAPBOX_ACCESS_TOKEN=XXXX

You can now run the project locally with

npm start

You should now be able to see the project running at localhost:3000

As you work on projects on this repo, make sure to run

npm run lint:fix

before pushing any code to make sure it keeps consistent standards.

The Metroverse front-end is built using the following core technologies. Please familiarize yourself with them to have a better understanding of the codebase.

  • TypeScript, v3.7.2 - the core language of the project
  • React, v16.13.1 - the core framework of the project
  • Styled Components, v5.1.1 - the primary way of implementing CSS properties in the project
  • GraphQL, v15.3.0 - the primary way of interacting with the back-end API
  • D3, v5.16.0 - used for an number of core visualizations and client-side data processing
  • Fluent, v0.13.0 - the primary way of integrating text copy into the front-end
  • Mapbox, v1.12.0 - the backbone for all geographical maps in the project

Deployments to staging environments as well as production environments are conducted using the cid-harvard/cities-playbooks repo. Please see the cid-harvard/cities-playbooks repo for all documentation regarding deployments.

There are a number of utility functions, global variables, and global components available for use throughout the project. See the following sections on a brief overview of what there is and where you can find them.

There are two top level sources for utility functions. The first is found at src/Utils.ts which includes one-off functions that are used throughout the app as well as global variables such as the default year currently in use for API calls. Please familiarize yourself with the functions and values stored in this file.

The other source of global utility functions is within the folder src/utilities. This folder is where more complex utility patterns live. An example within here is the rapidTooltip.ts. This file is used for creating consistent logic and styling of tooltips in data visualizations that handle their own state outside of React. This pattern is most commonly seen in D3 based visualizations that are passed a ref object to render tooltips into. This optimizes these tooltips for performance as they are able to respond directly to D3's internal state management instead of having to also pass through React's state management.

Additional Util.ts files can be found throughout the app within various directories. They generally house logic that are utilized throughout that specific component, hook, or page. It is important to familiarize yourself with the Util file associated with the component you are working on as it may already include some of the logic you are looking to implement.

The Metroverse uses the styled-components library to do most of it's styling work. While the majority of styles are defined at the component level (as is the advantage of using a CSS-in-JS approach), there are some styles defined at a global level as well as numerous style variables and basic components that are easily available throughout the app.

Within the src/styling directory you can find the GlobalGrid.ts and GlobalStyles.tsx files. These respectively control the global layout and global styling found throughout the app.

The other main file found in this directory is styleUtils.ts. This file contains all of the global color, font, and sizing variables as well as many basic components like buttons, titles, and labels. Please familiarize yourself with the contents of this file to prevent code duplication and speed up the development process.

The Metroverse utilizes a number of custom NPM packages that have been specifically developed for either the Metroverse itself or other Harvard Growth Lab Projects. Each of these modules has been designed to be reusable on other projects as well by making them as project agnostic as possible. See below for more information on each of the packages and where to find further documentation for them.

The react-canvas-treemap is a canvas based treemap originally designed for the Atlas of International Complexity and later ported into its own npm module for use in other projects such as the Metroverse. Please refer to its own GitHub repo for documentation or for any development changes that need to be made to this visualization.

The react-city-space-mapbox is a dynamic Mapbox-based visualization that allows toggling of the Growth Lab "City Space" and the true geographic centers of each city. Please refer to its own GitHub repo for documentation or for any development changes that need to be made to this visualization.

The react-comparison-bar-chart is a vertical bar chart that allows the positive/negative comparison between two sets of data of the same categories. Please refer to its own GitHub repo for documentation or for any development changes that need to be made to this visualization.

The react-fast-charts package is a collection of React-D3 visualizations used throughout the Growth Lab's projects. Please refer to its own GitHub repo for documentation or for any development changes that need to be made to its visualizations.

The react-panel-search is the package that contains the logic for the nested search bars found throughout the Metroverse. Please refer to its own GitHub repo for documentation or for any development changes that need to be made to this component.

The react-pswot-plot is a traditional SWOT chart but with the additional of a "Potential" quadrant in the form of Beeswarm plot. It displays all of the data where the x-axis value is equal to zero. Please refer to its own GitHub repo for documentation or for any development changes that need to be made to this visualization.

The react-vertical-bar-chart is a scroll-able bar chart that allows for the visual comparison of a large number of categories without overloading the screen. Please refer to its own GitHub repo for documentation or for any development changes that need to be made to this visualization.

The Metroverse web application is broken up into three distinct sections. Each section is made up of reusable components and logic that often crosses between sections. See below for more information on each section.

The logic for the landing page of the Metroverse is found at src/landing. It handles all of the code for the initial landing page map and pop-up.

The logic for the informational pages of the Metroverse can be found at src/informational. Informational pages are classified as all pages that contain static information about the app, such as the About page or Contact page. All of the routing information is found within the index file of the directory, and properly name sub-directories contain the logic for the individual pages.

The logic for the city profile pages of the Metroverse can be found at src/cities/single. The City Profile pages are classified as all pages that make up the dynamic content of the City Profiles aspect of the app. All of the routing information is found within the index file of the directory, and properly name sub-directories contain the logic for the individual pages.

cities-atlas-front-end's People

Contributors

bertch avatar steven-geofrey avatar wsoeltz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

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.