├── .babelrc ├── .gitignore ├── README.md ├── codegen.yml ├── components ├── CreateRecipe.tsx ├── DeleteButton.tsx ├── GenerateContent.tsx ├── GenerateFields.tsx ├── GenerateIngredients.tsx ├── LikeButton.tsx ├── MenuList.tsx ├── OneRecipe.tsx ├── PictureUploader.tsx ├── RecipeList.tsx ├── RecipesListItem.tsx ├── UpdateRecipe.tsx ├── WithApolloClient.tsx ├── layout │ ├── MainFooter.tsx │ ├── MainLayout.tsx │ └── MainNavbar.tsx └── notify │ ├── Error.tsx │ ├── Loading.tsx │ └── Warning.tsx ├── generated └── apollo-components.tsx ├── graphql ├── mutations │ ├── createRecipe.ts │ ├── createUserLike.ts │ ├── deleteAsset.ts │ ├── deleteRecipe.ts │ ├── deleteUserLike.ts │ └── updateRecipe.ts └── queries │ ├── recipe.ts │ ├── recipes.ts │ ├── userLike.ts │ └── userLikes.ts ├── next-env.d.ts ├── next.config.js ├── now.json ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ ├── callback.ts │ ├── graphql.ts │ ├── login.ts │ ├── logout.ts │ └── me.ts ├── create.tsx ├── favorites.tsx ├── index.tsx ├── my-recipes │ ├── [id].tsx │ └── index.tsx └── recipe │ └── [id].tsx ├── public ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest └── logo.svg ├── scripts ├── now_secret_delete.sh └── now_secret_save.sh ├── tsconfig.json └── utils ├── auth0.ts ├── createUpdateObj.ts ├── generateUnit.ts ├── getUserObject.ts ├── globalStyle.ts ├── submitForm.ts ├── theme.ts ├── user.ts └── verify.ts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/README.md -------------------------------------------------------------------------------- /codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/codegen.yml -------------------------------------------------------------------------------- /components/CreateRecipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/CreateRecipe.tsx -------------------------------------------------------------------------------- /components/DeleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/DeleteButton.tsx -------------------------------------------------------------------------------- /components/GenerateContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/GenerateContent.tsx -------------------------------------------------------------------------------- /components/GenerateFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/GenerateFields.tsx -------------------------------------------------------------------------------- /components/GenerateIngredients.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/GenerateIngredients.tsx -------------------------------------------------------------------------------- /components/LikeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/LikeButton.tsx -------------------------------------------------------------------------------- /components/MenuList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/MenuList.tsx -------------------------------------------------------------------------------- /components/OneRecipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/OneRecipe.tsx -------------------------------------------------------------------------------- /components/PictureUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/PictureUploader.tsx -------------------------------------------------------------------------------- /components/RecipeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/RecipeList.tsx -------------------------------------------------------------------------------- /components/RecipesListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/RecipesListItem.tsx -------------------------------------------------------------------------------- /components/UpdateRecipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/UpdateRecipe.tsx -------------------------------------------------------------------------------- /components/WithApolloClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/WithApolloClient.tsx -------------------------------------------------------------------------------- /components/layout/MainFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/layout/MainFooter.tsx -------------------------------------------------------------------------------- /components/layout/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/layout/MainLayout.tsx -------------------------------------------------------------------------------- /components/layout/MainNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/layout/MainNavbar.tsx -------------------------------------------------------------------------------- /components/notify/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/notify/Error.tsx -------------------------------------------------------------------------------- /components/notify/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/notify/Loading.tsx -------------------------------------------------------------------------------- /components/notify/Warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/components/notify/Warning.tsx -------------------------------------------------------------------------------- /generated/apollo-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/generated/apollo-components.tsx -------------------------------------------------------------------------------- /graphql/mutations/createRecipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/mutations/createRecipe.ts -------------------------------------------------------------------------------- /graphql/mutations/createUserLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/mutations/createUserLike.ts -------------------------------------------------------------------------------- /graphql/mutations/deleteAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/mutations/deleteAsset.ts -------------------------------------------------------------------------------- /graphql/mutations/deleteRecipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/mutations/deleteRecipe.ts -------------------------------------------------------------------------------- /graphql/mutations/deleteUserLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/mutations/deleteUserLike.ts -------------------------------------------------------------------------------- /graphql/mutations/updateRecipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/mutations/updateRecipe.ts -------------------------------------------------------------------------------- /graphql/queries/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/queries/recipe.ts -------------------------------------------------------------------------------- /graphql/queries/recipes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/queries/recipes.ts -------------------------------------------------------------------------------- /graphql/queries/userLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/queries/userLike.ts -------------------------------------------------------------------------------- /graphql/queries/userLikes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/graphql/queries/userLikes.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/next.config.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/api/callback.ts -------------------------------------------------------------------------------- /pages/api/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/api/graphql.ts -------------------------------------------------------------------------------- /pages/api/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/api/login.ts -------------------------------------------------------------------------------- /pages/api/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/api/logout.ts -------------------------------------------------------------------------------- /pages/api/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/api/me.ts -------------------------------------------------------------------------------- /pages/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/create.tsx -------------------------------------------------------------------------------- /pages/favorites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/favorites.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/my-recipes/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/my-recipes/[id].tsx -------------------------------------------------------------------------------- /pages/my-recipes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/my-recipes/index.tsx -------------------------------------------------------------------------------- /pages/recipe/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/pages/recipe/[id].tsx -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/public/favicon/site.webmanifest -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/public/logo.svg -------------------------------------------------------------------------------- /scripts/now_secret_delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/scripts/now_secret_delete.sh -------------------------------------------------------------------------------- /scripts/now_secret_save.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/scripts/now_secret_save.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/auth0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/utils/auth0.ts -------------------------------------------------------------------------------- /utils/createUpdateObj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/utils/createUpdateObj.ts -------------------------------------------------------------------------------- /utils/generateUnit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/utils/generateUnit.ts -------------------------------------------------------------------------------- /utils/getUserObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/utils/getUserObject.ts -------------------------------------------------------------------------------- /utils/globalStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/utils/globalStyle.ts -------------------------------------------------------------------------------- /utils/submitForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/utils/submitForm.ts -------------------------------------------------------------------------------- /utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/utils/theme.ts -------------------------------------------------------------------------------- /utils/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/utils/user.ts -------------------------------------------------------------------------------- /utils/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainChemist/next-chop/HEAD/utils/verify.ts --------------------------------------------------------------------------------