80286bc2-d40a-4efc-a507-1135f17396a0.js 3.16 KB
"use strict";
cc._RF.push(module, '80286vC1ApO/KUHETXxc5ag', 'LikeLevelSubviewImpl');
// script/game/ui/view/impl/LikeLevelSubviewImpl.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.LikeLevelSubviewImpl = void 0;
const CCDummyObjects_1 = require("../../../../common/CCDummyObjects");
const CCViewBase_1 = require("../../../../common/classbase/CCViewBase");
const PresenterCCViewFactory_1 = require("../../PresenterCCViewFactory");
const LikeLevelSubview_1 = require("../type/LikeLevelSubview");
const { ccclass, property } = cc._decorator;
let LikeLevelSubviewImpl = /** @class */ (() => {
    let LikeLevelSubviewImpl = class LikeLevelSubviewImpl extends CCViewBase_1.CCPureSubview {
        constructor() {
            super(...arguments);
            //#region editor bindings
            this.bar = CCDummyObjects_1.DummySprite;
            this.label = CCDummyObjects_1.DummyLabel;
            this.graceNode = CCDummyObjects_1.DummyNode;
            this.likevalue = CCDummyObjects_1.DummyLabel;
        }
        //#endregion
        onLoad() {
            super.onLoad();
            this.likevalue = this.node.getChildByName("likevalue").getComponent(cc.Label);
            this.bindProp("level", v => {
                this.label.string = v + "";
            });
            this.bindProp("percent", v => {
                this.bar.fillRange = v;
            });
            this.bindProp("visible", this.node, "active");
            this.bindProp("like", (value) => {
                if (value === "") {
                    this.likevalue.node.active = false;
                }
                else {
                    this.likevalue.node.active = true;
                    this.likevalue.string = value;
                }
            });
        }
        onEnable() {
            cc.tween(this.graceNode)
                .repeatForever(cc.tween()
                .to(0.8, { scale: 1.15 }, { easing: 'sineInOut' })
                .to(0.8, { scale: 1 }, { easing: 'sineInOut' }))
                .start();
        }
    };
    __decorate([
        property(cc.Sprite)
    ], LikeLevelSubviewImpl.prototype, "bar", void 0);
    __decorate([
        property(cc.Label)
    ], LikeLevelSubviewImpl.prototype, "label", void 0);
    __decorate([
        property(cc.Node)
    ], LikeLevelSubviewImpl.prototype, "graceNode", void 0);
    LikeLevelSubviewImpl = __decorate([
        ccclass,
        PresenterCCViewFactory_1.RegSubview(LikeLevelSubview_1.LikeLevelViewType)
    ], LikeLevelSubviewImpl);
    return LikeLevelSubviewImpl;
})();
exports.LikeLevelSubviewImpl = LikeLevelSubviewImpl;

cc._RF.pop();