├── public
├── logo24.png
├── favicon.ico
├── logo128.png
├── logo512.png
├── robots.txt
├── styles.css
├── manifest.json
└── index.html
├── src
├── assets
│ └── images
│ │ ├── anger.gif
│ │ ├── fear.gif
│ │ ├── image.png
│ │ ├── joy.gif
│ │ ├── sad.gif
│ │ ├── testS.jpg
│ │ ├── neutral.png
│ │ ├── twitter.jpg
│ │ ├── analytical.gif
│ │ └── confidence.gif
├── component
│ ├── Tracker
│ │ ├── CountryPicker
│ │ │ ├── CountryPicker.module.css
│ │ │ └── CountryPicker.jsx
│ │ ├── Chart
│ │ │ ├── Chart.module.css
│ │ │ └── Chart.jsx
│ │ ├── Tracker.module.css
│ │ ├── Cards
│ │ │ ├── Cards.module.css
│ │ │ └── Cards.jsx
│ │ └── Tracker.jsx
│ ├── Header
│ │ ├── Header.module.css
│ │ └── Header.jsx
│ ├── charts
│ │ ├── PieChart
│ │ │ ├── PieChart.module.css
│ │ │ └── PieChart.jsx
│ │ ├── LineChart
│ │ │ ├── LineChart.module.css
│ │ │ └── LineChart.jsx
│ │ └── BarChart
│ │ │ ├── BarChart.module.css
│ │ │ └── BarChart.jsx
│ ├── Navbar
│ │ ├── Navbar.module.css
│ │ └── Navbar.jsx
│ ├── ui
│ │ └── Cards
│ │ │ └── SimpleCard.jsx
│ ├── Home
│ │ ├── Home.module.scss
│ │ └── Home.jsx
│ ├── Date
│ │ ├── Date.module.css
│ │ └── Date.jsx
│ ├── Overall
│ │ ├── Overall.module.css
│ │ └── Overall.jsx
│ └── TestModel
│ │ ├── TestModel.module.scss
│ │ └── TestModel.jsx
├── setupTests.js
├── App.test.js
├── root.js
├── index.js
├── App.module.css
├── theme.scss
├── services
│ ├── api
│ │ └── index.js
│ ├── utilities.js
│ └── frequency.js
├── App.js
└── serviceWorker.js
├── .gitignore
├── package.json
└── README.md
/public/logo24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/public/logo24.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/logo128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/public/logo128.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/public/logo512.png
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/src/assets/images/anger.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/anger.gif
--------------------------------------------------------------------------------
/src/assets/images/fear.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/fear.gif
--------------------------------------------------------------------------------
/src/assets/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/image.png
--------------------------------------------------------------------------------
/src/assets/images/joy.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/joy.gif
--------------------------------------------------------------------------------
/src/assets/images/sad.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/sad.gif
--------------------------------------------------------------------------------
/src/assets/images/testS.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/testS.jpg
--------------------------------------------------------------------------------
/src/assets/images/neutral.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/neutral.png
--------------------------------------------------------------------------------
/src/assets/images/twitter.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/twitter.jpg
--------------------------------------------------------------------------------
/src/assets/images/analytical.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/analytical.gif
--------------------------------------------------------------------------------
/src/assets/images/confidence.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devsinghindra/dashboard/HEAD/src/assets/images/confidence.gif
--------------------------------------------------------------------------------
/src/component/Tracker/CountryPicker/CountryPicker.module.css:
--------------------------------------------------------------------------------
1 | .formControl{
2 | width: 30%;
3 | margin-bottom: 30px !important;
4 | }
--------------------------------------------------------------------------------
/src/component/Tracker/Chart/Chart.module.css:
--------------------------------------------------------------------------------
1 | .container{
2 | display: flex;
3 | justify-content: center;
4 | width: 85%;
5 | }
6 |
7 | @media (max-width: 770px){
8 | .container{
9 | width: 100%;
10 | }
11 | }
--------------------------------------------------------------------------------
/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom/extend-expect';
6 |
--------------------------------------------------------------------------------
/src/App.test.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { render } from '@testing-library/react';
3 | import App from './App';
4 |
5 | test('renders learn react link', () => {
6 | const { getByText } = render(