-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
142 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
<!-- | ||
* @Author: 秦少卫 | ||
* @Date: 2024-05-21 10:18:57 | ||
* @LastEditors: 秦少卫 | ||
* @LastEditTime: 2024-05-26 22:59:26 | ||
* @Description: 圆角 | ||
--> | ||
<template> | ||
<div | ||
class="box attr-item-box" | ||
v-if="mixinState.mSelectMode === 'one' && rectType.includes(mixinState.mSelectOneType)" | ||
> | ||
<!-- <h3>圆角</h3> --> | ||
<Divider plain orientation="left"><h4>圆角</h4></Divider> | ||
<!-- 通用属性 --> | ||
<div> | ||
<Row :gutter="10"> | ||
<Col :span="18" flex="1"> | ||
<Form :label-width="40" class="form-wrap"> | ||
<FormItem :label="$t('attributes.rx_ry')"> | ||
<Slider | ||
v-model="baseAttr.rx" | ||
:max="300" | ||
@on-input="(value) => changeCommon(value)" | ||
></Slider> | ||
</FormItem> | ||
</Form> | ||
</Col> | ||
<Col :span="6" flex="1"> | ||
<InputNumber | ||
v-model="baseAttr.rx" | ||
min="0" | ||
max="300" | ||
@on-change="(value) => changeCommon(value)" | ||
></InputNumber> | ||
</Col> | ||
</Row> | ||
</div> | ||
<!-- <Divider plain></Divider> --> | ||
</div> | ||
</template> | ||
|
||
<script setup name="AttrBute"> | ||
import useSelect from '@/hooks/select'; | ||
|
||
const update = getCurrentInstance(); | ||
const { mixinState, canvasEditor } = useSelect(); | ||
|
||
// 矩形元素 | ||
const rectType = ['rect']; | ||
|
||
// 属性值 | ||
const baseAttr = reactive({ | ||
rx: 0, | ||
ry: 0, | ||
}); | ||
|
||
// 属性获取 | ||
const getObjectAttr = (e) => { | ||
const activeObject = canvasEditor.canvas.getActiveObject(); | ||
// 不是当前obj,跳过 | ||
if (e && e.target && e.target !== activeObject) return; | ||
if (activeObject) { | ||
baseAttr.rx = activeObject.get('rx'); | ||
baseAttr.ry = activeObject.get('ry'); | ||
} | ||
}; | ||
|
||
// 通用属性改变 | ||
const changeCommon = (value) => { | ||
const activeObject = canvasEditor.canvas.getActiveObjects()[0]; | ||
if (activeObject) { | ||
activeObject.set('ry', value); | ||
activeObject.set('rx', value); | ||
canvasEditor.canvas.renderAll(); | ||
} | ||
}; | ||
|
||
const selectCancel = () => { | ||
update?.proxy?.$forceUpdate(); | ||
}; | ||
|
||
onMounted(() => { | ||
// 获取圆角数据 | ||
getObjectAttr(); | ||
canvasEditor.on('selectCancel', selectCancel); | ||
canvasEditor.on('selectOne', getObjectAttr); | ||
canvasEditor.canvas.on('object:modified', getObjectAttr); | ||
}); | ||
|
||
onBeforeUnmount(() => { | ||
canvasEditor.off('selectCancel', selectCancel); | ||
canvasEditor.off('selectOne', getObjectAttr); | ||
canvasEditor.canvas.off('object:modified', getObjectAttr); | ||
}); | ||
</script> | ||
|
||
<style scoped lang="less"> | ||
:deep(.ivu-input-number) { | ||
display: block; | ||
width: 100%; | ||
} | ||
|
||
:deep(.ivu-color-picker) { | ||
display: block; | ||
} | ||
.ivu-row { | ||
margin-bottom: 8px; | ||
.ivu-col { | ||
position: inherit; | ||
&__box { | ||
display: flex; | ||
align-items: center; | ||
background: #f8f8f8; | ||
border-radius: 4px; | ||
gap: 8px; | ||
} | ||
} | ||
|
||
.label { | ||
padding-left: 8px; | ||
} | ||
.content { | ||
flex: 1; | ||
:deep(.--input), | ||
:deep(.ivu-select-selection) { | ||
background-color: transparent; | ||
border: none !important; | ||
box-shadow: none !important; | ||
} | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,6 +122,7 @@ | |
"blur": "Blur", | ||
"offset_x": "X", | ||
"offset_y": "Y", | ||
"rx_ry": "Rounded", | ||
"picture_filter": "Filtro" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters