c3e1fc3a-21fc-4185-9b54-095990c4972c.js.map 2.28 KB
{"version":3,"sources":["assets/script/game/ui/view/impl/MessageEntryItem.ts"],"names":[],"mappings":";;;;;;;;;;;;;AACA,sEAA2F;AAC3F,mEAAgE;AAChE,gEAA6D;AAE7D,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,EAAE,CAAC,UAAU,CAAC;AAG5C;IAAA,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,2BAAmC;QAA7E;;YAEc,eAAU,GAAa,2BAAU,CAAC;YAGlC,iBAAY,GAAgB,8BAAa,CAAC;YAG1C,eAAU,GAAc,4BAAW,CAAC;QAYlD,CAAC;QAVG,MAAM;YACF,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;YAClD,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;YACtD,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC,CAAC;YACtE,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE;gBACnC,IAAI,KAAK,CAAC,MAAM,IAAI,CAAC,EAAE;oBACnB,IAAI,CAAC,UAAU,CAAC,WAAW,GAAG,MAAM,mBAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC;iBAClF;YACL,CAAC,CAAC,CAAC;QACP,CAAC;KACJ,CAAA;IAlBG;QADC,QAAQ,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC;4DACe;IAG5C;QADC,QAAQ,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,QAAQ,EAAE,CAAC;8DACoB;IAGpD;QADC,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC;4DAC0B;IARrC,oBAAoB;QADhC,OAAO;OACK,oBAAoB,CAoBhC;IAAD,2BAAC;KAAA;AApBY,oDAAoB","file":"","sourceRoot":"/","sourcesContent":["import { MessageEntryItemProps } from \"../type/MessageView\";\nimport { DummyLabel, DummyRichText, DummySprite } from \"../../../../common/CCDummyObjects\";\nimport { ListItemImpl } from \"../../baseview/impl/ListItemImpl\";\nimport { ResUtils } from \"../../../../common/utils/ResUtils\";\n\nconst { ccclass, property } = cc._decorator;\n\n@ccclass\nexport class MessageEntryItemImpl extends ListItemImpl<MessageEntryItemProps> {\n    @property({ type: cc.Label })\n    protected titleLabel: cc.Label = DummyLabel;\n\n    @property({ type: cc.RichText })\n    protected lastMsgLabel: cc.RichText = DummyRichText;\n\n    @property(cc.Sprite)\n    protected iconSprite: cc.Sprite = DummySprite;\n\n    onLoad() {\n        this.bindProp(\"title\", this.titleLabel, \"string\");\n        this.bindProp(\"lastMsg\", this.lastMsgLabel, \"string\");\n        this.bindProp(\"redDot\", this.node.getChildByName(\"RedDot\"), \"active\");\n        this.bindProp(\"icons\", async (value) => {\n            if (value.length == 1) {\n                this.iconSprite.spriteFrame = await ResUtils.loadRes(value[0], cc.SpriteFrame);\n            }\n        });\n    }\n}"]}