|
@@ -1,16 +1,140 @@
|
|
|
-import { Exception, ModuleControl } from "queenjs";
|
|
|
+import { Exception, ModuleControl, queenApi } from "queenjs";
|
|
|
import { EditorModule } from "../../module";
|
|
|
|
|
|
import { CompBase } from "../../objects/Elements/base";
|
|
|
+import { RxValue } from "../../objects/Elements/RxValue";
|
|
|
+import { CardValue, CompCard, CompPage, PageValue, createCard, createPage } from "../../objects/Elements/page";
|
|
|
+import { HistoryController } from "../../objects/Elements/history";
|
|
|
+import { CompImage, createImageComp } from "../../objects/Elements/image";
|
|
|
+
|
|
|
|
|
|
|
|
|
export class CompCtrl extends ModuleControl<EditorModule> {
|
|
|
objsMap = new Map<string, CompBase<any>>();
|
|
|
+ history = new HistoryController();
|
|
|
+
|
|
|
+ root = createPage(this.history);
|
|
|
+ state = RxValue.create({
|
|
|
+ rootPage: this.root.id,
|
|
|
+ currCardId: this.root.state.children[0].id,
|
|
|
+ currCompId: this.root.state.children[0].id
|
|
|
+ })
|
|
|
+
|
|
|
+ get currCardObj() {
|
|
|
+ return this.getObj<object>(this.state.currCardId) as CompCard;
|
|
|
+ }
|
|
|
+
|
|
|
+ get currCompObj() {
|
|
|
+ return this.getObj<CompBase<object>>(this.state.currCompId);
|
|
|
+ }
|
|
|
+
|
|
|
+ pickComp(compId: string) {
|
|
|
+ this.state.setCurrCompId(compId);
|
|
|
+ }
|
|
|
+
|
|
|
+ constructor(m:EditorModule) {
|
|
|
+ super(m)
|
|
|
+ this.init();
|
|
|
+ }
|
|
|
+
|
|
|
init() {
|
|
|
this.objsMap.clear();
|
|
|
+ this.setObj(this.root);
|
|
|
+ this.setObj( this.root.state.children[0] );
|
|
|
+
|
|
|
+ this.store.currStreamCardId = this.root.state.children[0].id;
|
|
|
+ }
|
|
|
+
|
|
|
+ getRootPage() {
|
|
|
+ return this.getObj<PageValue>( this.state.refRootPage() );
|
|
|
+ }
|
|
|
+
|
|
|
+ setObj( obj: CompBase<any>) {
|
|
|
+ this.objsMap.set(obj.id, obj);
|
|
|
}
|
|
|
- getObj<T extends {[key:string]: any}>(id:string) {
|
|
|
+
|
|
|
+ getObj<T extends object>(id:string) {
|
|
|
return this.objsMap.get(id) as CompBase<T>;
|
|
|
}
|
|
|
+
|
|
|
+ addStreamCardAfter(compId:string) {
|
|
|
+ const card = createCard(this.history)
|
|
|
+ this.setObj(card);
|
|
|
+ const page = this.getRootPage()as CompPage;
|
|
|
+ page.insertCard(compId, card);
|
|
|
+ this.state.setCurrCardId( card.id );
|
|
|
+ this.pickComp( card.id )
|
|
|
+
|
|
|
+ this.history.submit();
|
|
|
+ }
|
|
|
+
|
|
|
+ async removeStreamCard(compId:string) {
|
|
|
+ await queenApi.showConfirm({ title: "删除", content: "确认删除当前内容?" });
|
|
|
+ const page = this.getRootPage() as CompPage;
|
|
|
+ const index = page.removeCard(compId);
|
|
|
+
|
|
|
+ let nextCard = this.state.currCardId;
|
|
|
+ if (compId == this.state.currCardId) {
|
|
|
+ nextCard = page.state.children[index]?.id;
|
|
|
+ if (!nextCard) {
|
|
|
+ nextCard = page.state.children[index - 1].id;
|
|
|
+ }
|
|
|
+ this.state.setCurrCardId(nextCard);
|
|
|
+ this.pickComp( nextCard )
|
|
|
+ }
|
|
|
+
|
|
|
+ this.history.submit();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ switchCard(selIndex:number, targetIndex:number) {
|
|
|
+ if (selIndex == targetIndex) return;
|
|
|
+
|
|
|
+ const page = this.getRootPage();
|
|
|
+ const children = page.state.children.slice(0);
|
|
|
+ const [selComp] = children.splice(selIndex, 1);
|
|
|
+ children.splice(targetIndex, 0, selComp);
|
|
|
+ page.state.setChildren( children );
|
|
|
+ }
|
|
|
+
|
|
|
+ async addComponent(compKey: string, values:any) {
|
|
|
+ const control = this.controls.compCtrl;
|
|
|
+ if (!control.getRootPage() ) {
|
|
|
+ queenApi.messageError("请先选中一个卡片");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ let addedObj =values?.url ?await createImageComp(values.url) : await createImageComp();
|
|
|
+ this.setObj(addedObj);
|
|
|
+
|
|
|
+ this.setObj(addedObj.imageObj);
|
|
|
+
|
|
|
+ let yOffset = 0;
|
|
|
+ if ( this.state.currCompId != this.state.currCardId ) {
|
|
|
+ const rect = this.currCompObj.getLocalBounds()
|
|
|
+ yOffset = rect.y + rect.height;
|
|
|
+ }
|
|
|
+
|
|
|
+ let xOffset = 375 - (addedObj.state.size[0] || 750) / 2
|
|
|
+ addedObj.position = {x: xOffset, y: yOffset} as any;
|
|
|
+ addedObj.updateTransform();
|
|
|
+
|
|
|
+ console.log( addedObj.worldTransform, addedObj.localTransform)
|
|
|
+
|
|
|
+
|
|
|
+ this.currCardObj.addComp(addedObj);
|
|
|
+
|
|
|
+ this.pickComp( addedObj.id );
|
|
|
+
|
|
|
+ const compId = addedObj.id;
|
|
|
+
|
|
|
+ if (compKey == "Text") {
|
|
|
+ this.actions.textFocus(compId, true);
|
|
|
+ }
|
|
|
+ this.controls.cropCtrl.close();
|
|
|
+
|
|
|
+ this.history.submit();
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|