mirror of
https://gitee.com/dromara/go-view.git
synced 2025-02-24 16:22:57 +08:00
commit
a48bdd08ff
BIN
src/assets/videos/earth.mp4
Normal file
BIN
src/assets/videos/earth.mp4
Normal file
Binary file not shown.
26
src/packages/components/Informations/Mores/Video/config.ts
Normal file
26
src/packages/components/Informations/Mores/Video/config.ts
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import { PublicConfigClass } from '@/packages/public'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { VideoConfig } from './index'
|
||||||
|
import cloneDeep from 'lodash/cloneDeep'
|
||||||
|
import video from '@/assets/videos/earth.mp4'
|
||||||
|
|
||||||
|
export const option = {
|
||||||
|
// 视频路径
|
||||||
|
dataset: video,
|
||||||
|
// 循环播放
|
||||||
|
loop: true,
|
||||||
|
// 自动播放
|
||||||
|
autoplay: true,
|
||||||
|
// 静音
|
||||||
|
muted: true,
|
||||||
|
// 适应方式
|
||||||
|
fit: 'contain',
|
||||||
|
// 圆角
|
||||||
|
borderRadius: 10
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
||||||
|
public key = VideoConfig.key
|
||||||
|
public chartConfig = cloneDeep(VideoConfig)
|
||||||
|
public option = cloneDeep(option)
|
||||||
|
}
|
74
src/packages/components/Informations/Mores/Video/config.vue
Normal file
74
src/packages/components/Informations/Mores/Video/config.vue
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<!-- eslint-disable vue/multi-word-component-names -->
|
||||||
|
<!-- eslint-disable vue/no-mutating-props -->
|
||||||
|
<template>
|
||||||
|
<collapse-item name="视频" expanded>
|
||||||
|
<setting-item-box name="源" alone>
|
||||||
|
<setting-item name="自定义源">
|
||||||
|
<n-input v-model:value="optionData.dataset" size="small"></n-input>
|
||||||
|
</setting-item>
|
||||||
|
</setting-item-box>
|
||||||
|
|
||||||
|
<setting-item-box name="控制">
|
||||||
|
<setting-item>
|
||||||
|
<n-checkbox v-model:checked="optionData.autoplay" size="small">自动播放</n-checkbox>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item>
|
||||||
|
<n-checkbox v-model:checked="optionData.loop" size="small">循环播放</n-checkbox>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item>
|
||||||
|
<n-checkbox v-model:checked="optionData.muted" size="small">静音</n-checkbox>
|
||||||
|
</setting-item>
|
||||||
|
</setting-item-box>
|
||||||
|
|
||||||
|
<setting-item-box name="样式">
|
||||||
|
<setting-item name="类型">
|
||||||
|
<n-select v-model:value="optionData.fit" size="small" :options="fitList"></n-select>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="圆角">
|
||||||
|
<n-input-number
|
||||||
|
v-model:value="optionData.borderRadius"
|
||||||
|
size="small"
|
||||||
|
:min="0"
|
||||||
|
placeholder="圆角"
|
||||||
|
></n-input-number>
|
||||||
|
</setting-item>
|
||||||
|
</setting-item-box>
|
||||||
|
</collapse-item>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { PropType } from 'vue'
|
||||||
|
import { option } from './config'
|
||||||
|
import { CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
|
||||||
|
|
||||||
|
// 适应类型
|
||||||
|
const fitList = [
|
||||||
|
{
|
||||||
|
value: 'fill',
|
||||||
|
label: 'fill'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'contain',
|
||||||
|
label: 'contain'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'cover',
|
||||||
|
label: 'cover'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'scale-down',
|
||||||
|
label: 'scale-down'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'none',
|
||||||
|
label: 'none'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
defineProps({
|
||||||
|
optionData: {
|
||||||
|
type: Object as PropType<typeof option>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
14
src/packages/components/Informations/Mores/Video/index.ts
Normal file
14
src/packages/components/Informations/Mores/Video/index.ts
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import image from '@/assets/images/chart/informations/photo.png'
|
||||||
|
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
|
||||||
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
||||||
|
|
||||||
|
export const VideoConfig: ConfigType = {
|
||||||
|
key: 'Video',
|
||||||
|
chartKey: 'VVideo',
|
||||||
|
conKey: 'VCVideo',
|
||||||
|
title: '视频',
|
||||||
|
category: ChatCategoryEnum.MORE,
|
||||||
|
categoryName: ChatCategoryEnumName.MORE,
|
||||||
|
package: PackagesCategoryEnum.INFORMATIONS,
|
||||||
|
image
|
||||||
|
}
|
71
src/packages/components/Informations/Mores/Video/index.vue
Normal file
71
src/packages/components/Informations/Mores/Video/index.vue
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
<!-- eslint-disable vue/multi-word-component-names -->
|
||||||
|
<template>
|
||||||
|
<!-- 重要:需要设置 crossOrigin="anonymous",否则保存画板缩略图会失败 -->
|
||||||
|
<video
|
||||||
|
ref="vVideoRef"
|
||||||
|
class="go-video"
|
||||||
|
preload="auto"
|
||||||
|
crossOrigin="anonymous"
|
||||||
|
playsinline
|
||||||
|
:loop="option.loop"
|
||||||
|
:autoplay="option.autoplay"
|
||||||
|
:muted="option.muted"
|
||||||
|
:width="w"
|
||||||
|
:height="h"
|
||||||
|
:src="option.dataset"
|
||||||
|
></video>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { PropType, toRefs, shallowReactive, watch, ref } from 'vue'
|
||||||
|
import { useChartDataFetch } from '@/hooks'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||||
|
import { option as configOption } from './config'
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
chartConfig: {
|
||||||
|
type: Object as PropType<CreateComponentType>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const { w, h } = toRefs(props.chartConfig.attr)
|
||||||
|
let option = shallowReactive({ ...configOption })
|
||||||
|
|
||||||
|
// 预览更新
|
||||||
|
const vVideoRef = ref(null)
|
||||||
|
useChartDataFetch(props.chartConfig, useChartEditStore, (newData: any) => {
|
||||||
|
option = newData
|
||||||
|
})
|
||||||
|
|
||||||
|
// 编辑更新
|
||||||
|
watch(
|
||||||
|
() => props.chartConfig.option,
|
||||||
|
(newData: any) => {
|
||||||
|
option = newData
|
||||||
|
if (!vVideoRef.value) return
|
||||||
|
const video: any = vVideoRef.value
|
||||||
|
video.loop = option.loop
|
||||||
|
video.autoplay = option.autoplay
|
||||||
|
video.muted = option.muted
|
||||||
|
|
||||||
|
// 控制是否播放还是停止在第一帧
|
||||||
|
!option.autoplay && (video.pause(), (video.currentTime = 0))
|
||||||
|
option.autoplay && video.play()
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
deep: true
|
||||||
|
}
|
||||||
|
)
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@include go('video') {
|
||||||
|
display: block;
|
||||||
|
mix-blend-mode: screen;
|
||||||
|
object-fit: v-bind('option.fit');
|
||||||
|
border-radius: v-bind('option.borderRadius');
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,4 +1,5 @@
|
|||||||
import { TextCloudConfig } from './TextCloud/index'
|
import { TextCloudConfig } from './TextCloud/index'
|
||||||
import { ImageConfig } from './Image/index'
|
import { ImageConfig } from './Image/index'
|
||||||
|
import { VideoConfig } from './Video/index'
|
||||||
|
|
||||||
export default [ImageConfig, TextCloudConfig]
|
export default [ImageConfig, VideoConfig, TextCloudConfig]
|
||||||
|
@ -69,6 +69,10 @@ const select = computed(() => {
|
|||||||
@include go(shape-box) {
|
@include go(shape-box) {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
cursor: move;
|
cursor: move;
|
||||||
|
|
||||||
|
// 混合模式
|
||||||
|
mix-blend-mode: screen;
|
||||||
|
|
||||||
/* 锚点 */
|
/* 锚点 */
|
||||||
.shape-point {
|
.shape-point {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
:chartConfig="item"
|
:chartConfig="item"
|
||||||
:themeSetting="themeSetting"
|
:themeSetting="themeSetting"
|
||||||
:themeColor="themeColor"
|
:themeColor="themeColor"
|
||||||
:style="{...getSizeStyle(item.attr)}"
|
:style="{ ...getSizeStyle(item.attr) }"
|
||||||
></component>
|
></component>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -49,5 +49,6 @@ const props = defineProps({
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.chart-item {
|
.chart-item {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
mix-blend-mode: screen;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -63,5 +63,6 @@ const themeColor = computed(() => {
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.chart-item {
|
.chart-item {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
mix-blend-mode: screen;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user