File size: 17,461 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 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 |
<template>
<div class="slide-design-panel">
<div class="title">背景填充</div>
<div class="row">
<Select
style="flex: 1;"
:value="background.type"
@update:value="value => updateBackgroundType(value as 'gradient' | 'image' | 'solid')"
:options="[
{ label: '纯色填充', value: 'solid' },
{ label: '图片填充', value: 'image' },
{ label: '渐变填充', value: 'gradient' },
]"
/>
<div style="width: 10px;"></div>
<Popover trigger="click" v-if="background.type === 'solid'" style="flex: 1;">
<template #content>
<ColorPicker
:modelValue="background.color"
@update:modelValue="color => updateBackground({ color })"
/>
</template>
<ColorButton :color="background.color || '#fff'" />
</Popover>
<Select
style="flex: 1;"
:value="background.image?.size || 'cover'"
@update:value="value => updateImageBackground({ size: value as SlideBackgroundImageSize })"
v-else-if="background.type === 'image'"
:options="[
{ label: '缩放', value: 'contain' },
{ label: '拼贴', value: 'repeat' },
{ label: '缩放铺满', value: 'cover' },
]"
/>
<Select
style="flex: 1;"
:value="background.gradient?.type || ''"
@update:value="value => updateGradientBackground({ type: value as GradientType })"
v-else
:options="[
{ label: '线性渐变', value: 'linear' },
{ label: '径向渐变', value: 'radial' },
]"
/>
</div>
<div class="background-image-wrapper" v-if="background.type === 'image'">
<FileInput @change="files => uploadBackgroundImage(files)">
<div class="background-image">
<div class="content" :style="{ backgroundImage: `url(${background.image?.src})` }">
<IconPlus />
</div>
</div>
</FileInput>
</div>
<div class="background-gradient-wrapper" v-if="background.type === 'gradient'">
<div class="row">
<GradientBar
:value="background.gradient?.colors || []"
:index="currentGradientIndex"
@update:value="value => updateGradientBackground({ colors: value })"
@update:index="index => currentGradientIndex = index"
/>
</div>
<div class="row">
<div style="width: 40%;">当前色块:</div>
<Popover trigger="click" style="width: 60%;">
<template #content>
<ColorPicker
:modelValue="background.gradient!.colors[currentGradientIndex].color"
@update:modelValue="value => updateGradientBackgroundColors(value)"
/>
</template>
<ColorButton :color="background.gradient!.colors[currentGradientIndex].color" />
</Popover>
</div>
<div class="row" v-if="background.gradient?.type === 'linear'">
<div style="width: 40%;">渐变角度:</div>
<Slider
:min="0"
:max="360"
:step="15"
:value="background.gradient.rotate || 0"
@update:value="value => updateGradientBackground({ rotate: value as number })"
style="width: 60%;"
/>
</div>
</div>
<div class="row">
<Button style="flex: 1;" @click="applyBackgroundAllSlide()">应用背景到全部</Button>
</div>
<Divider />
<div class="row">
<Select
style="width: 100%;"
:value="viewportRatio"
@update:value="value => updateViewportRatio(value as number)"
:options="[
{ label: '宽屏 16 : 9', value: 0.5625 },
{ label: '宽屏 16 : 10', value: 0.625 },
{ label: '标准 4 : 3', value: 0.75 },
{ label: '纸张 A3 / A4', value: 0.70710678 },
{ label: '竖向 A3 / A4', value: 1.41421356 },
]"
/>
</div>
<div class="row">
<div class="canvas-size">画布尺寸:{{ viewportSize }} × {{ toFixed(viewportSize * viewportRatio) }}</div>
</div>
<Divider />
<div class="title">
<span>全局主题</span>
<span class="more" @click="moreThemeConfigsVisible = !moreThemeConfigsVisible">
<span class="text">更多</span>
<IconDown v-if="moreThemeConfigsVisible" />
<IconRight v-else />
</span>
</div>
<div class="row">
<div style="width: 40%;">字体:</div>
<Select
style="width: 60%;"
:value="theme.fontName"
search
searchLabel="搜索字体"
@update:value="value => updateTheme({ fontName: value as string })"
:options="FONTS"
/>
</div>
<div class="row">
<div style="width: 40%;">字体颜色:</div>
<Popover trigger="click" style="width: 60%;">
<template #content>
<ColorPicker
:modelValue="theme.fontColor"
@update:modelValue="value => updateTheme({ fontColor: value })"
/>
</template>
<ColorButton :color="theme.fontColor" />
</Popover>
</div>
<div class="row">
<div style="width: 40%;">背景颜色:</div>
<Popover trigger="click" style="width: 60%;">
<template #content>
<ColorPicker
:modelValue="theme.backgroundColor"
@update:modelValue="value => updateTheme({ backgroundColor: value })"
/>
</template>
<ColorButton :color="theme.backgroundColor" />
</Popover>
</div>
<div class="row">
<div style="width: 40%;">主题色:</div>
<ColorListButton style="width: 60%;" :colors="theme.themeColors" @click="themeColorsSettingVisible = true" />
</div>
<template v-if="moreThemeConfigsVisible">
<div class="row">
<div style="width: 40%;">边框样式:</div>
<SelectCustom style="width: 60%;">
<template #options>
<div class="option" v-for="item in lineStyleOptions" :key="item" @click="updateTheme({ outline: { ...theme.outline, style: item } })">
<SVGLine :type="item" />
</div>
</template>
<template #label>
<SVGLine :type="theme.outline.style" />
</template>
</SelectCustom>
</div>
<div class="row">
<div style="width: 40%;">边框颜色:</div>
<Popover trigger="click" style="width: 60%;">
<template #content>
<ColorPicker
:modelValue="theme.outline.color"
@update:modelValue="value => updateTheme({ outline: { ...theme.outline, color: value } })"
/>
</template>
<ColorButton :color="theme.outline.color || '#000'" />
</Popover>
</div>
<div class="row">
<div style="width: 40%;">边框粗细:</div>
<NumberInput
:value="theme.outline.width || 0"
@update:value="value => updateTheme({ outline: { ...theme.outline, width: value } })"
style="width: 60%;"
/>
</div>
<div class="row" style="height: 30px;">
<div style="width: 40%;">水平阴影:</div>
<Slider
style="width: 60%;"
:min="-10"
:max="10"
:step="1"
:value="theme.shadow.h"
@update:value="value => updateTheme({ shadow: { ...theme.shadow, h: value as number } })"
/>
</div>
<div class="row" style="height: 30px;">
<div style="width: 40%;">垂直阴影:</div>
<Slider
style="width: 60%;"
:min="-10"
:max="10"
:step="1"
:value="theme.shadow.v"
@update:value="value => updateTheme({ shadow: { ...theme.shadow, v: value as number } })"
/>
</div>
<div class="row" style="height: 30px;">
<div style="width: 40%;">模糊距离:</div>
<Slider
style="width: 60%;"
:min="1"
:max="20"
:step="1"
:value="theme.shadow.blur"
@update:value="value => updateTheme({ shadow: { ...theme.shadow, blur: value as number } })"
/>
</div>
<div class="row">
<div style="width: 40%;">阴影颜色:</div>
<Popover trigger="click" style="width: 60%;">
<template #content>
<ColorPicker
:modelValue="theme.shadow.color"
@update:modelValue="value => updateTheme({ shadow: { ...theme.shadow, color: value } })"
/>
</template>
<ColorButton :color="theme.shadow.color" />
</Popover>
</div>
</template>
<div class="row">
<Button style="flex: 1;" @click="applyThemeToAllSlides(moreThemeConfigsVisible)">应用主题到全部</Button>
</div>
<div class="row">
<Button style="flex: 1;" @click="themeStylesExtractVisible = true">从幻灯片提取主题</Button>
</div>
<Divider />
<div class="title">预置主题</div>
<div class="theme-list">
<div
class="theme-item"
v-for="(item, index) in PRESET_THEMES"
:key="index"
:style="{
backgroundColor: item.background,
fontFamily: item.fontname,
}"
>
<div class="theme-item-content">
<div class="text" :style="{ color: item.fontColor }">文字 Aa</div>
<div class="colors">
<div class="color-block" v-for="(color, index) in item.colors" :key="index" :style="{ backgroundColor: color}"></div>
</div>
<div class="btns">
<Button type="primary" size="small" @click="applyPresetTheme(item)">设置</Button>
<Button type="primary" size="small" style="margin-top: 3px;" @click="applyPresetTheme(item, true)">设置并应用</Button>
</div>
</div>
</div>
</div>
</div>
<Modal
v-model:visible="themeStylesExtractVisible"
:width="320"
@closed="themeStylesExtractVisible = false"
>
<ThemeStylesExtract @close="themeStylesExtractVisible = false" />
</Modal>
<Modal
v-model:visible="themeColorsSettingVisible"
:width="310"
@closed="themeColorsSettingVisible = false"
>
<ThemeColorsSetting @close="themeColorsSettingVisible = false" />
</Modal>
</template>
<script lang="ts" setup>
import { computed, ref, watch } from 'vue'
import { storeToRefs } from 'pinia'
import { useSlidesStore } from '@/store'
import type {
Gradient,
GradientType,
SlideBackground,
SlideBackgroundType,
SlideTheme,
SlideBackgroundImage,
SlideBackgroundImageSize,
LineStyleType,
} from '@/types/slides'
import { PRESET_THEMES } from '@/configs/theme'
import { FONTS } from '@/configs/font'
import useHistorySnapshot from '@/hooks/useHistorySnapshot'
import useSlideTheme from '@/hooks/useSlideTheme'
import { getImageDataURL } from '@/utils/image'
import ThemeStylesExtract from './ThemeStylesExtract.vue'
import ThemeColorsSetting from './ThemeColorsSetting.vue'
import SVGLine from '../common/SVGLine.vue'
import ColorButton from '@/components/ColorButton.vue'
import ColorListButton from '@/components/ColorListButton.vue'
import FileInput from '@/components/FileInput.vue'
import ColorPicker from '@/components/ColorPicker/index.vue'
import Divider from '@/components/Divider.vue'
import Slider from '@/components/Slider.vue'
import Button from '@/components/Button.vue'
import Select from '@/components/Select.vue'
import Popover from '@/components/Popover.vue'
import SelectCustom from '@/components/SelectCustom.vue'
import NumberInput from '@/components/NumberInput.vue'
import Modal from '@/components/Modal.vue'
import GradientBar from '@/components/GradientBar.vue'
const slidesStore = useSlidesStore()
const { slides, currentSlide, slideIndex, viewportRatio, viewportSize, theme } = storeToRefs(slidesStore)
const moreThemeConfigsVisible = ref(false)
const themeStylesExtractVisible = ref(false)
const themeColorsSettingVisible = ref(false)
const currentGradientIndex = ref(0)
const lineStyleOptions = ref<LineStyleType[]>(['solid', 'dashed', 'dotted'])
const background = computed(() => {
if (!currentSlide.value.background) {
return {
type: 'solid',
value: '#fff',
} as SlideBackground
}
return currentSlide.value.background
})
const { addHistorySnapshot } = useHistorySnapshot()
const {
applyPresetTheme,
applyThemeToAllSlides,
} = useSlideTheme()
watch(slideIndex, () => {
currentGradientIndex.value = 0
})
// 设置背景模式:纯色、图片、渐变色
const updateBackgroundType = (type: SlideBackgroundType) => {
if (type === 'solid') {
const newBackground: SlideBackground = {
...background.value,
type: 'solid',
color: background.value.color || '#fff',
}
slidesStore.updateSlide({ background: newBackground })
}
else if (type === 'image') {
const newBackground: SlideBackground = {
...background.value,
type: 'image',
image: background.value.image || {
src: '',
size: 'cover',
},
}
slidesStore.updateSlide({ background: newBackground })
}
else {
const newBackground: SlideBackground = {
...background.value,
type: 'gradient',
gradient: background.value.gradient || {
type: 'linear',
colors: [
{ pos: 0, color: '#fff' },
{ pos: 100, color: '#fff' },
],
rotate: 0,
},
}
currentGradientIndex.value = 0
slidesStore.updateSlide({ background: newBackground })
}
addHistorySnapshot()
}
// 设置背景
const updateBackground = (props: Partial<SlideBackground>) => {
slidesStore.updateSlide({ background: { ...background.value, ...props } })
addHistorySnapshot()
}
// 设置渐变背景
const updateGradientBackground = (props: Partial<Gradient>) => {
updateBackground({ gradient: { ...background.value.gradient!, ...props } })
}
const updateGradientBackgroundColors = (color: string) => {
const colors = background.value.gradient!.colors.map((item, index) => {
if (index === currentGradientIndex.value) return { ...item, color }
return item
})
updateGradientBackground({ colors })
}
// 设置图片背景
const updateImageBackground = (props: Partial<SlideBackgroundImage>) => {
updateBackground({ image: { ...background.value.image!, ...props } })
}
// 上传背景图片
const uploadBackgroundImage = (files: FileList) => {
const imageFile = files[0]
if (!imageFile) return
getImageDataURL(imageFile).then(dataURL => updateImageBackground({ src: dataURL }))
}
// 应用当前页背景到全部页面
const applyBackgroundAllSlide = () => {
const newSlides = slides.value.map(slide => {
return {
...slide,
background: currentSlide.value.background,
}
})
slidesStore.setSlides(newSlides)
addHistorySnapshot()
}
// 设置主题
const updateTheme = (themeProps: Partial<SlideTheme>) => {
slidesStore.setTheme(themeProps)
}
// 设置画布尺寸(宽高比例)
const updateViewportRatio = (value: number) => {
slidesStore.setViewportRatio(value)
}
const toFixed = (num: number) => {
if (num % 1 !== 0) {
return parseFloat(num.toFixed(1))
}
return Math.floor(num)
}
</script>
<style lang="scss" scoped>
.slide-design-panel {
user-select: none;
}
.row {
width: 100%;
display: flex;
align-items: center;
margin-bottom: 10px;
}
.title {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
.more {
cursor: pointer;
.text {
font-size: 12px;
margin-right: 3px;
}
}
}
.background-image-wrapper {
margin-bottom: 10px;
}
.background-image {
height: 0;
padding-bottom: 56.25%;
border: 1px dashed $borderColor;
border-radius: $borderRadius;
position: relative;
transition: all $transitionDelay;
&:hover {
border-color: $themeColor;
color: $themeColor;
}
.content {
@include absolute-0();
display: flex;
justify-content: center;
align-items: center;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
cursor: pointer;
}
}
.canvas-size {
width: 100%;
color: #888;
font-size: 12px;
text-align: center;
}
.theme-list {
@include flex-grid-layout();
}
.theme-item {
@include flex-grid-layout-children(2, 48%);
padding-bottom: 27%;
border-radius: $borderRadius;
position: relative;
cursor: pointer;
.theme-item-content {
@include absolute-0();
display: flex;
flex-direction: column;
justify-content: center;
padding: 8px;
border: 1px solid $borderColor;
border-radius: $borderRadius;
}
.text {
font-size: 15px;
}
.colors {
display: flex;
margin-top: 6px;
}
.color-block {
width: 12px;
height: 12px;
margin-right: 2px;
}
&:hover .btns {
opacity: 1;
}
.btns {
@include absolute-0();
flex-direction: column;
justify-content: center;
align-items: center;
display: flex;
background-color: rgba($color: #000, $alpha: .25);
opacity: 0;
transition: opacity $transitionDelay;
}
}
.option {
height: 32px;
padding: 0 5px;
border-radius: $borderRadius;
&:not(.selected):hover {
background-color: rgba($color: $themeColor, $alpha: .05);
cursor: pointer;
}
&.selected {
color: $themeColor;
font-weight: 700;
}
}
</style> |