mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
111 lines
2.9 KiB
Vue
111 lines
2.9 KiB
Vue
<template>
|
||
<div class="latex-style-panel">
|
||
<div class="row"><Button style="flex: 1;" @click="latexEditorVisible = true">编辑 LaTeX</Button></div>
|
||
|
||
<Divider />
|
||
|
||
<div class="row">
|
||
<div style="flex: 2;">颜色:</div>
|
||
<Popover trigger="click">
|
||
<template #content>
|
||
<ColorPicker
|
||
:modelValue="handleElement.color"
|
||
@update:modelValue="value => updateLatex({ color: value })"
|
||
/>
|
||
</template>
|
||
<ColorButton :color="handleElement.color" style="flex: 3;" />
|
||
</Popover>
|
||
</div>
|
||
<div class="row">
|
||
<div style="flex: 2;">粗细:</div>
|
||
<InputNumber
|
||
:min="1"
|
||
:max="3"
|
||
:value="handleElement.strokeWidth"
|
||
@change="value => updateLatex({ strokeWidth: value })"
|
||
style="flex: 3;"
|
||
/>
|
||
</div>
|
||
|
||
<Modal
|
||
v-model:visible="latexEditorVisible"
|
||
:footer="null"
|
||
centered
|
||
:width="880"
|
||
destroyOnClose
|
||
>
|
||
<LaTeXEditor
|
||
:value="handleElement.latex"
|
||
@close="latexEditorVisible = false"
|
||
@update="data => { updateLatexData(data); latexEditorVisible = false }"
|
||
/>
|
||
</Modal>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
import { defineComponent, onUnmounted, ref } from 'vue'
|
||
import { storeToRefs } from 'pinia'
|
||
import { useMainStore, useSlidesStore } from '@/store'
|
||
import { PPTLatexElement } from '@/types/slides'
|
||
import emitter, { EmitterEvents } from '@/utils/emitter'
|
||
import useHistorySnapshot from '@/hooks/useHistorySnapshot'
|
||
|
||
import ColorButton from '../common/ColorButton.vue'
|
||
import LaTeXEditor from '@/components/LaTeXEditor/index.vue'
|
||
|
||
export default defineComponent({
|
||
name: 'latex-style-panel',
|
||
components: {
|
||
ColorButton,
|
||
LaTeXEditor,
|
||
},
|
||
setup() {
|
||
const slidesStore = useSlidesStore()
|
||
const { handleElement } = storeToRefs(useMainStore())
|
||
|
||
const latexEditorVisible = ref(false)
|
||
|
||
const { addHistorySnapshot } = useHistorySnapshot()
|
||
|
||
const updateLatex = (props: Partial<PPTLatexElement>) => {
|
||
if (!handleElement.value) return
|
||
slidesStore.updateElement({ id: handleElement.value.id, props })
|
||
addHistorySnapshot()
|
||
}
|
||
|
||
const updateLatexData = (data: { path: string; latex: string; w: number; h: number; }) => {
|
||
updateLatex({
|
||
path: data.path,
|
||
latex: data.latex,
|
||
width: data.w,
|
||
height: data.h,
|
||
viewBox: [data.w, data.h],
|
||
})
|
||
}
|
||
|
||
const openLatexEditor = () => latexEditorVisible.value = true
|
||
|
||
emitter.on(EmitterEvents.OPEN_LATEX_EDITOR, openLatexEditor)
|
||
onUnmounted(() => {
|
||
emitter.off(EmitterEvents.OPEN_LATEX_EDITOR, openLatexEditor)
|
||
})
|
||
|
||
return {
|
||
handleElement,
|
||
latexEditorVisible,
|
||
updateLatex,
|
||
updateLatexData,
|
||
}
|
||
}
|
||
})
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.row {
|
||
width: 100%;
|
||
display: flex;
|
||
align-items: center;
|
||
margin-bottom: 10px;
|
||
}
|
||
</style> |