00a88bbb-9bc0-4507-b994-ad17373ad2cc.js 2.74 KB
"use strict";
cc._RF.push(module, '00a88u7m8BFB7mUrRc3OtLM', 'ShareSuitViewImpl');
// script/game/ui/view/impl/bedroom/ShareSuitViewImpl.ts

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
    var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
    if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
    else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
    return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ShareSuitViewImpl = void 0;
const CCDummyObjects_1 = require("../../../../../common/CCDummyObjects");
const CCViewBase_1 = require("../../../../../common/classbase/CCViewBase");
const PresenterCCViewFactory_1 = require("../../../PresenterCCViewFactory");
const ShareSuitView_1 = require("../../type/ShareSuitView");
const { ccclass, property } = cc._decorator;
let ShareSuitViewImpl = /** @class */ (() => {
    let ShareSuitViewImpl = class ShareSuitViewImpl extends CCViewBase_1.CCPureView {
        constructor() {
            super(...arguments);
            this.shareNode = CCDummyObjects_1.DummyNode;
            this.shareSuitViewBgSprite = CCDummyObjects_1.DummySprite;
            this.shareSuitViewRolePortraitSprite = CCDummyObjects_1.DummySprite;
        }
        getViewNode() {
            return this.node;
        }
        getShareNode() {
            return this.shareNode;
        }
        getShareSuitViewBgSprite() {
            return this.shareSuitViewBgSprite;
        }
        getShareSuitViewRolePortraitSprite() {
            return this.shareSuitViewRolePortraitSprite;
        }
        onCloseBtnClick() {
            this._props.onCloseBtnClickCallback();
        }
    };
    __decorate([
        property({ type: cc.Node, displayName: "ShareSuitView share node" })
    ], ShareSuitViewImpl.prototype, "shareNode", void 0);
    __decorate([
        property({ type: cc.Sprite, displayName: "ShareSuitView background sprite" })
    ], ShareSuitViewImpl.prototype, "shareSuitViewBgSprite", void 0);
    __decorate([
        property({ type: cc.Sprite, displayName: "ShareSuitViewRolePortrait sprite" })
    ], ShareSuitViewImpl.prototype, "shareSuitViewRolePortraitSprite", void 0);
    ShareSuitViewImpl = __decorate([
        ccclass,
        PresenterCCViewFactory_1.RegView(ShareSuitView_1.ShareSuitViewType, "prefab/ui/bedroomCat/ShareSuitView")
    ], ShareSuitViewImpl);
    return ShareSuitViewImpl;
})();
exports.ShareSuitViewImpl = ShareSuitViewImpl;

cc._RF.pop();