90a1ceb6-7ba9-4496-99d0-b42e2fb4b0d0.js.map 2.93 KB
{"version":3,"sources":["assets/script/game/ui/view/impl/message/ImagePreviewViewImpl.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,2EAAwE;AACxE,kEAA4G;AAC5G,yEAAmE;AACnE,mEAAgE;AAChE,4EAA0D;AAE1D,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,EAAE,CAAC,UAAU,CAAC;AAI5C;IAAA,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,uBAAiC;QAA3E;;YACI,yBAAyB;YAEjB,gBAAW,GAAG,4BAAW,CAAC;YAyBlC,gBAAW,GAAG,GAAG,EAAE;gBACf,IAAI,CAAC,WAAW,CAAC,WAAW,GAAG,IAAI,CAAC,YAAY,CAAC;gBACjD,OAAO,IAAI,CAAC,MAAM,CAAC;gBACnB,IAAI,CAAC,KAAK,EAAE,CAAC;YACjB,CAAC,CAAA;QACL,CAAC;QAzBG,MAAM;YACF,KAAK,CAAC,MAAM,EAAE,CAAC;YACf,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC;YACjD,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE;gBACnC,IAAI,CAAC,KAAK;oBAAE,OAAO;gBACnB,IAAI,EAAE,GAAG,MAAM,mBAAQ,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC;gBACvD,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,KAAK,EAAE;oBACjD,IAAI,CAAC,WAAW,CAAC,WAAW,GAAG,EAAE,CAAC;iBACrC;YACL,CAAC,CAAC,CAAC;QACP,CAAC;QAED,QAAQ;YACJ,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;QACtE,CAAC;QAED,SAAS;YACL,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;QACvE,CAAC;KAOJ,CAAA;IA9BG;QADC,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC;6DACc;IAHzB,oBAAoB;QAFhC,OAAO;QACP,gCAAO,CAAC,uCAAoB,EAAE,oCAAoC,CAAC;OACvD,oBAAoB,CAiChC;IAAD,2BAAC;KAAA;AAjCY,oDAAoB","file":"","sourceRoot":"/","sourcesContent":["import { CCPureView } from \"../../../../../common/classbase/CCViewBase\";\nimport { ImagePreviewViewProps, ImagePreviewView, ImagePreviewViewType } from \"../../type/ImagePreviewView\";\nimport { DummySprite } from \"../../../../../common/CCDummyObjects\";\nimport { ResUtils } from \"../../../../../common/utils/ResUtils\";\nimport { RegView } from \"../../../PresenterCCViewFactory\";\n\nconst { ccclass, property } = cc._decorator;\n\n@ccclass\n@RegView(ImagePreviewViewType, \"prefab/ui/message/ImagePreviewView\")\nexport class ImagePreviewViewImpl extends CCPureView<ImagePreviewViewProps> implements ImagePreviewView {\n    //#region editor bindgins\n    @property(cc.Sprite)\n    private imageSprite = DummySprite;\n    //#endregion\n\n    private defaultImage: cc.SpriteFrame;\n\n    onLoad() {\n        super.onLoad();\n        this.defaultImage = this.imageSprite.spriteFrame;\n        this.bindProp(\"image\", async (value) => {\n            if (!value) return;\n            let sp = await ResUtils.loadRes(value, cc.SpriteFrame);\n            if (this.node.parent && this._props.image === value) {\n                this.imageSprite.spriteFrame = sp;\n            }\n        });\n    }\n\n    onEnable() {\n        this.node.on(cc.Node.EventType.TOUCH_END, this.closeAction, this);\n    }\n\n    onDisable() {\n        this.node.off(cc.Node.EventType.TOUCH_END, this.closeAction, this);\n    }\n\n    closeAction = () => {\n        this.imageSprite.spriteFrame = this.defaultImage;\n        delete this._props;\n        this.close();\n    }\n}"]}