mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
featr: 新增图层选中的样式
This commit is contained in:
@@ -1,27 +1,36 @@
|
||||
<template>
|
||||
<div class="go-content-layers-list-item go-flex-center">
|
||||
<n-image
|
||||
class="list-img"
|
||||
object-fit="contain"
|
||||
preview-disabled
|
||||
:src="image"
|
||||
:fallback-src="requireFallbackImg()"
|
||||
/>
|
||||
<n-ellipsis>
|
||||
<b-text class="list-text">
|
||||
{{ title }}
|
||||
</b-text>
|
||||
</n-ellipsis>
|
||||
<div
|
||||
class="go-content-layers-list-item"
|
||||
:class="{ hover: hover, select: select }"
|
||||
>
|
||||
<div class="go-flex-center item-content">
|
||||
<n-image
|
||||
class="list-img"
|
||||
object-fit="contain"
|
||||
preview-disabled
|
||||
:src="image"
|
||||
:fallback-src="requireFallbackImg()"
|
||||
/>
|
||||
<n-ellipsis>
|
||||
<b-text class="list-text">
|
||||
{{ title }}
|
||||
</b-text>
|
||||
</n-ellipsis>
|
||||
</div>
|
||||
<div :class="{ 'select-modal': select }" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, toRefs } from 'vue'
|
||||
import { ref, toRefs, computed } from 'vue'
|
||||
import { requireFallbackImg } from '@/utils'
|
||||
import { useDesignStore } from '@/store/modules/designStore/designStore'
|
||||
import { useChartEditStoreStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||
|
||||
// 全局颜色
|
||||
const designStore = useDesignStore()
|
||||
const themeColor = ref(designStore.getAppTheme)
|
||||
const chartEditStore = useChartEditStoreStore()
|
||||
|
||||
const props = defineProps({
|
||||
componentData: {
|
||||
@@ -29,22 +38,61 @@ const props = defineProps({
|
||||
required: true
|
||||
}
|
||||
})
|
||||
|
||||
const { image, title } = toRefs(props.componentData.chartData)
|
||||
|
||||
// 计算当前选中目标
|
||||
const select = computed(() => {
|
||||
return props.componentData.id === chartEditStore.getTargetChart.selectIndex
|
||||
})
|
||||
|
||||
const hover = computed(() => {
|
||||
return props.componentData.id === chartEditStore.getTargetChart.hoverIndex
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
$centerHeight: 40px;
|
||||
$centerHeight: 52px;
|
||||
$textSize: 10px;
|
||||
|
||||
@include go(content-layers-list-item) {
|
||||
justify-content: start !important;
|
||||
padding: 6px 10px;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
height: $centerHeight;
|
||||
width: 90%;
|
||||
margin: 10px 5%;
|
||||
margin-bottom: 5px;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
border: 1px solid rgba(0, 0, 0, 0);
|
||||
@extend .go-transition-quick;
|
||||
&.hover,
|
||||
&:hover {
|
||||
@include filter-bg-color('background-color4');
|
||||
color: v-bind('themeColor');
|
||||
}
|
||||
/* 选中 */
|
||||
&.select {
|
||||
border: 1px solid v-bind('themeColor');
|
||||
/* 需要设置最高级,覆盖 hover 的颜色 */
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
}
|
||||
.select-modal,
|
||||
.item-content {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
.item-content {
|
||||
z-index: 1;
|
||||
padding: 6px 5px;
|
||||
justify-content: start !important;
|
||||
width: calc(100% - 10px);
|
||||
height: calc(100% - 10px);
|
||||
}
|
||||
.select-modal {
|
||||
background-color: v-bind('themeColor');
|
||||
opacity: 0.3;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.list-img {
|
||||
flex-shrink: 0;
|
||||
@@ -53,7 +101,7 @@ $textSize: 10px;
|
||||
overflow: hidden;
|
||||
border: 1px solid;
|
||||
padding: 2px;
|
||||
@include hover-border-color('hover-border-color')
|
||||
@include hover-border-color('hover-border-color');
|
||||
}
|
||||
.list-text {
|
||||
padding-left: 10px;
|
||||
|
||||
@@ -17,30 +17,52 @@
|
||||
v-for="item in chartEditStore.getComponentList"
|
||||
:key="item.id"
|
||||
:componentData="item"
|
||||
@mousedown="mousedownHandle(item)"
|
||||
@mouseenter="mouseenterHandle(item)"
|
||||
@mouseleave="mouseleaveHandle(item)"
|
||||
/>
|
||||
</ContentBox>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ContentBox } from '../ContentBox/index'
|
||||
|
||||
import { useChartLayoutStore } from '@/store/modules/chartLayoutStore/chartLayoutStore'
|
||||
import { ChartLayoutStoreEnum } from '@/store/modules/chartLayoutStore/chartLayoutStore.d'
|
||||
|
||||
import { useChartEditStoreStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||
import { ChartEditStoreEnum, TargetChartType } from '@/store/modules/chartEditStore/chartEditStore.d'
|
||||
import { CreateComponentType } from '@/packages/index.d'
|
||||
|
||||
import { ListItem } from './components/ListItem/index'
|
||||
import { icon } from '@/plugins'
|
||||
|
||||
const { LayersIcon } = icon.ionicons5
|
||||
const chartLayoutStore = useChartLayoutStore()
|
||||
|
||||
const chartEditStore = useChartEditStoreStore()
|
||||
|
||||
const backHandle = () => {
|
||||
chartLayoutStore.setItem(ChartLayoutStoreEnum.LAYERS, false)
|
||||
}
|
||||
|
||||
// 点击事件
|
||||
const mousedownHandle = (item: CreateComponentType) => {
|
||||
chartEditStore.setTargetSelectChart(item.id)
|
||||
}
|
||||
|
||||
// 进入事件
|
||||
const mouseenterHandle = (item: CreateComponentType) => {
|
||||
chartEditStore.setTargetHoverChart(item.id)
|
||||
}
|
||||
|
||||
// 移出事件
|
||||
const mouseleaveHandle = (item: CreateComponentType) => {
|
||||
chartEditStore.setTargetHoverChart(undefined)
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
$wight: 150px;
|
||||
$wight: 170px;
|
||||
@include go(content-layers) {
|
||||
width: $wight;
|
||||
flex-shrink: 0;
|
||||
|
||||
Reference in New Issue
Block a user