123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define("/App/Mailbox", ["exports", "BaseApp"], factory);
- } else if (typeof exports !== "undefined") {
- factory(exports, require("BaseApp"));
- } else {
- var mod = {
- exports: {}
- };
- factory(mod.exports, global.BaseApp);
- global.AppMailbox = mod.exports;
- }
- })(this, function (_exports, _BaseApp2) {
- "use strict";
- Object.defineProperty(_exports, "__esModule", {
- value: true
- });
- _exports.run = run;
- _exports.getInstance = getInstance;
- _exports.default = _exports.AppMailbox = void 0;
- _BaseApp2 = babelHelpers.interopRequireDefault(_BaseApp2);
- var AppMailbox =
- /*#__PURE__*/
- function (_BaseApp) {
- babelHelpers.inherits(AppMailbox, _BaseApp);
- function AppMailbox() {
- babelHelpers.classCallCheck(this, AppMailbox);
- return babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(AppMailbox).apply(this, arguments));
- }
- babelHelpers.createClass(AppMailbox, [{
- key: "initialize",
- value: function initialize() {
- babelHelpers.get(babelHelpers.getPrototypeOf(AppMailbox.prototype), "initialize", this).call(this);
- this.$actionBtn = $('.site-action');
- this.$actionToggleBtn = this.$actionBtn.find('.site-action-toggle');
- this.$addMainForm = $('#addMailForm').modal({
- show: false
- });
- this.$content = $('#mailContent'); // states
- this.states = {
- checked: false
- };
- }
- }, {
- key: "process",
- value: function process() {
- babelHelpers.get(babelHelpers.getPrototypeOf(AppMailbox.prototype), "process", this).call(this);
- this.setupActionBtn();
- this.bindListChecked();
- }
- }, {
- key: "listChecked",
- value: function listChecked(checked) {
- var api = this.$actionBtn.data('actionBtn');
- if (checked) {
- api.show();
- } else {
- api.hide();
- }
- this.states.checked = checked;
- }
- }, {
- key: "setupActionBtn",
- value: function setupActionBtn() {
- var _this = this;
- this.$actionToggleBtn.on('click', function (e) {
- if (!_this.states.checked) {
- _this.$addMainForm.modal('show');
- e.stopPropagation();
- }
- });
- }
- }, {
- key: "bindListChecked",
- value: function bindListChecked() {
- var _this2 = this;
- this.$content.on('asSelectable::change', function (e, api, checked) {
- _this2.listChecked(checked);
- });
- }
- }]);
- return AppMailbox;
- }(_BaseApp2.default);
- _exports.AppMailbox = AppMailbox;
- var instance = null;
- function getInstance() {
- if (!instance) {
- instance = new AppMailbox();
- }
- return instance;
- }
- function run() {
- var app = getInstance();
- app.run();
- }
- var _default = AppMailbox;
- _exports.default = _default;
- });
|