File size: 4,606 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 |
<template>
<div class="line-style-panel">
<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="updateLine({ style: item })">
<SVGLine :type="item" />
</div>
</template>
<template #label>
<SVGLine :type="handleLineElement.style" />
</template>
</SelectCustom>
</div>
<div class="row">
<div style="width: 40%;">线条颜色:</div>
<Popover trigger="click" style="width: 60%;">
<template #content>
<ColorPicker
:modelValue="handleLineElement.color"
@update:modelValue="value => updateLine({ color: value })"
/>
</template>
<ColorButton :color="handleLineElement.color" />
</Popover>
</div>
<div class="row">
<div style="width: 40%;">线条宽度:</div>
<NumberInput
:value="handleLineElement.width"
@update:value="value => updateLine({ width: value })"
style="width: 60%;"
/>
</div>
<div class="row">
<div style="width: 40%;">起点样式:</div>
<SelectCustom style="width: 60%;">
<template #options>
<div class="option" v-for="item in lineMarkerOptions" :key="item" @click="updateLine({ points: [item, handleLineElement.points[1]] })">
<SVGLine :padding="5" :markers="[item, '']" />
</div>
</template>
<template #label>
<SVGLine :padding="5" :markers="[handleLineElement.points[0], '']" />
</template>
</SelectCustom>
</div>
<div class="row">
<div style="width: 40%;">终点样式:</div>
<SelectCustom style="width: 60%;">
<template #options>
<div class="option" v-for="item in lineMarkerOptions" :key="item" @click="updateLine({ points: [handleLineElement.points[0], item] })">
<SVGLine :padding="5" :markers="['', item]" />
</div>
</template>
<template #label>
<SVGLine :padding="5" :markers="['', handleLineElement.points[1]]" />
</template>
</SelectCustom>
</div>
<Divider />
<div class="row">
<Button style="flex: 1;" @click="updateLine({ start: handleLineElement.end, end: handleLineElement.start })"><IconSwitch /> 交换方向</Button>
</div>
<Divider />
<ElementShadow />
</div>
</template>
<script lang="ts" setup>
import { type Ref, ref } from 'vue'
import { storeToRefs } from 'pinia'
import { useMainStore, useSlidesStore } from '@/store'
import type { LinePoint, LineStyleType, PPTLineElement } from '@/types/slides'
import useHistorySnapshot from '@/hooks/useHistorySnapshot'
import ElementShadow from '../common/ElementShadow.vue'
import SVGLine from '../common/SVGLine.vue'
import Button from '@/components/Button.vue'
import ColorButton from '@/components/ColorButton.vue'
import ColorPicker from '@/components/ColorPicker/index.vue'
import Divider from '@/components/Divider.vue'
import NumberInput from '@/components/NumberInput.vue'
import SelectCustom from '@/components/SelectCustom.vue'
import Popover from '@/components/Popover.vue'
const slidesStore = useSlidesStore()
const { handleElement } = storeToRefs(useMainStore())
const handleLineElement = handleElement as Ref<PPTLineElement>
const { addHistorySnapshot } = useHistorySnapshot()
const lineStyleOptions = ref<LineStyleType[]>(['solid', 'dashed', 'dotted'])
const lineMarkerOptions = ref<LinePoint[]>(['', 'arrow', 'dot'])
const updateLine = (props: Partial<PPTLineElement>) => {
if (!handleElement.value) return
slidesStore.updateElement({ id: handleElement.value.id, props })
addHistorySnapshot()
}
</script>
<style lang="scss" scoped>
.row {
width: 100%;
display: flex;
align-items: center;
margin-bottom: 10px;
}
.line-btn {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 !important;
.line-wrapper {
margin-left: 8px;
}
}
.line-wrapper {
overflow: visible;
}
.line-btn-icon {
width: 30px;
font-size: 12px;
margin-top: 2px;
color: #bfbfbf;
}
.preset-point-style {
padding: 0 10px;
& + .preset-point-style {
margin-top: 10px;
}
}
.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> |