Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Chore/4.0.0 #246

Merged
merged 16 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 12 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,23 @@ jobs:
- name: checkout
uses: actions/checkout@master

- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm

- name: cache node_modules
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/pnpm-lock.yaml')) }}

- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn
run: pnpm install

- name: Lint
run: yarn lint

- name: Prepare
run: yarn dev:prepare

# - name: Test
# run: yarn test

# - name: Coverage
# run: yarn codecov
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: pnpm run lint
127 changes: 91 additions & 36 deletions .stackblitz/app.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<script lang="ts" setup>
// Usage of `useCldImageUrl` composable
import type {
CloudinaryUploadWidgetError,
CloudinaryUploadWidgetResults,
} from '@cloudinary-util/types'
import type { MediaType } from '../src/runtime/components/CldProductGallery.vue'

const { url } = useCldImageUrl({ options: { src: '/cld-sample-5.jpg' } })
console.log(url)

Expand All @@ -8,38 +13,84 @@ const { url: videoUrl } = useCldVideoUrl({
})
console.log(videoUrl)

const mediaAssets = [
const mediaAssets: { tag: string, mediaType?: MediaType }[] = [
{ tag: 'electric_car_product_gallery_demo' }, // by default mediaType: "image"
{ tag: 'electric_car_product_gallery_demo', mediaType: 'video' },
{ tag: 'electric_car_360_product_gallery_demo', mediaType: 'spin' },
]

const buttonId = 'open-btn'

const cldVideoRef = ref()

const chapters = {
0: 'Chapter 1',
6: 'Chapter 2',
9: 'Chapter 3',
}

const colors = {
accent: '#ff0000',
base: '#00ff00',
text: '#0000ff',
}

const onResult = (results: CloudinaryUploadWidgetResults) => {
console.log('results', results)
}
const onError = (
error: CloudinaryUploadWidgetError,
results: CloudinaryUploadWidgetResults,
) => {
console.log('error', error)
console.log('results', results)
}
</script>

<template>
<!-- Usage of `CldImage.vue` component -->
<CldImage
src="cld-sample-5"
<button :id="buttonId">
Select Image or Video
</button>
<CldMediaLibrary
api-key="12345"
:button-id="buttonId"
style="height: 600px"
/>
<CldProductGallery
:media-assets="mediaAssets"
cloud-name="demo"
:button-id="buttonId"
/>
<CldOgImage
src="cld-sample-2"
twitter-title="test"
width="987"
height="987"
alt="Sample Product"
alt="twitter-title"
/>
<CldVideoPlayer
ref="cldVideoRef"
auto-play
autoplay-mode="on-scroll"
loop
muted
playsinline
width="1620"
height="1080"
src="videos/mountain-stars"
src="videos/dog-running-snow"
:config="{ url: { cname: 'test' } }"
picture-in-picture-toggle
chapters-button
:chapters="chapters"
:colors="colors"
:transformation="{ raw_transformation: 'e_fade:2000,e_fade:-2000' }"
/>
<!-- Usage of `CldUploadWidget.vue` component -->
<CldUploadWidget
v-slot="{ open }"
upload-preset="nuxt-cloudinary-unsigned"
:on-upload="
(result, w) => {
console.log(result, w);
}
"
:tags="['sad', 'music']"
:on-error="onError"
:on-result="onResult"
>
<button
type="button"
Expand All @@ -48,23 +99,41 @@ const buttonId = 'open-btn'
Upload an Image
</button>
</CldUploadWidget>
<!-- Usage of `CldUploadButton.vue` component -->
<CldUploadButton upload-preset="nuxt-cloudinary-unsigned">
<CldUploadButton
upload-preset="nuxt-cloudinary-unsigned"
:on-error="onError"
:on-result="onResult"
>
Upload
</CldUploadButton>
<p>CldOgImage is here. Inspect the html meta to see the result</p>
<CldOgImage
src="cld-sample-2"
twitter-title="test"
width="300"
height="300"
alt="test"
<CldImage
src="cld-sample-5"
width="987"
height="987"
alt="Sample Product"
crop="fill"
priority
sizes="(max-width: 600px) 480px,
800px"
:replace-background="{ prompt: 'fish tank', seed: 3 }"
:extract="{
prompt: 'space jellyfish',
multiple: true,
mode: 'mask',
invert: true,
}"
/>
<CldImage
src="cld-sample-5"
width="987"
height="987"
alt="Sample Product"
:crop="{
type: 'thumb',
width: 600,
height: 600,
source: true,
}"
:overlays="[
{
position: {
Expand Down Expand Up @@ -102,18 +171,4 @@ const buttonId = 'open-btn'
},
]"
/>

<button :id="buttonId">
Select Image or Video
</button>
<CldMediaLibrary
api-key="12345"
:button-id="buttonId"
style="height: 600px"
/>
<CldProductGallery
:media-assets="mediaAssets"
cloud-name="demo"
:button-id="buttonId"
/>
</template>
2 changes: 1 addition & 1 deletion .stackblitz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"nuxt": "^3.11.2"
},
"dependencies": {
"@nuxtjs/cloudinary": "^3.1.0"
"@nuxtjs/cloudinary": "^4.0.0"
}
}
Loading
Loading