├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── renovate.json └── workflows │ └── main.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .releaserc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── lint-staged.config.js ├── package.config.ts ├── package.json ├── sanity.json ├── src ├── components │ ├── AssetDiff.tsx │ ├── AssetPreview.tsx │ ├── DialogHeader.tsx │ ├── File.styled.tsx │ ├── File.tsx │ ├── ShopifyAssetInput.styled.tsx │ ├── ShopifyAssetInput.tsx │ ├── ShopifyAssetPicker.tsx │ ├── ShopifyIcon.tsx │ └── VideoPlayer.tsx ├── datastores │ └── shopify.ts ├── index.ts ├── sanity-ui.d.ts ├── schema │ ├── shopifyAssetMetadataSchema.ts │ ├── shopifyAssetPreviewSchema.ts │ └── shopifyAssetSchema.ts ├── types.ts └── utils │ └── helpers.ts ├── tsconfig.dist.json ├── tsconfig.json ├── tsconfig.settings.json └── v2-incompatible.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | } 4 | -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/package.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/package.json -------------------------------------------------------------------------------- /sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/sanity.json -------------------------------------------------------------------------------- /src/components/AssetDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/AssetDiff.tsx -------------------------------------------------------------------------------- /src/components/AssetPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/AssetPreview.tsx -------------------------------------------------------------------------------- /src/components/DialogHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/DialogHeader.tsx -------------------------------------------------------------------------------- /src/components/File.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/File.styled.tsx -------------------------------------------------------------------------------- /src/components/File.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/File.tsx -------------------------------------------------------------------------------- /src/components/ShopifyAssetInput.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/ShopifyAssetInput.styled.tsx -------------------------------------------------------------------------------- /src/components/ShopifyAssetInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/ShopifyAssetInput.tsx -------------------------------------------------------------------------------- /src/components/ShopifyAssetPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/ShopifyAssetPicker.tsx -------------------------------------------------------------------------------- /src/components/ShopifyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/ShopifyIcon.tsx -------------------------------------------------------------------------------- /src/components/VideoPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/components/VideoPlayer.tsx -------------------------------------------------------------------------------- /src/datastores/shopify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/datastores/shopify.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/sanity-ui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/sanity-ui.d.ts -------------------------------------------------------------------------------- /src/schema/shopifyAssetMetadataSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/schema/shopifyAssetMetadataSchema.ts -------------------------------------------------------------------------------- /src/schema/shopifyAssetPreviewSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/schema/shopifyAssetPreviewSchema.ts -------------------------------------------------------------------------------- /src/schema/shopifyAssetSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/schema/shopifyAssetSchema.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /tsconfig.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/tsconfig.dist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/tsconfig.settings.json -------------------------------------------------------------------------------- /v2-incompatible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanity-io/sanity-plugin-shopify-assets/HEAD/v2-incompatible.js --------------------------------------------------------------------------------