├── .gitignore ├── .prettierrc ├── LICENSE ├── REACT_README.md ├── README.md ├── data └── Dashboard.gif ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── Backend ├── APIWrapper.js └── FeedData.js ├── Components ├── Feed.jsx ├── GraphCard.jsx ├── HomeNavContainer.js ├── HomeStats.js ├── LineGraph.jsx ├── Navbar.jsx ├── PieChart.jsx ├── SampleGraph.jsx ├── SimpleBarGraph.jsx ├── TestFeed.js └── TitleContainer.js ├── Pages ├── AboutPage.jsx ├── FeedData.jsx ├── GraphPage.jsx ├── HomePage.jsx ├── LargestRecentEdits.jsx ├── MostActivePages.jsx ├── MostActiveUsers.jsx ├── ProportionFlagged.jsx ├── RecentEditSize.jsx ├── TestPage.jsx └── UsersByMostEditsPage.jsx ├── Utils └── History.js ├── index.css ├── index.js ├── legend.svg ├── logo.svg ├── serviceWorker.js ├── setupTests.js └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/LICENSE -------------------------------------------------------------------------------- /REACT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/REACT_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/README.md -------------------------------------------------------------------------------- /data/Dashboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/data/Dashboard.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Backend/APIWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Backend/APIWrapper.js -------------------------------------------------------------------------------- /src/Backend/FeedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Backend/FeedData.js -------------------------------------------------------------------------------- /src/Components/Feed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/Feed.jsx -------------------------------------------------------------------------------- /src/Components/GraphCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/GraphCard.jsx -------------------------------------------------------------------------------- /src/Components/HomeNavContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/HomeNavContainer.js -------------------------------------------------------------------------------- /src/Components/HomeStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/HomeStats.js -------------------------------------------------------------------------------- /src/Components/LineGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/LineGraph.jsx -------------------------------------------------------------------------------- /src/Components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/Navbar.jsx -------------------------------------------------------------------------------- /src/Components/PieChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/PieChart.jsx -------------------------------------------------------------------------------- /src/Components/SampleGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/SampleGraph.jsx -------------------------------------------------------------------------------- /src/Components/SimpleBarGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/SimpleBarGraph.jsx -------------------------------------------------------------------------------- /src/Components/TestFeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/TestFeed.js -------------------------------------------------------------------------------- /src/Components/TitleContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Components/TitleContainer.js -------------------------------------------------------------------------------- /src/Pages/AboutPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/AboutPage.jsx -------------------------------------------------------------------------------- /src/Pages/FeedData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/FeedData.jsx -------------------------------------------------------------------------------- /src/Pages/GraphPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/GraphPage.jsx -------------------------------------------------------------------------------- /src/Pages/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/HomePage.jsx -------------------------------------------------------------------------------- /src/Pages/LargestRecentEdits.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/LargestRecentEdits.jsx -------------------------------------------------------------------------------- /src/Pages/MostActivePages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/MostActivePages.jsx -------------------------------------------------------------------------------- /src/Pages/MostActiveUsers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/MostActiveUsers.jsx -------------------------------------------------------------------------------- /src/Pages/ProportionFlagged.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/ProportionFlagged.jsx -------------------------------------------------------------------------------- /src/Pages/RecentEditSize.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/RecentEditSize.jsx -------------------------------------------------------------------------------- /src/Pages/TestPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/TestPage.jsx -------------------------------------------------------------------------------- /src/Pages/UsersByMostEditsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Pages/UsersByMostEditsPage.jsx -------------------------------------------------------------------------------- /src/Utils/History.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/Utils/History.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/index.js -------------------------------------------------------------------------------- /src/legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/legend.svg -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isobelm/Software-Engineering/HEAD/src/style.css --------------------------------------------------------------------------------