File size: 14,878 Bytes
89ce340 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 |
<template>
<div class="element-animation-panel">
<div class="element-animation" v-if="handleElement">
<Popover
trigger="click"
v-model:value="animationPoolVisible"
@update:value="visible => handlePopoverVisibleChange(visible)"
style="width: 100%;"
>
<template #content>
<Tabs
:tabs="tabs"
v-model:value="activeTab"
:tabsStyle="{ marginBottom: '20px' }"
:tabStyle="{ width: '33.333%' }"
spaceAround
/>
<template v-for="key in animationTypes">
<div :class="['animation-pool', key]" :key="key" v-if="activeTab === key">
<div class="pool-type" :key="effect.name" v-for="effect in animations[key]">
<div class="type-title">{{effect.name}}:</div>
<div class="pool-item-wrapper">
<div
class="pool-item"
v-for="item in effect.children" :key="item.name"
@mouseenter="hoverPreviewAnimation = item.value"
@mouseleave="hoverPreviewAnimation = ''"
@click="addAnimation(key, item.value)"
>
<div
class="animation-box"
:class="[
`${ANIMATION_CLASS_PREFIX}animated`,
`${ANIMATION_CLASS_PREFIX}fast`,
hoverPreviewAnimation === item.value && `${ANIMATION_CLASS_PREFIX}${item.value}`,
]"
>{{item.name}}</div>
</div>
</div>
</div>
<div class="mask" v-if="!popoverMaskHide"></div>
</div>
</template>
</template>
<Button class="element-animation-btn" @click="handleAnimationId = ''">
<IconEffects style="margin-right: 5px;" /> 添加动画
</Button>
</Popover>
</div>
<div class="tip" v-else><IconClick style="margin-right: 5px;" /> 选中画布中的元素添加动画</div>
<Divider />
<Draggable
class="animation-sequence"
:modelValue="animationSequence"
:animation="200"
:scroll="true"
:scrollSensitivity="50"
handle=".sequence-content"
itemKey="id"
@end="handleDragEnd"
>
<template #item="{ element }">
<div class="sequence-item" :class="[element.type, { 'active': handleElement?.id === element.elId }]">
<div class="sequence-content">
<div class="index">{{element.index}}</div>
<div class="text">【{{element.elType}}】{{element.animationEffect}}</div>
<div class="handler">
<IconPlayOne class="handler-btn" v-tooltip="'预览'" @click="runAnimation(element.elId, element.effect, element.duration)" />
<IconCloseSmall class="handler-btn" v-tooltip="'删除'" @click="deleteAnimation(element.id)" />
</div>
</div>
<div class="configs" v-if="handleElementAnimation[0]?.elId === element.elId">
<Divider :margin="16" />
<div class="config-item">
<div style="width: 35%;">持续时长:</div>
<NumberInput
:min="500"
:max="3000"
:step="500"
:value="element.duration"
@update:value="value => updateElementAnimationDuration(element.id, value)"
style="width: 65%;"
/>
</div>
<div class="config-item">
<div style="width: 35%;">触发方式:</div>
<Select
:value="element.trigger"
@update:value="value => updateElementAnimationTrigger(element.id, value as AnimationTrigger)"
style="width: 65%;"
:options="[
{ label: '主动触发', value: 'click' },
{ label: '与上一动画同时', value: 'meantime' },
{ label: '上一动画之后', value: 'auto' },
]"
/>
</div>
<div class="config-item">
<Button style="width: 100%;" @click="openAnimationPool(element.id)">更换动画</Button>
</div>
</div>
</div>
</template>
</Draggable>
<template v-if="animationSequence.length >= 2">
<Divider />
<Button @click="runAllAnimation()">
{{ animateIn ? '停止预览' : '预览全部'}}
</Button>
</template>
</div>
</template>
<script lang="ts" setup>
import { computed, ref, watch } from 'vue'
import { nanoid } from 'nanoid'
import { storeToRefs } from 'pinia'
import { useMainStore, useSlidesStore } from '@/store'
import type { AnimationTrigger, AnimationType, PPTAnimation } from '@/types/slides'
import {
ENTER_ANIMATIONS,
EXIT_ANIMATIONS,
ATTENTION_ANIMATIONS,
ANIMATION_DEFAULT_DURATION,
ANIMATION_DEFAULT_TRIGGER,
ANIMATION_CLASS_PREFIX,
} from '@/configs/animation'
import { ELEMENT_TYPE_ZH } from '@/configs/element'
import useHistorySnapshot from '@/hooks/useHistorySnapshot'
import Tabs from '@/components/Tabs.vue'
import Divider from '@/components/Divider.vue'
import Button from '@/components/Button.vue'
import Draggable from 'vuedraggable'
import NumberInput from '@/components/NumberInput.vue'
import Select from '@/components/Select.vue'
import Popover from '@/components/Popover.vue'
const animationEffects: { [key: string]: string } = {}
for (const effect of ENTER_ANIMATIONS) {
for (const animation of effect.children) {
animationEffects[animation.value] = animation.name
}
}
for (const effect of EXIT_ANIMATIONS) {
for (const animation of effect.children) {
animationEffects[animation.value] = animation.name
}
}
for (const effect of ATTENTION_ANIMATIONS) {
for (const animation of effect.children) {
animationEffects[animation.value] = animation.name
}
}
interface TabItem {
key: AnimationType
label: string
color: string,
}
const animationTypes: AnimationType[] = ['in', 'out', 'attention']
const slidesStore = useSlidesStore()
const { handleElement, handleElementId } = storeToRefs(useMainStore())
const { currentSlide, formatedAnimations, currentSlideAnimations } = storeToRefs(slidesStore)
const tabs: TabItem[] = [
{ key: 'in', label: '入场', color: '#68a490' },
{ key: 'out', label: '退场', color: '#d86344' },
{ key: 'attention', label: '强调', color: '#e8b76a' },
]
const activeTab = ref('in')
const animateIn = ref(false)
watch(() => handleElementId.value, () => {
animationPoolVisible.value = false
})
const hoverPreviewAnimation = ref('')
const animationPoolVisible = ref(false)
const { addHistorySnapshot } = useHistorySnapshot()
// 当前页面的动画列表
const animationSequence = computed(() => {
const animationSequence = []
for (let i = 0; i < formatedAnimations.value.length; i++) {
const item = formatedAnimations.value[i]
for (let j = 0; j < item.animations.length; j++) {
const animation = item.animations[j]
const el = currentSlide.value.elements.find(el => el.id === animation.elId)
if (!el) continue
const elType = ELEMENT_TYPE_ZH[el.type]
const animationEffect = animationEffects[animation.effect]
animationSequence.push({
...animation,
index: j === 0 ? i + 1 : '',
elType,
animationEffect,
})
}
}
return animationSequence
})
// 当前选中元素的入场动画信息
const handleElementAnimation = computed(() => {
const animations = currentSlideAnimations.value
const animation = animations.filter(item => item.elId === handleElementId.value)
return animation || []
})
// 删除元素动画
const deleteAnimation = (id: string) => {
const animations = currentSlideAnimations.value.filter(item => item.id !== id)
slidesStore.updateSlide({ animations })
addHistorySnapshot()
}
// 拖拽修改动画顺序后同步数据
const handleDragEnd = (eventData: { newIndex: number; oldIndex: number }) => {
const { newIndex, oldIndex } = eventData
if (newIndex === undefined || oldIndex === undefined || newIndex === oldIndex) return
const animations: PPTAnimation[] = JSON.parse(JSON.stringify(currentSlideAnimations.value))
const animation = animations[oldIndex]
animations.splice(oldIndex, 1)
animations.splice(newIndex, 0, animation)
slidesStore.updateSlide({ animations })
addHistorySnapshot()
}
// 执行动画预览
const runAnimation = (elId: string, effect: string, duration: number) => {
const elRef = document.querySelector(`#editable-element-${elId} [class^=editable-element-]`)
if (elRef) {
const animationName = `${ANIMATION_CLASS_PREFIX}${effect}`
document.documentElement.style.setProperty('--animate-duration', `${duration}ms`)
elRef.classList.add(`${ANIMATION_CLASS_PREFIX}animated`, animationName)
const handleAnimationEnd = () => {
document.documentElement.style.removeProperty('--animate-duration')
elRef.classList.remove(`${ANIMATION_CLASS_PREFIX}animated`, animationName)
}
elRef.addEventListener('animationend', handleAnimationEnd, { once: true })
}
}
// 执行所有动画预览
const runAllAnimation = async () => {
animateIn.value = !animateIn.value
for (let i = 0; i < animationSequence.value.length; i++) {
if (!animateIn.value) break
const item = animationSequence.value[i]
if (item.index !== 1 && item.trigger !== 'meantime') await new Promise(resolve => setTimeout(resolve, item.duration + 100))
runAnimation(item.elId, item.effect, item.duration)
if (i >= animationSequence.value.length - 1) animateIn.value = false
}
}
// 修改元素动画持续时间
const updateElementAnimationDuration = (id: string, duration: number) => {
if (duration < 100 || duration > 5000) return
const animations = currentSlideAnimations.value.map(item => {
if (item.id === id) return { ...item, duration }
return item
})
slidesStore.updateSlide({ animations })
addHistorySnapshot()
}
// 修改触发方式
const updateElementAnimationTrigger = (id: string, trigger: AnimationTrigger) => {
const animations = currentSlideAnimations.value.map(item => {
if (item.id === id) return { ...item, trigger }
return item
})
slidesStore.updateSlide({ animations })
addHistorySnapshot()
}
// 修改元素动画,并执行一次预览
const updateElementAnimation = (type: AnimationType, effect: string) => {
const animations = currentSlideAnimations.value.map(item => {
if (item.id === handleAnimationId.value) return { ...item, type, effect }
return item
})
slidesStore.updateSlide({ animations })
animationPoolVisible.value = false
addHistorySnapshot()
const animationItem = currentSlideAnimations.value.find(item => item.elId === handleElementId.value)
const duration = animationItem?.duration || ANIMATION_DEFAULT_DURATION
setTimeout(() => {
runAnimation(handleElementId.value, effect, duration)
}, 0)
}
const handleAnimationId = ref('')
// 添加元素动画,并执行一次预览
const addAnimation = (type: AnimationType, effect: string) => {
if (handleAnimationId.value) {
updateElementAnimation(type, effect)
return
}
const animations: PPTAnimation[] = JSON.parse(JSON.stringify(currentSlideAnimations.value))
animations.push({
id: nanoid(10),
elId: handleElementId.value,
type,
effect,
duration: ANIMATION_DEFAULT_DURATION,
trigger: ANIMATION_DEFAULT_TRIGGER,
})
slidesStore.updateSlide({ animations })
animationPoolVisible.value = false
addHistorySnapshot()
setTimeout(() => {
runAnimation(handleElementId.value, effect, ANIMATION_DEFAULT_DURATION)
}, 0)
}
// 动画选择面板打开600ms后再移除遮罩层,否则打开面板后迅速滑入鼠标预览会导致抖动
const popoverMaskHide = ref(false)
const handlePopoverVisibleChange = (visible: boolean) => {
if (visible) {
setTimeout(() => popoverMaskHide.value = true, 600)
}
else popoverMaskHide.value = false
}
const openAnimationPool = (elementId: string) => {
animationPoolVisible.value = true
handleAnimationId.value = elementId
handlePopoverVisibleChange(true)
}
const animations = {
in: ENTER_ANIMATIONS,
out: EXIT_ANIMATIONS,
attention: ATTENTION_ANIMATIONS,
}
</script>
<style lang="scss" scoped>
$inColor: #68a490;
$outColor: #d86344;
$attentionColor: #e8b76a;
.element-animation-panel {
height: 100%;
display: flex;
flex-direction: column;
}
.element-animation {
height: 32px;
display: flex;
align-items: center;
}
.element-animation-btn {
width: 100%;
}
.config-item {
display: flex;
align-items: center;
& + .config-item {
margin-top: 5px;
}
}
.tip {
height: 32px;
display: flex;
justify-content: center;
align-items: center;
font-style: italic;
}
.animation-pool {
width: 400px;
height: 500px;
overflow-y: auto;
overflow-x: hidden;
font-size: 12px;
margin-right: -10px;
padding-right: 5px;
position: relative;
.mask {
@include absolute-0();
}
&.in .type-title {
border-left-color: $inColor;
background-color: rgba($color: $inColor, $alpha: .15);
}
&.out .type-title {
border-left-color: $outColor;
background-color: rgba($color: $outColor, $alpha: .15);
}
&.attention .type-title {
border-left-color: $attentionColor;
background-color: rgba($color: $attentionColor, $alpha: .15);
}
}
.pool-type:not(:last-child) {
margin-bottom: 5px;
}
.type-title {
width: 100%;
font-size: 13px;
margin-bottom: 10px;
border-left: 4px solid #aaa;
background-color: #eee;
padding: 4px 0 4px 10px;
}
.pool-item-wrapper {
@include flex-grid-layout();
}
.pool-item {
@include flex-grid-layout-children(4, 24%);
margin-bottom: 5px;
height: 40px;
line-height: 40px;
text-align: center;
cursor: pointer;
}
.animation-box {
background-color: $lightGray;
border-radius: $borderRadius;
}
.animation-sequence {
flex: 1;
padding-right: 12px;
margin-right: -12px;
@include overflow-overlay();
}
.sequence-item {
border: 1px solid $borderColor;
padding: 8px;
border-radius: $borderRadius;
margin-bottom: 8px;
transition: all .5s;
&.in.active {
border-color: $inColor;
}
&.out.active {
border-color: $outColor;
}
&.attention.active {
border-color: $attentionColor;
}
&.active {
height: auto;
}
.sequence-content {
display: flex;
align-items: center;
cursor: grab;
&:active {
cursor: grabbing;
}
.index {
flex: 1;
}
.text {
flex: 6;
}
.handler {
flex: 2;
font-size: 15px;
text-align: right;
}
.handler-btn {
margin-left: 8px;
cursor: pointer;
}
}
}
</style> |