├── .eslintrc.js ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── continuous-integration.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── OUTREACHY.md ├── README.md ├── local-api-server └── generateData.js ├── local-api.codegen.yml ├── package.json ├── public ├── PKTLogoRounded_RGB.png ├── PKTLogoRounded_RGB.svg ├── brokenImage.svg ├── favicon.ico ├── index.html ├── manifest.json ├── pocket-shield.svg ├── pocket-shield@2x.png └── robots.txt ├── src ├── App.test.tsx ├── App.tsx ├── api │ ├── aws-appsync │ │ ├── client.ts │ │ ├── fragments │ │ │ └── ProspectDataAppSync.ts │ │ ├── generatedTypes.ts │ │ ├── hooks │ │ │ ├── useApproveProspect.ts │ │ │ ├── useCreateProspectByUrl.ts │ │ │ ├── useGetCurrentFeed.ts │ │ │ └── useGetPendingProspects.ts │ │ ├── index.ts │ │ ├── mutations │ │ │ ├── approveProspect.ts │ │ │ └── createProspectByUrl.ts │ │ └── queries │ │ │ ├── getCurrentFeed.ts │ │ │ └── getPendingProspects.ts │ ├── index.ts │ └── local │ │ ├── client.ts │ │ ├── fragments │ │ └── ProspectData.ts │ │ ├── generatedTypes.ts │ │ ├── hooks │ │ ├── useGetApprovedProspects.ts │ │ ├── useGetCurrentFeed.ts │ │ ├── useGetLiveProspects.ts │ │ ├── useGetPendingProspects.ts │ │ ├── useGetRejectedProspects.ts │ │ ├── useGetScheduledProspects.ts │ │ ├── useGetSnoozedProspects.ts │ │ ├── useRejectProspect.ts │ │ ├── useRemoveProspect.ts │ │ ├── useSnoozeProspect.ts │ │ └── useUpdateProspect.ts │ │ ├── index.ts │ │ ├── mutations │ │ ├── rejectProspect.ts │ │ ├── removeProspect.ts │ │ ├── snoozeProspect.ts │ │ └── updateProspect.ts │ │ ├── queries │ │ ├── getApprovedProspects.ts │ │ ├── getCurrentFeed.ts │ │ ├── getLiveProspects.ts │ │ ├── getPendingProspects.ts │ │ ├── getRejectedProspects.ts │ │ ├── getScheduledProspects.ts │ │ └── getSnoozedProspects.ts │ │ ├── utils.test.ts │ │ └── utils.ts ├── assets │ └── PKTLogoRounded_RGB.png ├── components │ ├── AddStory │ │ ├── AddStory.test.tsx │ │ └── AddStory.tsx │ ├── Button │ │ ├── Button.test.tsx │ │ └── Button.tsx │ ├── Card │ │ ├── Card.test.tsx │ │ └── Card.tsx │ ├── CardText │ │ ├── CardText.test.tsx │ │ └── CardText.tsx │ ├── Chip │ │ ├── Chip.test.tsx │ │ └── Chip.tsx │ ├── EditAndApproveStory │ │ ├── EditAndApproveStory.test.tsx │ │ └── EditAndApproveStory.tsx │ ├── HandleApiResponse │ │ ├── HandleApiResponse.test.tsx │ │ └── HandleApiResponse.tsx │ ├── Header │ │ ├── Header.test.tsx │ │ └── Header.tsx │ ├── LoginForm │ │ ├── LoginForm.test.tsx │ │ └── LoginForm.tsx │ ├── MainContentWrapper │ │ ├── MainContentWrapper.test.tsx │ │ └── MainContentWrapper.tsx │ ├── Modal │ │ ├── Modal.test.tsx │ │ └── Modal.tsx │ ├── Notification │ │ ├── Notification.test.tsx │ │ └── Notification.tsx │ ├── ScrollToTop │ │ ├── ScrollToTop.test.tsx │ │ └── ScrollToTop.tsx │ ├── Tab │ │ ├── Tab.test.tsx │ │ └── Tab.tsx │ ├── TabContents │ │ ├── TabContents.test.tsx │ │ └── TabContents.tsx │ ├── TabLink │ │ ├── TabLink.test.tsx │ │ └── TabLink.tsx │ ├── TabNavigation │ │ ├── TabNavigation.test.tsx │ │ └── TabNavigation.tsx │ ├── TabPanel │ │ ├── TabPanel.test.tsx │ │ └── TabPanel.tsx │ ├── TabSet │ │ ├── TabSet.test.tsx │ │ └── TabSet.tsx │ └── index.ts ├── constants │ └── index.ts ├── index.tsx ├── logo.svg ├── models │ ├── Feed.ts │ ├── Prospect.ts │ └── index.ts ├── pages │ ├── AddStoryPage │ │ ├── AddStoryPage.test.tsx │ │ └── AddStoryPage.tsx │ ├── EditAndApproveStoryPage │ │ ├── EditAndApproveStoryPage.test.tsx │ │ └── EditAndApproveStoryPage.tsx │ ├── HomePage │ │ └── HomePage.tsx │ ├── NewTabPage │ │ ├── NewTabPage.test.tsx │ │ └── NewTabPage.tsx │ ├── ProspectsPage │ │ ├── ProspectsPage.test.tsx │ │ └── ProspectsPage.tsx │ └── index.ts ├── react-app-env.d.ts ├── serviceWorker.ts ├── setupTests.ts └── theme.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /OUTREACHY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/OUTREACHY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/README.md -------------------------------------------------------------------------------- /local-api-server/generateData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/local-api-server/generateData.js -------------------------------------------------------------------------------- /local-api.codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/local-api.codegen.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/PKTLogoRounded_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/public/PKTLogoRounded_RGB.png -------------------------------------------------------------------------------- /public/PKTLogoRounded_RGB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/public/PKTLogoRounded_RGB.svg -------------------------------------------------------------------------------- /public/brokenImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/public/brokenImage.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/pocket-shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/public/pocket-shield.svg -------------------------------------------------------------------------------- /public/pocket-shield@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/public/pocket-shield@2x.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/api/aws-appsync/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/client.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/fragments/ProspectDataAppSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/fragments/ProspectDataAppSync.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/generatedTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/generatedTypes.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/hooks/useApproveProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/hooks/useApproveProspect.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/hooks/useCreateProspectByUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/hooks/useCreateProspectByUrl.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/hooks/useGetCurrentFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/hooks/useGetCurrentFeed.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/hooks/useGetPendingProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/hooks/useGetPendingProspects.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/index.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/mutations/approveProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/mutations/approveProspect.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/mutations/createProspectByUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/mutations/createProspectByUrl.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/queries/getCurrentFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/queries/getCurrentFeed.ts -------------------------------------------------------------------------------- /src/api/aws-appsync/queries/getPendingProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/aws-appsync/queries/getPendingProspects.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/local/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/client.ts -------------------------------------------------------------------------------- /src/api/local/fragments/ProspectData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/fragments/ProspectData.ts -------------------------------------------------------------------------------- /src/api/local/generatedTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/generatedTypes.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useGetApprovedProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useGetApprovedProspects.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useGetCurrentFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useGetCurrentFeed.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useGetLiveProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useGetLiveProspects.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useGetPendingProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useGetPendingProspects.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useGetRejectedProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useGetRejectedProspects.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useGetScheduledProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useGetScheduledProspects.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useGetSnoozedProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useGetSnoozedProspects.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useRejectProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useRejectProspect.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useRemoveProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useRemoveProspect.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useSnoozeProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useSnoozeProspect.ts -------------------------------------------------------------------------------- /src/api/local/hooks/useUpdateProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/hooks/useUpdateProspect.ts -------------------------------------------------------------------------------- /src/api/local/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/index.ts -------------------------------------------------------------------------------- /src/api/local/mutations/rejectProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/mutations/rejectProspect.ts -------------------------------------------------------------------------------- /src/api/local/mutations/removeProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/mutations/removeProspect.ts -------------------------------------------------------------------------------- /src/api/local/mutations/snoozeProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/mutations/snoozeProspect.ts -------------------------------------------------------------------------------- /src/api/local/mutations/updateProspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/mutations/updateProspect.ts -------------------------------------------------------------------------------- /src/api/local/queries/getApprovedProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/queries/getApprovedProspects.ts -------------------------------------------------------------------------------- /src/api/local/queries/getCurrentFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/queries/getCurrentFeed.ts -------------------------------------------------------------------------------- /src/api/local/queries/getLiveProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/queries/getLiveProspects.ts -------------------------------------------------------------------------------- /src/api/local/queries/getPendingProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/queries/getPendingProspects.ts -------------------------------------------------------------------------------- /src/api/local/queries/getRejectedProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/queries/getRejectedProspects.ts -------------------------------------------------------------------------------- /src/api/local/queries/getScheduledProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/queries/getScheduledProspects.ts -------------------------------------------------------------------------------- /src/api/local/queries/getSnoozedProspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/queries/getSnoozedProspects.ts -------------------------------------------------------------------------------- /src/api/local/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/utils.test.ts -------------------------------------------------------------------------------- /src/api/local/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/api/local/utils.ts -------------------------------------------------------------------------------- /src/assets/PKTLogoRounded_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/assets/PKTLogoRounded_RGB.png -------------------------------------------------------------------------------- /src/components/AddStory/AddStory.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/AddStory/AddStory.test.tsx -------------------------------------------------------------------------------- /src/components/AddStory/AddStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/AddStory/AddStory.tsx -------------------------------------------------------------------------------- /src/components/Button/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Button/Button.test.tsx -------------------------------------------------------------------------------- /src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/components/Card/Card.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Card/Card.test.tsx -------------------------------------------------------------------------------- /src/components/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Card/Card.tsx -------------------------------------------------------------------------------- /src/components/CardText/CardText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/CardText/CardText.test.tsx -------------------------------------------------------------------------------- /src/components/CardText/CardText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/CardText/CardText.tsx -------------------------------------------------------------------------------- /src/components/Chip/Chip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Chip/Chip.test.tsx -------------------------------------------------------------------------------- /src/components/Chip/Chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Chip/Chip.tsx -------------------------------------------------------------------------------- /src/components/EditAndApproveStory/EditAndApproveStory.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/EditAndApproveStory/EditAndApproveStory.test.tsx -------------------------------------------------------------------------------- /src/components/EditAndApproveStory/EditAndApproveStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/EditAndApproveStory/EditAndApproveStory.tsx -------------------------------------------------------------------------------- /src/components/HandleApiResponse/HandleApiResponse.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/HandleApiResponse/HandleApiResponse.test.tsx -------------------------------------------------------------------------------- /src/components/HandleApiResponse/HandleApiResponse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/HandleApiResponse/HandleApiResponse.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Header/Header.test.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/LoginForm/LoginForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/LoginForm/LoginForm.test.tsx -------------------------------------------------------------------------------- /src/components/LoginForm/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/LoginForm/LoginForm.tsx -------------------------------------------------------------------------------- /src/components/MainContentWrapper/MainContentWrapper.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/MainContentWrapper/MainContentWrapper.test.tsx -------------------------------------------------------------------------------- /src/components/MainContentWrapper/MainContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/MainContentWrapper/MainContentWrapper.tsx -------------------------------------------------------------------------------- /src/components/Modal/Modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Modal/Modal.test.tsx -------------------------------------------------------------------------------- /src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/Notification/Notification.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Notification/Notification.test.tsx -------------------------------------------------------------------------------- /src/components/Notification/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Notification/Notification.tsx -------------------------------------------------------------------------------- /src/components/ScrollToTop/ScrollToTop.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/ScrollToTop/ScrollToTop.test.tsx -------------------------------------------------------------------------------- /src/components/ScrollToTop/ScrollToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/ScrollToTop/ScrollToTop.tsx -------------------------------------------------------------------------------- /src/components/Tab/Tab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Tab/Tab.test.tsx -------------------------------------------------------------------------------- /src/components/Tab/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/Tab/Tab.tsx -------------------------------------------------------------------------------- /src/components/TabContents/TabContents.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabContents/TabContents.test.tsx -------------------------------------------------------------------------------- /src/components/TabContents/TabContents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabContents/TabContents.tsx -------------------------------------------------------------------------------- /src/components/TabLink/TabLink.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabLink/TabLink.test.tsx -------------------------------------------------------------------------------- /src/components/TabLink/TabLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabLink/TabLink.tsx -------------------------------------------------------------------------------- /src/components/TabNavigation/TabNavigation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabNavigation/TabNavigation.test.tsx -------------------------------------------------------------------------------- /src/components/TabNavigation/TabNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabNavigation/TabNavigation.tsx -------------------------------------------------------------------------------- /src/components/TabPanel/TabPanel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabPanel/TabPanel.test.tsx -------------------------------------------------------------------------------- /src/components/TabPanel/TabPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabPanel/TabPanel.tsx -------------------------------------------------------------------------------- /src/components/TabSet/TabSet.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabSet/TabSet.test.tsx -------------------------------------------------------------------------------- /src/components/TabSet/TabSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/TabSet/TabSet.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/models/Feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/models/Feed.ts -------------------------------------------------------------------------------- /src/models/Prospect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/models/Prospect.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/pages/AddStoryPage/AddStoryPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/AddStoryPage/AddStoryPage.test.tsx -------------------------------------------------------------------------------- /src/pages/AddStoryPage/AddStoryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/AddStoryPage/AddStoryPage.tsx -------------------------------------------------------------------------------- /src/pages/EditAndApproveStoryPage/EditAndApproveStoryPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/EditAndApproveStoryPage/EditAndApproveStoryPage.test.tsx -------------------------------------------------------------------------------- /src/pages/EditAndApproveStoryPage/EditAndApproveStoryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/EditAndApproveStoryPage/EditAndApproveStoryPage.tsx -------------------------------------------------------------------------------- /src/pages/HomePage/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/HomePage/HomePage.tsx -------------------------------------------------------------------------------- /src/pages/NewTabPage/NewTabPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/NewTabPage/NewTabPage.test.tsx -------------------------------------------------------------------------------- /src/pages/NewTabPage/NewTabPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/NewTabPage/NewTabPage.tsx -------------------------------------------------------------------------------- /src/pages/ProspectsPage/ProspectsPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/ProspectsPage/ProspectsPage.test.tsx -------------------------------------------------------------------------------- /src/pages/ProspectsPage/ProspectsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/ProspectsPage/ProspectsPage.tsx -------------------------------------------------------------------------------- /src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/pages/index.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/src/theme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pocket/curation-tools-frontend/HEAD/tsconfig.json --------------------------------------------------------------------------------