|
@@ -3,17 +3,18 @@ import { DesignComp } from "@/modules/editor/objects/DesignTemp/DesignComp";
|
|
|
import { compMasks } from "@/modules/editor/objects/DesignTemp/creates/CompMasks";
|
|
|
import FormUI, { ColumnItem } from "@queenjs/components/FormUI";
|
|
|
import { Input, InputNumber, Select } from "ant-design-vue";
|
|
|
-import { isEmpty } from "lodash";
|
|
|
+import _, { isEmpty } from "lodash";
|
|
|
import { defineComponent } from "vue";
|
|
|
import { any } from "vue-types";
|
|
|
import { GroupNumber } from "../formItems/GroupNumber";
|
|
|
import Slider from "../formItems/Slider";
|
|
|
import { createColorOpts } from "./formOpts/createColorOpts";
|
|
|
+import { CompBase } from "@/modules/editor/objects/Elements/base";
|
|
|
|
|
|
export const layoutColumns: ColumnItem[] = [
|
|
|
{
|
|
|
label: "尺寸",
|
|
|
- dataIndex: "layout.size",
|
|
|
+ dataIndex: "state.size",
|
|
|
component: GroupNumber,
|
|
|
props: {
|
|
|
labels: ["宽度", "高度"],
|
|
@@ -84,7 +85,7 @@ export const layoutColumns: ColumnItem[] = [
|
|
|
// },
|
|
|
{
|
|
|
label: "透明度",
|
|
|
- dataIndex: "layout.opacity",
|
|
|
+ dataIndex: "state.opacity",
|
|
|
component: Slider,
|
|
|
props: {
|
|
|
defaultValue: 1,
|
|
@@ -98,7 +99,7 @@ export const layoutColumns: ColumnItem[] = [
|
|
|
export const bgColumns: ColumnItem[] = [
|
|
|
{
|
|
|
label: "背景颜色",
|
|
|
- dataIndex: "layout.background.color",
|
|
|
+ dataIndex: "state.bgColor",
|
|
|
...createColorOpts(),
|
|
|
},
|
|
|
// {
|
|
@@ -160,13 +161,26 @@ export const bgColumns: ColumnItem[] = [
|
|
|
export function createAttrsForm(valueColumns: ColumnItem[]) {
|
|
|
return defineComponent({
|
|
|
props: {
|
|
|
- component: any<DesignComp>().isRequired,
|
|
|
+ component: any<CompBase<any>>().isRequired,
|
|
|
},
|
|
|
setup(props) {
|
|
|
- const { store, actions } = useEditor();
|
|
|
- function changeVal(e: { dataIndex: string; value: any }) {
|
|
|
- actions.updateCompData(store.currComp, e.dataIndex, e.value);
|
|
|
- actions.submitUpdate();
|
|
|
+ const {controls } = useEditor();
|
|
|
+
|
|
|
+ function changeVal(e: { dataIndex: string; value: any , setterIndex:string}) {
|
|
|
+ let setterpath = e.setterIndex;
|
|
|
+ if (!setterpath) {
|
|
|
+ const dataIndex = e.dataIndex;
|
|
|
+ const paths = dataIndex.split(".")
|
|
|
+ const prop = paths[paths.length-1];
|
|
|
+ paths[paths.length-1] = "set" + prop.slice(0, 1).toUpperCase() + prop.slice(1);
|
|
|
+ setterpath = paths.join(".");
|
|
|
+ }
|
|
|
+ _.invoke(props.component, setterpath, e.value)
|
|
|
+ }
|
|
|
+
|
|
|
+ function changeValEnd(e: { dataIndex: string; value: any , setterIndex:string}) {
|
|
|
+ changeVal(e);
|
|
|
+ controls.compCtrl.history.submit();
|
|
|
}
|
|
|
|
|
|
return () => {
|
|
@@ -180,6 +194,7 @@ export function createAttrsForm(valueColumns: ColumnItem[]) {
|
|
|
data={component}
|
|
|
columns={valueColumns}
|
|
|
onChange={changeVal}
|
|
|
+ onChangeEnd={changeValEnd}
|
|
|
/>
|
|
|
</>
|
|
|
) : null}
|
|
@@ -188,14 +203,16 @@ export function createAttrsForm(valueColumns: ColumnItem[]) {
|
|
|
data={component}
|
|
|
columns={layoutColumns}
|
|
|
onChange={changeVal}
|
|
|
+ onChangeEnd={changeValEnd}
|
|
|
/>
|
|
|
- {!isEmpty(component?.layout?.background) ? (
|
|
|
+ {!isEmpty(component.state.bgColor) ? (
|
|
|
<>
|
|
|
<div>背景</div>
|
|
|
<FormUI
|
|
|
data={component}
|
|
|
columns={bgColumns}
|
|
|
onChange={changeVal}
|
|
|
+ onChangeEnd={changeValEnd}
|
|
|
/>
|
|
|
</>
|
|
|
) : null}
|