| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <div class="go-shape-box">
- <slot></slot>
- <!-- 选中 -->
- <div class="shape-modal" :style="useSizeStyle(item.attr)">
- <div class="shape-modal-select" :class="{ active: select }" />
- <div class="shape-modal-change" :class="{ active: select || hover }" />
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, computed, PropType, h } from 'vue';
- import { useChartEditStoreStore } from '@/store/modules/chartEditStore/chartEditStore'
- import { useDesignStore } from '@/store/modules/designStore/designStore'
- import { CreateComponentType } from '@/packages/index.d'
- import { useSizeStyle } from '../../hooks/useStyle.hook'
- const props = defineProps({
- item: {
- type: Object as PropType<CreateComponentType>,
- required: true
- }
- })
- // 全局颜色
- const designStore = useDesignStore()
- const themeColor = ref(designStore.getAppTheme)
- const chartEditStore = useChartEditStoreStore()
- // 计算当前选中目标
- const hover = computed(() => {
- return props.item.id === chartEditStore.getTargetChart.hoverId
- })
- const select = computed(() => {
- return props.item.id === chartEditStore.getTargetChart.selectId
- })
- </script>
- <style lang="scss" scoped>
- @include go(shape-box) {
- position: absolute;
- cursor: move;
- .shape-modal {
- position: absolute;
- top: 0;
- left: 0;
- .shape-modal-select,
- .shape-modal-change {
- position: absolute;
- width: 100%;
- height: 100%;
- border-radius: 10px;
- @extend .go-transition-quick;
- }
- .shape-modal-select {
- opacity: 0.1;
- top: 2px;
- left: 2px;
- &.active {
- background-color: v-bind('themeColor');
- }
- }
- .shape-modal-change {
- border: 2px solid rgba(0, 0, 0, 0);
- &.active {
- border: 2px solid v-bind('themeColor');
- }
- }
- }
- }
- </style>
|