├── .d.ts ├── .eslintignore ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── clearLib.js ├── eslintrc.json ├── images ├── demonstration-gif.gif └── studio-tool-demonstration.png ├── package.json ├── sanity.json ├── src ├── Editor.tsx ├── EditorField.tsx ├── Image.tsx ├── LayoutsPicker.tsx ├── app.tsx ├── defaultLayout.tsx ├── imageBuilder.ts ├── index.ts ├── testLayouts │ ├── TestInstance.tsx │ ├── blogPostInstagram.tsx │ ├── hdoroDevOgImage.tsx │ ├── interviewTwitter.tsx │ └── podcastInstagram.tsx ├── types.ts └── useEditorLogic.ts └── tsconfig.json /.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/.d.ts -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/.eslintignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | lib -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/README.md -------------------------------------------------------------------------------- /clearLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/clearLib.js -------------------------------------------------------------------------------- /eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/eslintrc.json -------------------------------------------------------------------------------- /images/demonstration-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/images/demonstration-gif.gif -------------------------------------------------------------------------------- /images/studio-tool-demonstration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/images/studio-tool-demonstration.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/package.json -------------------------------------------------------------------------------- /sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/sanity.json -------------------------------------------------------------------------------- /src/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/Editor.tsx -------------------------------------------------------------------------------- /src/EditorField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/EditorField.tsx -------------------------------------------------------------------------------- /src/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/Image.tsx -------------------------------------------------------------------------------- /src/LayoutsPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/LayoutsPicker.tsx -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/defaultLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/defaultLayout.tsx -------------------------------------------------------------------------------- /src/imageBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/imageBuilder.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/testLayouts/TestInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/testLayouts/TestInstance.tsx -------------------------------------------------------------------------------- /src/testLayouts/blogPostInstagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/testLayouts/blogPostInstagram.tsx -------------------------------------------------------------------------------- /src/testLayouts/hdoroDevOgImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/testLayouts/hdoroDevOgImage.tsx -------------------------------------------------------------------------------- /src/testLayouts/interviewTwitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/testLayouts/interviewTwitter.tsx -------------------------------------------------------------------------------- /src/testLayouts/podcastInstagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/testLayouts/podcastInstagram.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/useEditorLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/src/useEditorLogic.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdoro/sanity-plugin-asset-source-ogimage/HEAD/tsconfig.json --------------------------------------------------------------------------------