├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── craco.config.js ├── createPopupBuild.js ├── jest.config.ts ├── jest.setup.ts ├── package.json ├── public ├── _redirects ├── atila-logo-gradient-128.png ├── bootstrap │ ├── css │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ └── bootstrap.bundle.min.js ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.test.tsx ├── App.tsx ├── background.ts ├── bootstrap │ ├── css │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ └── bootstrap.bundle.min.js ├── components │ ├── ContentCard │ │ └── ContentCard.tsx │ ├── Footer │ │ └── Footer.tsx │ ├── Header │ │ └── Header.tsx │ ├── RegisterLogin │ │ ├── Login.tsx │ │ └── Register.tsx │ ├── ResponsiveEmbed.tsx │ ├── ScholarshipAddForm.css │ ├── ScholarshipAddForm.tsx │ ├── Search │ │ ├── Search.tsx │ │ ├── SearchAtlas.tsx │ │ ├── SearchAtlasExamples.tsx │ │ ├── SearchResults.tsx │ │ ├── Summaries.tsx │ │ └── VideoDisplay.tsx │ └── Toast.tsx ├── content.ts ├── index.css ├── index.tsx ├── logo.svg ├── models │ ├── AtilaStorageArea.ts │ ├── Collection.ts │ ├── Constants.ts │ ├── Content.ts │ ├── ExtensionMessage.ts │ ├── GeneralNotes.ts │ ├── Scholarship.ts │ ├── UserProfile.ts │ └── Video.ts ├── react-app-env.d.ts ├── reportWebVitals.ts ├── scenes │ ├── Atlas │ │ ├── ApplyCredits.tsx │ │ └── Atlas.tsx │ ├── Dashboard │ │ ├── DashBoard.test.tsx │ │ ├── DashBoard.tsx │ │ ├── GeneralNotesAddEdit.tsx │ │ ├── ScholarshipTableRow.tsx │ │ ├── ScholarshipsTable.css │ │ ├── ScholarshipsTable.test.tsx │ │ └── ScholarshipsTable.tsx │ ├── PopUp │ │ ├── PopUp.css │ │ └── PopUp.tsx │ ├── UserProfile │ │ └── UserProfileView.tsx │ └── WebApp │ │ └── WebApp.tsx ├── services │ ├── AtilaAPI.ts │ ├── AtlasService.ts │ ├── ChromeMock.ts │ ├── Environment.ts │ ├── ScholarshipUtils.ts │ ├── StorageHelper.ts │ ├── UserProfileService.ts │ ├── Utils.ts │ └── mock_data │ │ └── SavedScholarships.json └── setupTests.ts ├── tsconfig.json └── yarn.lock /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/README.md -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/craco.config.js -------------------------------------------------------------------------------- /createPopupBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/createPopupBuild.js -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/jest.setup.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/atila-logo-gradient-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/atila-logo-gradient-128.png -------------------------------------------------------------------------------- /public/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /public/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/components/ContentCard/ContentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/ContentCard/ContentCard.tsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/RegisterLogin/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/RegisterLogin/Login.tsx -------------------------------------------------------------------------------- /src/components/RegisterLogin/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/RegisterLogin/Register.tsx -------------------------------------------------------------------------------- /src/components/ResponsiveEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/ResponsiveEmbed.tsx -------------------------------------------------------------------------------- /src/components/ScholarshipAddForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/ScholarshipAddForm.css -------------------------------------------------------------------------------- /src/components/ScholarshipAddForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/ScholarshipAddForm.tsx -------------------------------------------------------------------------------- /src/components/Search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/Search/Search.tsx -------------------------------------------------------------------------------- /src/components/Search/SearchAtlas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/Search/SearchAtlas.tsx -------------------------------------------------------------------------------- /src/components/Search/SearchAtlasExamples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/Search/SearchAtlasExamples.tsx -------------------------------------------------------------------------------- /src/components/Search/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/Search/SearchResults.tsx -------------------------------------------------------------------------------- /src/components/Search/Summaries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/Search/Summaries.tsx -------------------------------------------------------------------------------- /src/components/Search/VideoDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/Search/VideoDisplay.tsx -------------------------------------------------------------------------------- /src/components/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/components/Toast.tsx -------------------------------------------------------------------------------- /src/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/content.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/models/AtilaStorageArea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/models/AtilaStorageArea.ts -------------------------------------------------------------------------------- /src/models/Collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/models/Collection.ts -------------------------------------------------------------------------------- /src/models/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/models/Constants.ts -------------------------------------------------------------------------------- /src/models/Content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/models/Content.ts -------------------------------------------------------------------------------- /src/models/ExtensionMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/models/ExtensionMessage.ts -------------------------------------------------------------------------------- /src/models/GeneralNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/models/GeneralNotes.ts -------------------------------------------------------------------------------- /src/models/Scholarship.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/models/Scholarship.ts -------------------------------------------------------------------------------- /src/models/UserProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/models/UserProfile.ts -------------------------------------------------------------------------------- /src/models/Video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/models/Video.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/scenes/Atlas/ApplyCredits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/Atlas/ApplyCredits.tsx -------------------------------------------------------------------------------- /src/scenes/Atlas/Atlas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/Atlas/Atlas.tsx -------------------------------------------------------------------------------- /src/scenes/Dashboard/DashBoard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/Dashboard/DashBoard.test.tsx -------------------------------------------------------------------------------- /src/scenes/Dashboard/DashBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/Dashboard/DashBoard.tsx -------------------------------------------------------------------------------- /src/scenes/Dashboard/GeneralNotesAddEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/Dashboard/GeneralNotesAddEdit.tsx -------------------------------------------------------------------------------- /src/scenes/Dashboard/ScholarshipTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/Dashboard/ScholarshipTableRow.tsx -------------------------------------------------------------------------------- /src/scenes/Dashboard/ScholarshipsTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/Dashboard/ScholarshipsTable.css -------------------------------------------------------------------------------- /src/scenes/Dashboard/ScholarshipsTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/Dashboard/ScholarshipsTable.test.tsx -------------------------------------------------------------------------------- /src/scenes/Dashboard/ScholarshipsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/Dashboard/ScholarshipsTable.tsx -------------------------------------------------------------------------------- /src/scenes/PopUp/PopUp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/PopUp/PopUp.css -------------------------------------------------------------------------------- /src/scenes/PopUp/PopUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/PopUp/PopUp.tsx -------------------------------------------------------------------------------- /src/scenes/UserProfile/UserProfileView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/UserProfile/UserProfileView.tsx -------------------------------------------------------------------------------- /src/scenes/WebApp/WebApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/scenes/WebApp/WebApp.tsx -------------------------------------------------------------------------------- /src/services/AtilaAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/services/AtilaAPI.ts -------------------------------------------------------------------------------- /src/services/AtlasService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/services/AtlasService.ts -------------------------------------------------------------------------------- /src/services/ChromeMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/services/ChromeMock.ts -------------------------------------------------------------------------------- /src/services/Environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/services/Environment.ts -------------------------------------------------------------------------------- /src/services/ScholarshipUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/services/ScholarshipUtils.ts -------------------------------------------------------------------------------- /src/services/StorageHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/services/StorageHelper.ts -------------------------------------------------------------------------------- /src/services/UserProfileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/services/UserProfileService.ts -------------------------------------------------------------------------------- /src/services/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/services/Utils.ts -------------------------------------------------------------------------------- /src/services/mock_data/SavedScholarships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/services/mock_data/SavedScholarships.json -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilatech/atlas-ui/HEAD/yarn.lock --------------------------------------------------------------------------------