File size: 15,532 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 |
import tinycolor from 'tinycolor2'
import { storeToRefs } from 'pinia'
import { useSlidesStore } from '@/store'
import type { Slide } from '@/types/slides'
import type { PresetTheme } from '@/configs/theme'
import useHistorySnapshot from '@/hooks/useHistorySnapshot'
import { getLineElementLength } from '@/utils/element'
interface ThemeValueWithArea {
area: number
value: string
}
export default () => {
const slidesStore = useSlidesStore()
const { slides, theme } = storeToRefs(slidesStore)
const { addHistorySnapshot } = useHistorySnapshot()
// 获取指定幻灯片内的主要主题样式,并以在当中的占比进行排序
const getSlidesThemeStyles = (slide: Slide | Slide[]) => {
const slides = Array.isArray(slide) ? slide : [slide]
const backgroundColorValues: ThemeValueWithArea[] = []
const themeColorValues: ThemeValueWithArea[] = []
const fontColorValues: ThemeValueWithArea[] = []
const fontNameValues: ThemeValueWithArea[] = []
for (const slide of slides) {
if (slide.background) {
if (slide.background.type === 'solid' && slide.background.color) {
backgroundColorValues.push({ area: 1, value: slide.background.color })
}
else if (slide.background.type === 'gradient' && slide.background.gradient) {
const len = slide.background.gradient.colors.length
backgroundColorValues.push(...slide.background.gradient.colors.map(item => ({
area: 1 / len,
value: item.color,
})))
}
else backgroundColorValues.push({ area: 1, value: theme.value.backgroundColor })
}
for (const el of slide.elements) {
const elWidth = el.width
let elHeight = 0
if (el.type === 'line') {
const [startX, startY] = el.start
const [endX, endY] = el.end
elHeight = Math.sqrt(Math.pow(Math.abs(startX - endX), 2) + Math.pow(Math.abs(startY - endY), 2))
}
else elHeight = el.height
const area = elWidth * elHeight
if (el.type === 'shape' || el.type === 'text') {
if (el.fill) {
themeColorValues.push({ area, value: el.fill })
}
if (el.type === 'shape' && el.gradient) {
const len = el.gradient.colors.length
themeColorValues.push(...el.gradient.colors.map(item => ({
area: 1 / len * area,
value: item.color,
})))
}
const text = (el.type === 'shape' ? el.text?.content : el.content) || ''
if (!text) continue
const plainText = text.replace(/<[^>]+>/g, '').replace(/\s*/g, '')
const matchForColor = text.match(/<[^>]+color: .+?<\/.+?>/g)
const matchForFont = text.match(/<[^>]+font-family: .+?<\/.+?>/g)
let defaultColorPercent = 1
let defaultFontPercent = 1
if (matchForColor) {
for (const item of matchForColor) {
const ret = item.match(/color: (.+?);/)
if (!ret) continue
const text = item.replace(/<[^>]+>/g, '').replace(/\s*/g, '')
const color = ret[1]
const percentage = text.length / plainText.length
defaultColorPercent = defaultColorPercent - percentage
fontColorValues.push({
area: area * percentage,
value: color,
})
}
}
if (matchForFont) {
for (const item of matchForFont) {
const ret = item.match(/font-family: (.+?);/)
if (!ret) continue
const text = item.replace(/<[^>]+>/g, '').replace(/\s*/g, '')
const font = ret[1]
const percentage = text.length / plainText.length
defaultFontPercent = defaultFontPercent - percentage
fontNameValues.push({
area: area * percentage,
value: font,
})
}
}
if (defaultColorPercent) {
const _defaultColor = el.type === 'shape' ? el.text?.defaultColor : el.defaultColor
const defaultColor = _defaultColor || theme.value.fontColor
fontColorValues.push({
area: area * defaultColorPercent,
value: defaultColor,
})
}
if (defaultFontPercent) {
const _defaultFont = el.type === 'shape' ? el.text?.defaultFontName : el.defaultFontName
const defaultFont = _defaultFont || theme.value.fontName
fontNameValues.push({
area: area * defaultFontPercent,
value: defaultFont,
})
}
}
else if (el.type === 'table') {
const cellCount = el.data.length * el.data[0].length
let cellWithFillCount = 0
for (const row of el.data) {
for (const cell of row) {
if (cell.style?.backcolor) {
cellWithFillCount += 1
themeColorValues.push({ area: area / cellCount, value: cell.style?.backcolor })
}
if (cell.text) {
const percent = (cell.text.length >= 10) ? 1 : (cell.text.length / 10)
if (cell.style?.color) {
fontColorValues.push({ area: area / cellCount * percent, value: cell.style?.color })
}
if (cell.style?.fontname) {
fontColorValues.push({ area: area / cellCount * percent, value: cell.style?.fontname })
}
}
}
}
if (el.theme) {
const percent = 1 - cellWithFillCount / cellCount
themeColorValues.push({ area: area * percent, value: el.theme.color })
}
}
else if (el.type === 'chart') {
if (el.fill) {
themeColorValues.push({ area: area * 0.5, value: el.fill })
}
themeColorValues.push({ area: area * 0.5, value: el.themeColors[0] })
}
else if (el.type === 'line') {
themeColorValues.push({ area, value: el.color })
}
else if (el.type === 'audio') {
themeColorValues.push({ area, value: el.color })
}
else if (el.type === 'latex') {
fontColorValues.push({ area, value: el.color })
}
}
}
const backgroundColors: { [key: string]: number } = {}
for (const item of backgroundColorValues) {
const color = tinycolor(item.value).toRgbString()
if (color === 'rgba(0, 0, 0, 0)') continue
if (!backgroundColors[color]) backgroundColors[color] = item.area
else backgroundColors[color] += item.area
}
const themeColors: { [key: string]: number } = {}
for (const item of themeColorValues) {
const color = tinycolor(item.value).toRgbString()
if (color === 'rgba(0, 0, 0, 0)') continue
if (!themeColors[color]) themeColors[color] = item.area
else themeColors[color] += item.area
}
const fontColors: { [key: string]: number } = {}
for (const item of fontColorValues) {
const color = tinycolor(item.value).toRgbString()
if (color === 'rgba(0, 0, 0, 0)') continue
if (!fontColors[color]) fontColors[color] = item.area
else fontColors[color] += item.area
}
const fontNames: { [key: string]: number } = {}
for (const item of fontNameValues) {
if (!fontNames[item.value]) fontNames[item.value] = item.area
else fontNames[item.value] += item.area
}
return {
backgroundColors: Object.keys(backgroundColors).sort((a, b) => backgroundColors[b] - backgroundColors[a]),
themeColors: Object.keys(themeColors).sort((a, b) => themeColors[b] - themeColors[a]),
fontColors: Object.keys(fontColors).sort((a, b) => fontColors[b] - fontColors[a]),
fontNames: Object.keys(fontNames).sort((a, b) => fontNames[b] - fontNames[a]),
}
}
// 获取指定幻灯片内的主要颜色(忽略透明度),并按颜色面积排序
const getSlideAllColors = (slide: Slide) => {
const colorMap: { [key: string]: number } = {}
const record = (color: string, area: number) => {
const _color = tinycolor(color).setAlpha(1).toRgbString()
if (!colorMap[_color]) colorMap[_color] = area
else colorMap[_color] = colorMap[_color] + area
}
for (const el of slide.elements) {
const width = el.width
const height = el.type === 'line' ? getLineElementLength(el) : el.height
const area = width * height
if (el.type === 'shape' && tinycolor(el.fill).getAlpha() !== 0) {
record(el.fill, area)
}
if (el.type === 'text' && el.fill && tinycolor(el.fill).getAlpha() !== 0) {
record(el.fill, area)
}
if (el.type === 'image' && el.colorMask && tinycolor(el.colorMask).getAlpha() !== 0) {
record(el.colorMask, area)
}
if (el.type === 'table' && el.theme && tinycolor(el.theme.color).getAlpha() !== 0) {
record(el.theme.color, area)
}
if (el.type === 'chart' && el.themeColors[0] && tinycolor(el.themeColors[0]).getAlpha() !== 0) {
record(el.themeColors[0], area)
}
if (el.type === 'line' && tinycolor(el.color).getAlpha() !== 0) {
record(el.color, area)
}
if (el.type === 'audio' && tinycolor(el.color).getAlpha() !== 0) {
record(el.color, area)
}
}
const colors = Object.keys(colorMap).sort((a, b) => colorMap[b] - colorMap[a])
return colors
}
// 创建原颜色与新颜色的对应关系表
const createSlideThemeColorMap = (slide: Slide, _newColors: string[]): { [key: string]: string } => {
const newColors = [..._newColors]
const oldColors = getSlideAllColors(slide)
const themeColorMap: { [key: string]: string } = {}
if (oldColors.length > newColors.length) {
const analogous = tinycolor(newColors[0]).analogous(oldColors.length - newColors.length + 10)
const otherColors = analogous.map(item => item.toHexString()).slice(1)
newColors.push(...otherColors)
}
for (let i = 0; i < oldColors.length; i++) {
themeColorMap[oldColors[i]] = newColors[i]
}
return themeColorMap
}
// 设置幻灯片主题
const setSlideTheme = (slide: Slide, theme: PresetTheme) => {
const colorMap = createSlideThemeColorMap(slide, theme.colors)
const getColor = (color: string) => {
const alpha = tinycolor(color).getAlpha()
const _color = colorMap[tinycolor(color).setAlpha(1).toRgbString()]
return _color ? tinycolor(_color).setAlpha(alpha).toRgbString() : color
}
if (!slide.background || slide.background.type !== 'image') {
slide.background = {
type: 'solid',
color: theme.background,
}
}
for (const el of slide.elements) {
if (el.type === 'shape') {
if (el.fill) el.fill = getColor(el.fill)
if (el.gradient) delete el.gradient
if (el.text) {
el.text.defaultColor = theme.fontColor
el.text.defaultFontName = theme.fontname
if(el.text.content) el.text.content = el.text.content.replace(/color: .+?;/g, '').replace(/font-family: .+?;/g, '')
}
}
if (el.type === 'text') {
if (el.fill) el.fill = getColor(el.fill)
el.defaultColor = theme.fontColor
el.defaultFontName = theme.fontname
if(el.content) el.content = el.content.replace(/color: .+?;/g, '').replace(/font-family: .+?;/g, '')
}
if (el.type === 'image' && el.colorMask) {
el.colorMask = getColor(el.colorMask)
}
if (el.type === 'table') {
if (el.theme) el.theme.color = getColor(el.theme.color)
for (const rowCells of el.data) {
for (const cell of rowCells) {
if (cell.style) {
cell.style.color = theme.fontColor
cell.style.fontname = theme.fontname
}
}
}
}
if (el.type === 'chart') {
el.themeColors = getColor(el.themeColors[0]) ? [getColor(el.themeColors[0])] : el.themeColors
el.textColor = theme.fontColor
}
if (el.type === 'line') el.color = getColor(el.color)
if (el.type === 'audio') el.color = getColor(el.color)
if (el.type === 'latex') el.color = theme.fontColor
if ('outline' in el && el.outline) {
el.outline.color = theme.borderColor
}
}
}
// 应用预置主题
const applyPresetTheme = (theme: PresetTheme, resetSlides = false) => {
slidesStore.setTheme({
backgroundColor: theme.background,
themeColors: theme.colors,
fontColor: theme.fontColor,
outline: {
width: 2,
style: 'solid',
color: theme.borderColor,
},
fontName: theme.fontname,
})
if (resetSlides) {
const newSlides: Slide[] = JSON.parse(JSON.stringify(slides.value))
for (const slide of newSlides) {
setSlideTheme(slide, theme)
}
slidesStore.setSlides(newSlides)
addHistorySnapshot()
}
}
// 将当前主题配置应用到全部页面
const applyThemeToAllSlides = (applyAll = false) => {
const newSlides: Slide[] = JSON.parse(JSON.stringify(slides.value))
const { themeColors, backgroundColor, fontColor, fontName, outline, shadow } = theme.value
for (const slide of newSlides) {
if (!slide.background || slide.background.type !== 'image') {
slide.background = {
type: 'solid',
color: backgroundColor
}
}
for (const el of slide.elements) {
if (applyAll) {
if ('outline' in el && el.outline) el.outline = outline
if ('shadow' in el && el.shadow) el.shadow = shadow
}
if (el.type === 'shape') {
const alpha = tinycolor(el.fill).getAlpha()
if (alpha > 0) el.fill = themeColors[0]
if (el.text) {
el.text.defaultColor = fontColor
el.text.defaultFontName = fontName
if(el.text.content) el.text.content = el.text.content.replace(/color: .+?;/g, '').replace(/font-family: .+?;/g, '')
}
if (el.gradient) delete el.gradient
}
else if (el.type === 'line') el.color = themeColors[0]
else if (el.type === 'text') {
if (el.fill) {
const alpha = tinycolor(el.fill).getAlpha()
if (alpha > 0) el.fill = themeColors[0]
}
el.defaultColor = fontColor
el.defaultFontName = fontName
if(el.content) el.content = el.content.replace(/color: .+?;/g, '').replace(/font-family: .+?;/g, '')
}
else if (el.type === 'table') {
if (el.theme) el.theme.color = themeColors[0]
for (const rowCells of el.data) {
for (const cell of rowCells) {
if (cell.style) {
cell.style.color = fontColor
cell.style.fontname = fontName
}
}
}
}
else if (el.type === 'chart') {
el.themeColors = themeColors
el.textColor = fontColor
}
else if (el.type === 'latex') el.color = fontColor
else if (el.type === 'audio') el.color = themeColors[0]
}
}
slidesStore.setSlides(newSlides)
addHistorySnapshot()
}
return {
getSlidesThemeStyles,
applyPresetTheme,
applyThemeToAllSlides,
}
} |