├── .babelrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── main.yml ├── .gitignore ├── .gitpod.yml ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .storybook ├── main.js ├── preview-head.html └── preview.js ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── api-types └── errorCodes.ts ├── babel-plugin-macros.config.js ├── cypress.json ├── cypress ├── builders │ ├── mentorship-requests │ │ └── index.ts │ ├── response.ts │ └── users │ │ └── current │ │ └── get.ts ├── fixtures │ ├── example.json │ ├── favorites │ │ └── get.json │ ├── mentors │ │ └── get.json │ └── mentorship-requests │ │ ├── get.json │ │ └── put.json ├── integration │ ├── components │ │ └── Button.spec.js │ ├── login.spec.js │ ├── me │ │ ├── edit-profile.spec.ts │ │ ├── home.spec.ts │ │ └── mentorship-requests.spec.js │ └── mentors.js ├── plugins │ └── index.js ├── support │ ├── commands.ts │ └── index.ts └── tsconfig.json ├── docs └── auth.md ├── netlify.toml ├── netlify └── functions-src │ ├── functions │ ├── admin │ │ └── delete.ts │ ├── common │ │ ├── auth0.service.ts │ │ ├── dto │ │ │ └── user.dto.ts │ │ └── interfaces │ │ │ └── user.interface.ts │ ├── config │ │ └── index.ts │ ├── data │ │ ├── errors.ts │ │ ├── favorites.ts │ │ ├── mentors.ts │ │ ├── mentorships.ts │ │ ├── types.ts │ │ ├── users.ts │ │ └── utils.ts │ ├── email.ts │ ├── email │ │ ├── client.ts │ │ ├── emails.ts │ │ ├── interfaces │ │ │ └── email.interface.ts │ │ ├── sendgrid.ts │ │ ├── smtp2go.ts │ │ └── templates │ │ │ ├── README.md │ │ │ ├── email-verification.html │ │ │ ├── layout.html │ │ │ ├── mentor-application-admin-notification.html │ │ │ ├── mentor-application-approved.html │ │ │ ├── mentor-application-declined.html │ │ │ ├── mentor-application-received.html │ │ │ ├── mentor-freeze.html │ │ │ ├── mentor-not-active.html │ │ │ ├── mentorship-accepted.html │ │ │ ├── mentorship-cancelled.html │ │ │ ├── mentorship-declined.html │ │ │ ├── mentorship-reminder.html │ │ │ ├── mentorship-requested.html │ │ │ ├── nodemon-emails.json │ │ │ ├── show.js │ │ │ └── welcome.html │ ├── favorites.ts │ ├── hof │ │ ├── withDB.ts │ │ └── withRouter.ts │ ├── interfaces │ │ └── mentorship.ts │ ├── mentors.ts │ ├── mentorships.ts │ ├── modules │ │ ├── favorites │ │ │ ├── get.ts │ │ │ └── post.ts │ │ ├── mentors │ │ │ ├── applications │ │ │ │ ├── get.ts │ │ │ │ ├── post.ts │ │ │ │ └── put.ts │ │ │ ├── get.ts │ │ │ └── types.ts │ │ ├── mentorships │ │ │ ├── apply.ts │ │ │ ├── get-all.ts │ │ │ └── requests.ts │ │ └── users │ │ │ ├── current.ts │ │ │ ├── delete.ts │ │ │ ├── userInfo.ts │ │ │ └── verify.ts │ ├── types │ │ └── index.ts │ ├── users.ts │ └── utils │ │ ├── auth.ts │ │ ├── contactUrl.ts │ │ ├── db.ts │ │ └── response.ts │ ├── lists │ └── dto │ │ └── list.dto.ts │ └── mongo-scripts │ ├── approve-applications.mongodb.js │ ├── create-user.mongodb.js │ ├── delete-mentorship.mongodb.js │ ├── delete-user.mongodb.js │ ├── find-mentorships.mongodb.js │ ├── get-all-users.mongodb.js │ ├── get-mentors.mongodb.js │ ├── get-panding-applications.mongodb.js │ ├── update-mentorship.mongodb.js │ └── update-user.mongodb.js ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.tsx ├── _app.tsx ├── _document.tsx ├── head.tsx ├── index.tsx ├── me │ ├── admin.tsx │ ├── index.tsx │ └── requests.tsx ├── sitemap.xml │ └── index.tsx └── u │ └── [id].tsx ├── public ├── CNAME ├── apple-touch-icon.png ├── browserconfig.xml ├── codingcoach-logo-16.png ├── codingcoach-logo-192.png ├── codingcoach-logo-32.png ├── codingcoach-logo-384.png ├── codingcoach-logo-512.png ├── codingcoach-logo.jpg ├── favicon.ico ├── images │ └── coding-coach-patron-button.jpg ├── manifest.json ├── mstile-150x150.png └── safari-pinned-tab.svg ├── scripts └── ignore-step.sh ├── src ├── Me │ ├── Header │ │ ├── Header.test.tsx │ │ └── Header.tsx │ ├── Main.tsx │ ├── Me.tsx │ ├── MentorshipRequests │ │ ├── MentorshipRequests.js │ │ ├── MentorshipRequests.test.js │ │ ├── ReqContent.js │ │ ├── UsersList.tsx │ │ ├── index.js │ │ └── test-setup.js │ ├── Modals │ │ ├── EditMentorDetails.tsx │ │ ├── MentorshipRequestModals │ │ │ ├── AcceptModal.tsx │ │ │ ├── CancelModal.tsx │ │ │ ├── DeclineModal.tsx │ │ │ ├── MentorshipRequest.js │ │ │ ├── index.ts │ │ │ ├── stories │ │ │ │ ├── AcceptModal.stories.tsx │ │ │ │ ├── CancelModal.stories.tsx │ │ │ │ ├── DeclineModal.stories.tsx │ │ │ │ └── MentorshipRequest.stories.tsx │ │ │ └── style.ts │ │ ├── Modal.tsx │ │ ├── RedirectToGravatar.tsx │ │ └── model.tsx │ ├── Navigation │ │ ├── Navbar.test.tsx │ │ └── Navbar.tsx │ ├── Profile │ │ └── Profile.tsx │ ├── Routes │ │ ├── Admin.tsx │ │ ├── Home.tsx │ │ └── Home │ │ │ └── Avatar │ │ │ └── Avatar.tsx │ ├── components │ │ ├── Button │ │ │ ├── Button.test.tsx │ │ │ ├── Button.tsx │ │ │ ├── IconButton.tsx │ │ │ └── index.ts │ │ ├── Card │ │ │ └── index.tsx │ │ ├── Checkbox │ │ │ ├── Checkbox.tsx │ │ │ └── index.ts │ │ ├── FormField │ │ │ ├── FormField.test.js │ │ │ ├── FormField.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── FormField.test.js.snap │ │ │ ├── formContext.js │ │ │ └── index.js │ │ ├── Input │ │ │ ├── Input.test.tsx │ │ │ ├── Input.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Input.test.tsx.snap │ │ │ └── index.ts │ │ ├── List │ │ │ ├── List.test.tsx │ │ │ ├── List.tsx │ │ │ ├── ListItem.tsx │ │ │ └── index.ts │ │ ├── RadioButton │ │ │ ├── RadioButton.tsx │ │ │ ├── RadioButtonContext.tsx │ │ │ ├── RadioButtonGroup.test.tsx │ │ │ ├── RadioButtonGroup.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── RadioButtonGroup.test.tsx.snap │ │ │ └── index.ts │ │ ├── RichList │ │ │ ├── ReachItemTypes.d.ts │ │ │ ├── RichItem.test.tsx │ │ │ ├── RichItem.tsx │ │ │ ├── RichList.test.tsx │ │ │ ├── RichList.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── RichItem.test.tsx.snap │ │ │ └── index.ts │ │ ├── Select │ │ │ ├── Select.test.tsx │ │ │ ├── Select.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Select.test.tsx.snap │ │ │ └── index.ts │ │ └── Textarea │ │ │ ├── Textarea.test.tsx │ │ │ ├── Textarea.tsx │ │ │ ├── __snapshots__ │ │ │ └── Textarea.test.tsx.snap │ │ │ └── index.ts │ └── styles │ │ ├── global.ts │ │ └── shared │ │ └── devices.ts ├── PageNotFound.tsx ├── __tests__ │ ├── App.test.js │ ├── Card.test.js │ └── titleGenerator.spec.js ├── api │ ├── admin.ts │ └── index.ts ├── assets │ ├── 404.svg │ ├── me │ │ ├── camera.svg │ │ ├── close.svg │ │ ├── home.svg │ │ ├── icon-available.svg │ │ ├── icon-country.svg │ │ ├── icon-description.svg │ │ ├── icon-door-exit.svg │ │ ├── icon-email.svg │ │ ├── icon-spokenLanguages.svg │ │ ├── icon-survey.svg │ │ ├── icon-tags.svg │ │ ├── icon-title.svg │ │ ├── icon-unavailable.svg │ │ ├── icon-user-remove.svg │ │ ├── logo.svg │ │ ├── mentee.svg │ │ ├── mentors.svg │ │ └── mentorship.svg │ ├── mentorshipRequestSuccess.svg │ └── powered-by-vercel.svg ├── channelProvider.js ├── components │ ├── AutoComplete │ │ ├── AutoComplete.css │ │ └── AutoComplete.js │ ├── Card │ │ ├── Card.css.ts │ │ ├── Card.tsx │ │ ├── Card.types.ts │ │ └── index.d.ts │ ├── Content │ │ ├── Content.css │ │ └── Content.js │ ├── Filter │ │ ├── Filter.css │ │ └── Filter.js │ ├── FilterClear │ │ ├── FilterClear.css │ │ └── FilterClear.js │ ├── Header │ │ └── Header.js │ ├── Input │ │ ├── Input.css │ │ └── Input.js │ ├── Link │ │ └── Link.tsx │ ├── Loader.tsx │ ├── LoginNavigation │ │ └── LoginNavigation.js │ ├── Logo.js │ ├── MemberArea │ │ ├── EditProfile.css │ │ ├── EditProfile.js │ │ ├── MemberArea.js │ │ ├── PendingApplications.js │ │ └── model.js │ ├── MentorsList │ │ ├── MentorList.css │ │ ├── MentorsList.js │ │ └── Pager.tsx │ ├── MobileNavigation │ │ └── MobileNavigation.js │ ├── Modal │ │ ├── Modal.css │ │ ├── Modal.js │ │ └── ModalContent.js │ ├── Navigation │ │ └── Navigation.js │ ├── Sidebar │ │ └── Sidebar.tsx │ ├── SiteTitle.js │ ├── SocialLinks │ │ ├── SocialLinks.css │ │ └── SocialLinks.js │ ├── Switch │ │ ├── Switch.css │ │ ├── Switch.test.tsx │ │ ├── Switch.tsx │ │ └── __snapshots__ │ │ │ └── Switch.test.tsx.snap │ ├── UserProfile │ │ └── UserProfile.tsx │ ├── common.ts │ └── layouts │ │ └── App │ │ ├── ActionsHandler.tsx │ │ ├── App.css │ │ ├── App.js │ │ ├── VerificationModal.tsx │ │ └── index.tsx ├── config │ ├── constants.ts │ └── experiments.js ├── contents │ ├── codeOfConduct.js │ ├── cookiesPolicy.js │ ├── privacyPolicy.js │ └── termsAndConditions.js ├── context │ ├── apiContext │ │ └── ApiContext.tsx │ ├── authContext │ │ └── AuthContext.tsx │ ├── filtersContext │ │ └── FiltersContext.tsx │ ├── mentorsContext │ │ └── MentorsContext.js │ ├── modalContext │ │ └── ModalContext.tsx │ └── userContext │ │ └── UserContext.tsx ├── external-types.d.ts ├── favoriteManager.js ├── ga.ts ├── helpers │ ├── avatar.js │ ├── getTitleTags.tsx │ ├── languages.ts │ ├── mentorship.ts │ ├── ssr.ts │ ├── time.ts │ ├── user.ts │ └── window.ts ├── hooks │ ├── useDeviceType.ts │ └── useRoutes.ts ├── index.css ├── listsGenerator.js ├── messages.js ├── persistData │ └── index.ts ├── react-app-env.d.ts ├── serviceWorker.js ├── setup-tests.js ├── setupTests.js ├── stories │ ├── StoriesContainer.js │ ├── button.stories.mdx │ ├── checkbox.stories.mdx │ ├── icons.stories.js │ ├── input.stories.mdx │ ├── liststorydata.json │ ├── mentor-card.stories.mdx │ ├── modal.stories.js │ ├── profile-card.stories.js │ ├── profile-list.stories.mdx │ ├── radiobutton.stories.tsx │ ├── select.stories.js │ └── textarea.stories.mdx ├── titleGenerator.js ├── types │ ├── global.d.ts │ └── models.d.ts └── utils │ ├── auth.js │ ├── isDeep.ts │ ├── maskSansitiveString.ts │ ├── overwriteProfileDefaults.ts │ ├── permaLinkService.js │ ├── sitemapGenerator.tsx │ ├── tags.js │ └── tawk.ts ├── tsconfig.functions.json ├── tsconfig.json ├── tsconfig.tsbuildinfo └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | build 3 | tsconfig.json 4 | netlify -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- 1 | import '../src/index.css'; 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/README.md -------------------------------------------------------------------------------- /api-types/errorCodes.ts: -------------------------------------------------------------------------------- 1 | export enum ErrorCodes { 2 | EmailNotVerified = 1, 3 | } 4 | -------------------------------------------------------------------------------- /babel-plugin-macros.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/babel-plugin-macros.config.js -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/builders/mentorship-requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/builders/mentorship-requests/index.ts -------------------------------------------------------------------------------- /cypress/builders/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/builders/response.ts -------------------------------------------------------------------------------- /cypress/builders/users/current/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/builders/users/current/get.ts -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cypress/fixtures/favorites/get.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /cypress/fixtures/mentors/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/fixtures/mentors/get.json -------------------------------------------------------------------------------- /cypress/fixtures/mentorship-requests/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/fixtures/mentorship-requests/get.json -------------------------------------------------------------------------------- /cypress/fixtures/mentorship-requests/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/fixtures/mentorship-requests/put.json -------------------------------------------------------------------------------- /cypress/integration/components/Button.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/integration/components/Button.spec.js -------------------------------------------------------------------------------- /cypress/integration/login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/integration/login.spec.js -------------------------------------------------------------------------------- /cypress/integration/me/edit-profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/integration/me/edit-profile.spec.ts -------------------------------------------------------------------------------- /cypress/integration/me/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/integration/me/home.spec.ts -------------------------------------------------------------------------------- /cypress/integration/me/mentorship-requests.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/integration/me/mentorship-requests.spec.js -------------------------------------------------------------------------------- /cypress/integration/mentors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/integration/mentors.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /docs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/docs/auth.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify.toml -------------------------------------------------------------------------------- /netlify/functions-src/functions/admin/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/admin/delete.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/common/auth0.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/common/auth0.service.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/common/dto/user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/common/dto/user.dto.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/common/interfaces/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/common/interfaces/user.interface.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/config/index.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/data/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/data/errors.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/data/favorites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/data/favorites.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/data/mentors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/data/mentors.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/data/mentorships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/data/mentorships.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/data/types.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/data/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/data/users.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/data/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/data/utils.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/client.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/emails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/emails.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/interfaces/email.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/interfaces/email.interface.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/sendgrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/sendgrid.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/smtp2go.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/smtp2go.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/README.md -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/email-verification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/email-verification.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/layout.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentor-application-admin-notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentor-application-admin-notification.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentor-application-approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentor-application-approved.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentor-application-declined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentor-application-declined.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentor-application-received.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentor-application-received.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentor-freeze.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentor-freeze.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentor-not-active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentor-not-active.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentorship-accepted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentorship-accepted.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentorship-cancelled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentorship-cancelled.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentorship-declined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentorship-declined.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentorship-reminder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentorship-reminder.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/mentorship-requested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/mentorship-requested.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/nodemon-emails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/nodemon-emails.json -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/show.js -------------------------------------------------------------------------------- /netlify/functions-src/functions/email/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/email/templates/welcome.html -------------------------------------------------------------------------------- /netlify/functions-src/functions/favorites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/favorites.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/hof/withDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/hof/withDB.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/hof/withRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/hof/withRouter.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/interfaces/mentorship.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/interfaces/mentorship.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/mentors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/mentors.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/mentorships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/mentorships.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/favorites/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/favorites/get.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/favorites/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/favorites/post.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/mentors/applications/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/mentors/applications/get.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/mentors/applications/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/mentors/applications/post.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/mentors/applications/put.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/mentors/applications/put.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/mentors/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/mentors/get.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/mentors/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/mentors/types.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/mentorships/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/mentorships/apply.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/mentorships/get-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/mentorships/get-all.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/mentorships/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/mentorships/requests.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/users/current.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/users/current.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/users/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/users/delete.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/users/userInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/users/userInfo.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/modules/users/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/modules/users/verify.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/types/index.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/users.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/utils/auth.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/utils/contactUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/utils/contactUrl.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/utils/db.ts -------------------------------------------------------------------------------- /netlify/functions-src/functions/utils/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/functions/utils/response.ts -------------------------------------------------------------------------------- /netlify/functions-src/lists/dto/list.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/lists/dto/list.dto.ts -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/approve-applications.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/approve-applications.mongodb.js -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/create-user.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/create-user.mongodb.js -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/delete-mentorship.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/delete-mentorship.mongodb.js -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/delete-user.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/delete-user.mongodb.js -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/find-mentorships.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/find-mentorships.mongodb.js -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/get-all-users.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/get-all-users.mongodb.js -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/get-mentors.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/get-mentors.mongodb.js -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/get-panding-applications.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/get-panding-applications.mongodb.js -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/update-mentorship.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/update-mentorship.mongodb.js -------------------------------------------------------------------------------- /netlify/functions-src/mongo-scripts/update-user.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/netlify/functions-src/mongo-scripts/update-user.mongodb.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/head.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/me/admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/me/admin.tsx -------------------------------------------------------------------------------- /pages/me/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/me/index.tsx -------------------------------------------------------------------------------- /pages/me/requests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/me/requests.tsx -------------------------------------------------------------------------------- /pages/sitemap.xml/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/sitemap.xml/index.tsx -------------------------------------------------------------------------------- /pages/u/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/pages/u/[id].tsx -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | mentors.codingcoach.io 2 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/codingcoach-logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/codingcoach-logo-16.png -------------------------------------------------------------------------------- /public/codingcoach-logo-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/codingcoach-logo-192.png -------------------------------------------------------------------------------- /public/codingcoach-logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/codingcoach-logo-32.png -------------------------------------------------------------------------------- /public/codingcoach-logo-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/codingcoach-logo-384.png -------------------------------------------------------------------------------- /public/codingcoach-logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/codingcoach-logo-512.png -------------------------------------------------------------------------------- /public/codingcoach-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/codingcoach-logo.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/coding-coach-patron-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/images/coding-coach-patron-button.jpg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /scripts/ignore-step.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/scripts/ignore-step.sh -------------------------------------------------------------------------------- /src/Me/Header/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Header/Header.test.tsx -------------------------------------------------------------------------------- /src/Me/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Header/Header.tsx -------------------------------------------------------------------------------- /src/Me/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Main.tsx -------------------------------------------------------------------------------- /src/Me/Me.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Me.tsx -------------------------------------------------------------------------------- /src/Me/MentorshipRequests/MentorshipRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/MentorshipRequests/MentorshipRequests.js -------------------------------------------------------------------------------- /src/Me/MentorshipRequests/MentorshipRequests.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/MentorshipRequests/MentorshipRequests.test.js -------------------------------------------------------------------------------- /src/Me/MentorshipRequests/ReqContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/MentorshipRequests/ReqContent.js -------------------------------------------------------------------------------- /src/Me/MentorshipRequests/UsersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/MentorshipRequests/UsersList.tsx -------------------------------------------------------------------------------- /src/Me/MentorshipRequests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/MentorshipRequests/index.js -------------------------------------------------------------------------------- /src/Me/MentorshipRequests/test-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/MentorshipRequests/test-setup.js -------------------------------------------------------------------------------- /src/Me/Modals/EditMentorDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/EditMentorDetails.tsx -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/AcceptModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/AcceptModal.tsx -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/CancelModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/CancelModal.tsx -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/DeclineModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/DeclineModal.tsx -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/MentorshipRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/MentorshipRequest.js -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/index.ts -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/stories/AcceptModal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/stories/AcceptModal.stories.tsx -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/stories/CancelModal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/stories/CancelModal.stories.tsx -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/stories/DeclineModal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/stories/DeclineModal.stories.tsx -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/stories/MentorshipRequest.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/stories/MentorshipRequest.stories.tsx -------------------------------------------------------------------------------- /src/Me/Modals/MentorshipRequestModals/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/MentorshipRequestModals/style.ts -------------------------------------------------------------------------------- /src/Me/Modals/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/Modal.tsx -------------------------------------------------------------------------------- /src/Me/Modals/RedirectToGravatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/RedirectToGravatar.tsx -------------------------------------------------------------------------------- /src/Me/Modals/model.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Modals/model.tsx -------------------------------------------------------------------------------- /src/Me/Navigation/Navbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Navigation/Navbar.test.tsx -------------------------------------------------------------------------------- /src/Me/Navigation/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Navigation/Navbar.tsx -------------------------------------------------------------------------------- /src/Me/Profile/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Profile/Profile.tsx -------------------------------------------------------------------------------- /src/Me/Routes/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Routes/Admin.tsx -------------------------------------------------------------------------------- /src/Me/Routes/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Routes/Home.tsx -------------------------------------------------------------------------------- /src/Me/Routes/Home/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/Routes/Home/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /src/Me/components/Button/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Button/Button.test.tsx -------------------------------------------------------------------------------- /src/Me/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/Me/components/Button/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Button/IconButton.tsx -------------------------------------------------------------------------------- /src/Me/components/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Button/index.ts -------------------------------------------------------------------------------- /src/Me/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Card/index.tsx -------------------------------------------------------------------------------- /src/Me/components/Checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/Me/components/Checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Checkbox/index.ts -------------------------------------------------------------------------------- /src/Me/components/FormField/FormField.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/FormField/FormField.test.js -------------------------------------------------------------------------------- /src/Me/components/FormField/FormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/FormField/FormField.tsx -------------------------------------------------------------------------------- /src/Me/components/FormField/__snapshots__/FormField.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/FormField/__snapshots__/FormField.test.js.snap -------------------------------------------------------------------------------- /src/Me/components/FormField/formContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/FormField/formContext.js -------------------------------------------------------------------------------- /src/Me/components/FormField/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/FormField/index.js -------------------------------------------------------------------------------- /src/Me/components/Input/Input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Input/Input.test.tsx -------------------------------------------------------------------------------- /src/Me/components/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Input/Input.tsx -------------------------------------------------------------------------------- /src/Me/components/Input/__snapshots__/Input.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Input/__snapshots__/Input.test.tsx.snap -------------------------------------------------------------------------------- /src/Me/components/Input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Input/index.ts -------------------------------------------------------------------------------- /src/Me/components/List/List.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/List/List.test.tsx -------------------------------------------------------------------------------- /src/Me/components/List/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/List/List.tsx -------------------------------------------------------------------------------- /src/Me/components/List/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/List/ListItem.tsx -------------------------------------------------------------------------------- /src/Me/components/List/index.ts: -------------------------------------------------------------------------------- 1 | export { List as default } from './List'; 2 | -------------------------------------------------------------------------------- /src/Me/components/RadioButton/RadioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RadioButton/RadioButton.tsx -------------------------------------------------------------------------------- /src/Me/components/RadioButton/RadioButtonContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RadioButton/RadioButtonContext.tsx -------------------------------------------------------------------------------- /src/Me/components/RadioButton/RadioButtonGroup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RadioButton/RadioButtonGroup.test.tsx -------------------------------------------------------------------------------- /src/Me/components/RadioButton/RadioButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RadioButton/RadioButtonGroup.tsx -------------------------------------------------------------------------------- /src/Me/components/RadioButton/__snapshots__/RadioButtonGroup.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RadioButton/__snapshots__/RadioButtonGroup.test.tsx.snap -------------------------------------------------------------------------------- /src/Me/components/RadioButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RadioButton/index.ts -------------------------------------------------------------------------------- /src/Me/components/RichList/ReachItemTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RichList/ReachItemTypes.d.ts -------------------------------------------------------------------------------- /src/Me/components/RichList/RichItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RichList/RichItem.test.tsx -------------------------------------------------------------------------------- /src/Me/components/RichList/RichItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RichList/RichItem.tsx -------------------------------------------------------------------------------- /src/Me/components/RichList/RichList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RichList/RichList.test.tsx -------------------------------------------------------------------------------- /src/Me/components/RichList/RichList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RichList/RichList.tsx -------------------------------------------------------------------------------- /src/Me/components/RichList/__snapshots__/RichItem.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RichList/__snapshots__/RichItem.test.tsx.snap -------------------------------------------------------------------------------- /src/Me/components/RichList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/RichList/index.ts -------------------------------------------------------------------------------- /src/Me/components/Select/Select.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Select/Select.test.tsx -------------------------------------------------------------------------------- /src/Me/components/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Select/Select.tsx -------------------------------------------------------------------------------- /src/Me/components/Select/__snapshots__/Select.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Select/__snapshots__/Select.test.tsx.snap -------------------------------------------------------------------------------- /src/Me/components/Select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Select/index.ts -------------------------------------------------------------------------------- /src/Me/components/Textarea/Textarea.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Textarea/Textarea.test.tsx -------------------------------------------------------------------------------- /src/Me/components/Textarea/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Textarea/Textarea.tsx -------------------------------------------------------------------------------- /src/Me/components/Textarea/__snapshots__/Textarea.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Textarea/__snapshots__/Textarea.test.tsx.snap -------------------------------------------------------------------------------- /src/Me/components/Textarea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/components/Textarea/index.ts -------------------------------------------------------------------------------- /src/Me/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/styles/global.ts -------------------------------------------------------------------------------- /src/Me/styles/shared/devices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/Me/styles/shared/devices.ts -------------------------------------------------------------------------------- /src/PageNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/PageNotFound.tsx -------------------------------------------------------------------------------- /src/__tests__/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/__tests__/App.test.js -------------------------------------------------------------------------------- /src/__tests__/Card.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/__tests__/Card.test.js -------------------------------------------------------------------------------- /src/__tests__/titleGenerator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/__tests__/titleGenerator.spec.js -------------------------------------------------------------------------------- /src/api/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/api/admin.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/assets/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/404.svg -------------------------------------------------------------------------------- /src/assets/me/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/camera.svg -------------------------------------------------------------------------------- /src/assets/me/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/close.svg -------------------------------------------------------------------------------- /src/assets/me/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/home.svg -------------------------------------------------------------------------------- /src/assets/me/icon-available.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-available.svg -------------------------------------------------------------------------------- /src/assets/me/icon-country.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-country.svg -------------------------------------------------------------------------------- /src/assets/me/icon-description.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-description.svg -------------------------------------------------------------------------------- /src/assets/me/icon-door-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-door-exit.svg -------------------------------------------------------------------------------- /src/assets/me/icon-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-email.svg -------------------------------------------------------------------------------- /src/assets/me/icon-spokenLanguages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-spokenLanguages.svg -------------------------------------------------------------------------------- /src/assets/me/icon-survey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-survey.svg -------------------------------------------------------------------------------- /src/assets/me/icon-tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-tags.svg -------------------------------------------------------------------------------- /src/assets/me/icon-title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-title.svg -------------------------------------------------------------------------------- /src/assets/me/icon-unavailable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-unavailable.svg -------------------------------------------------------------------------------- /src/assets/me/icon-user-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/icon-user-remove.svg -------------------------------------------------------------------------------- /src/assets/me/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/logo.svg -------------------------------------------------------------------------------- /src/assets/me/mentee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/mentee.svg -------------------------------------------------------------------------------- /src/assets/me/mentors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/mentors.svg -------------------------------------------------------------------------------- /src/assets/me/mentorship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/me/mentorship.svg -------------------------------------------------------------------------------- /src/assets/mentorshipRequestSuccess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/mentorshipRequestSuccess.svg -------------------------------------------------------------------------------- /src/assets/powered-by-vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/assets/powered-by-vercel.svg -------------------------------------------------------------------------------- /src/channelProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/channelProvider.js -------------------------------------------------------------------------------- /src/components/AutoComplete/AutoComplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/AutoComplete/AutoComplete.css -------------------------------------------------------------------------------- /src/components/AutoComplete/AutoComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/AutoComplete/AutoComplete.js -------------------------------------------------------------------------------- /src/components/Card/Card.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Card/Card.css.ts -------------------------------------------------------------------------------- /src/components/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Card/Card.tsx -------------------------------------------------------------------------------- /src/components/Card/Card.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Card/Card.types.ts -------------------------------------------------------------------------------- /src/components/Card/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-obfuscate'; 2 | -------------------------------------------------------------------------------- /src/components/Content/Content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Content/Content.css -------------------------------------------------------------------------------- /src/components/Content/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Content/Content.js -------------------------------------------------------------------------------- /src/components/Filter/Filter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Filter/Filter.css -------------------------------------------------------------------------------- /src/components/Filter/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Filter/Filter.js -------------------------------------------------------------------------------- /src/components/FilterClear/FilterClear.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/FilterClear/FilterClear.css -------------------------------------------------------------------------------- /src/components/FilterClear/FilterClear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/FilterClear/FilterClear.js -------------------------------------------------------------------------------- /src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Header/Header.js -------------------------------------------------------------------------------- /src/components/Input/Input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Input/Input.css -------------------------------------------------------------------------------- /src/components/Input/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Input/Input.js -------------------------------------------------------------------------------- /src/components/Link/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Link/Link.tsx -------------------------------------------------------------------------------- /src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Loader.tsx -------------------------------------------------------------------------------- /src/components/LoginNavigation/LoginNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/LoginNavigation/LoginNavigation.js -------------------------------------------------------------------------------- /src/components/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Logo.js -------------------------------------------------------------------------------- /src/components/MemberArea/EditProfile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/MemberArea/EditProfile.css -------------------------------------------------------------------------------- /src/components/MemberArea/EditProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/MemberArea/EditProfile.js -------------------------------------------------------------------------------- /src/components/MemberArea/MemberArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/MemberArea/MemberArea.js -------------------------------------------------------------------------------- /src/components/MemberArea/PendingApplications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/MemberArea/PendingApplications.js -------------------------------------------------------------------------------- /src/components/MemberArea/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/MemberArea/model.js -------------------------------------------------------------------------------- /src/components/MentorsList/MentorList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/MentorsList/MentorList.css -------------------------------------------------------------------------------- /src/components/MentorsList/MentorsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/MentorsList/MentorsList.js -------------------------------------------------------------------------------- /src/components/MentorsList/Pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/MentorsList/Pager.tsx -------------------------------------------------------------------------------- /src/components/MobileNavigation/MobileNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/MobileNavigation/MobileNavigation.js -------------------------------------------------------------------------------- /src/components/Modal/Modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Modal/Modal.css -------------------------------------------------------------------------------- /src/components/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Modal/Modal.js -------------------------------------------------------------------------------- /src/components/Modal/ModalContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Modal/ModalContent.js -------------------------------------------------------------------------------- /src/components/Navigation/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Navigation/Navigation.js -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/SiteTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/SiteTitle.js -------------------------------------------------------------------------------- /src/components/SocialLinks/SocialLinks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/SocialLinks/SocialLinks.css -------------------------------------------------------------------------------- /src/components/SocialLinks/SocialLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/SocialLinks/SocialLinks.js -------------------------------------------------------------------------------- /src/components/Switch/Switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Switch/Switch.css -------------------------------------------------------------------------------- /src/components/Switch/Switch.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Switch/Switch.test.tsx -------------------------------------------------------------------------------- /src/components/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Switch/Switch.tsx -------------------------------------------------------------------------------- /src/components/Switch/__snapshots__/Switch.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/Switch/__snapshots__/Switch.test.tsx.snap -------------------------------------------------------------------------------- /src/components/UserProfile/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/UserProfile/UserProfile.tsx -------------------------------------------------------------------------------- /src/components/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/common.ts -------------------------------------------------------------------------------- /src/components/layouts/App/ActionsHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/layouts/App/ActionsHandler.tsx -------------------------------------------------------------------------------- /src/components/layouts/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/layouts/App/App.css -------------------------------------------------------------------------------- /src/components/layouts/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/layouts/App/App.js -------------------------------------------------------------------------------- /src/components/layouts/App/VerificationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/layouts/App/VerificationModal.tsx -------------------------------------------------------------------------------- /src/components/layouts/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/components/layouts/App/index.tsx -------------------------------------------------------------------------------- /src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/config/constants.ts -------------------------------------------------------------------------------- /src/config/experiments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/config/experiments.js -------------------------------------------------------------------------------- /src/contents/codeOfConduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/contents/codeOfConduct.js -------------------------------------------------------------------------------- /src/contents/cookiesPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/contents/cookiesPolicy.js -------------------------------------------------------------------------------- /src/contents/privacyPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/contents/privacyPolicy.js -------------------------------------------------------------------------------- /src/contents/termsAndConditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/contents/termsAndConditions.js -------------------------------------------------------------------------------- /src/context/apiContext/ApiContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/context/apiContext/ApiContext.tsx -------------------------------------------------------------------------------- /src/context/authContext/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/context/authContext/AuthContext.tsx -------------------------------------------------------------------------------- /src/context/filtersContext/FiltersContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/context/filtersContext/FiltersContext.tsx -------------------------------------------------------------------------------- /src/context/mentorsContext/MentorsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/context/mentorsContext/MentorsContext.js -------------------------------------------------------------------------------- /src/context/modalContext/ModalContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/context/modalContext/ModalContext.tsx -------------------------------------------------------------------------------- /src/context/userContext/UserContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/context/userContext/UserContext.tsx -------------------------------------------------------------------------------- /src/external-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/external-types.d.ts -------------------------------------------------------------------------------- /src/favoriteManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/favoriteManager.js -------------------------------------------------------------------------------- /src/ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/ga.ts -------------------------------------------------------------------------------- /src/helpers/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/helpers/avatar.js -------------------------------------------------------------------------------- /src/helpers/getTitleTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/helpers/getTitleTags.tsx -------------------------------------------------------------------------------- /src/helpers/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/helpers/languages.ts -------------------------------------------------------------------------------- /src/helpers/mentorship.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/helpers/mentorship.ts -------------------------------------------------------------------------------- /src/helpers/ssr.ts: -------------------------------------------------------------------------------- 1 | export function isSsr() { 2 | return typeof window === 'undefined'; 3 | } -------------------------------------------------------------------------------- /src/helpers/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/helpers/time.ts -------------------------------------------------------------------------------- /src/helpers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/helpers/user.ts -------------------------------------------------------------------------------- /src/helpers/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/helpers/window.ts -------------------------------------------------------------------------------- /src/hooks/useDeviceType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/hooks/useDeviceType.ts -------------------------------------------------------------------------------- /src/hooks/useRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/hooks/useRoutes.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/index.css -------------------------------------------------------------------------------- /src/listsGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/listsGenerator.js -------------------------------------------------------------------------------- /src/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/messages.js -------------------------------------------------------------------------------- /src/persistData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/persistData/index.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setup-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/setup-tests.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/stories/StoriesContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/StoriesContainer.js -------------------------------------------------------------------------------- /src/stories/button.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/button.stories.mdx -------------------------------------------------------------------------------- /src/stories/checkbox.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/checkbox.stories.mdx -------------------------------------------------------------------------------- /src/stories/icons.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/icons.stories.js -------------------------------------------------------------------------------- /src/stories/input.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/input.stories.mdx -------------------------------------------------------------------------------- /src/stories/liststorydata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/liststorydata.json -------------------------------------------------------------------------------- /src/stories/mentor-card.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/mentor-card.stories.mdx -------------------------------------------------------------------------------- /src/stories/modal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/modal.stories.js -------------------------------------------------------------------------------- /src/stories/profile-card.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/profile-card.stories.js -------------------------------------------------------------------------------- /src/stories/profile-list.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/profile-list.stories.mdx -------------------------------------------------------------------------------- /src/stories/radiobutton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/radiobutton.stories.tsx -------------------------------------------------------------------------------- /src/stories/select.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/select.stories.js -------------------------------------------------------------------------------- /src/stories/textarea.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/stories/textarea.stories.mdx -------------------------------------------------------------------------------- /src/titleGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/titleGenerator.js -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- 1 | export type AnyFixMe = any; 2 | -------------------------------------------------------------------------------- /src/types/models.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/types/models.d.ts -------------------------------------------------------------------------------- /src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/utils/auth.js -------------------------------------------------------------------------------- /src/utils/isDeep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/utils/isDeep.ts -------------------------------------------------------------------------------- /src/utils/maskSansitiveString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/utils/maskSansitiveString.ts -------------------------------------------------------------------------------- /src/utils/overwriteProfileDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/utils/overwriteProfileDefaults.ts -------------------------------------------------------------------------------- /src/utils/permaLinkService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/utils/permaLinkService.js -------------------------------------------------------------------------------- /src/utils/sitemapGenerator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/utils/sitemapGenerator.tsx -------------------------------------------------------------------------------- /src/utils/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/utils/tags.js -------------------------------------------------------------------------------- /src/utils/tawk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/src/utils/tawk.ts -------------------------------------------------------------------------------- /tsconfig.functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/tsconfig.functions.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Coach/find-a-mentor/HEAD/yarn.lock --------------------------------------------------------------------------------