123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define("/App/Media", ["exports", "BaseApp"], factory);
- } else if (typeof exports !== "undefined") {
- factory(exports, require("BaseApp"));
- } else {
- var mod = {
- exports: {}
- };
- factory(mod.exports, global.BaseApp);
- global.AppMedia = mod.exports;
- }
- })(this, function (_exports, _BaseApp2) {
- "use strict";
- Object.defineProperty(_exports, "__esModule", {
- value: true
- });
- _exports.run = run;
- _exports.getInstance = getInstance;
- _exports.default = _exports.AppMedia = void 0;
- _BaseApp2 = babelHelpers.interopRequireDefault(_BaseApp2);
- var AppMedia =
- /*#__PURE__*/
- function (_BaseApp) {
- babelHelpers.inherits(AppMedia, _BaseApp);
- function AppMedia() {
- babelHelpers.classCallCheck(this, AppMedia);
- return babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(AppMedia).apply(this, arguments));
- }
- babelHelpers.createClass(AppMedia, [{
- key: "initialize",
- value: function initialize() {
- babelHelpers.get(babelHelpers.getPrototypeOf(AppMedia.prototype), "initialize", this).call(this);
- this.$arrGrid = $('#arrangement-grid');
- this.$arrList = $('#arrangement-list');
- this.$actionBtn = $('.site-action');
- this.$actionToggleBtn = this.$actionBtn.find('.site-action-toggle');
- this.$content = $('#mediaContent');
- this.$fileupload = $('#fileupload'); // states
- this.states = {
- list: false,
- checked: false
- };
- }
- }, {
- key: "process",
- value: function process() {
- babelHelpers.get(babelHelpers.getPrototypeOf(AppMedia.prototype), "process", this).call(this);
- this.steupArrangement();
- this.setupActionBtn();
- this.bindListChecked();
- this.bindAction();
- this.bindDropdownAction();
- }
- }, {
- key: "list",
- value: function list(active) {
- if (active) {
- this.$arrGrid.removeClass('active');
- this.$arrList.addClass('active');
- $('.media-list').removeClass('is-grid').addClass('is-list');
- $('.media-list>ul>li').removeClass('animation-scale-up').addClass('animation-fade');
- } else {
- this.$arrList.removeClass('active');
- this.$arrGrid.addClass('active');
- $('.media-list').removeClass('is-list').addClass('is-grid');
- $('.media-list>ul>li').removeClass('animation-fade').addClass('animation-scale-up');
- }
- this.states.list = active;
- }
- }, {
- key: "checked",
- value: function checked(_checked) {
- var api = this.$actionBtn.actionBtn().data('actionBtn');
- if (_checked) {
- api.show();
- } else {
- api.hide();
- }
- this.states.checked = _checked;
- }
- }, {
- key: "steupArrangement",
- value: function steupArrangement() {
- var self = this;
- this.$arrGrid.on('click', function () {
- if ($(this).hasClass('active')) {
- return;
- }
- self.list(false);
- });
- this.$arrList.on('click', function () {
- if ($(this).hasClass('active')) {
- return;
- }
- self.list(true);
- });
- }
- }, {
- key: "setupActionBtn",
- value: function setupActionBtn() {
- var _this = this;
- this.$actionToggleBtn.on('click', function (e) {
- if (!_this.states.checked) {
- _this.$fileupload.trigger('click');
- e.stopPropagation();
- }
- });
- }
- }, {
- key: "bindListChecked",
- value: function bindListChecked() {
- var _this2 = this;
- this.$content.on('asSelectable::change', function (e, api, checked) {
- _this2.checked(checked);
- });
- }
- }, {
- key: "bindDropdownAction",
- value: function bindDropdownAction() {
- $('.info-wrap>.dropdown').on('show.bs.dropdown', function () {
- $(this).closest('.media-item').toggleClass('item-active');
- }).on('hidden.bs.dropdown', function () {
- $(this).closest('.media-item').toggleClass('item-active');
- });
- $('.info-wrap .dropdown-menu').on('`click', function (e) {
- e.stopPropagation();
- });
- }
- }, {
- key: "bindAction",
- value: function bindAction() {
- $('[data-action="trash"]', '.site-action').on('click', function () {
- console.log('trash');
- });
- $('[data-action="download"]', '.site-action').on('click', function () {
- console.log('download');
- });
- }
- }]);
- return AppMedia;
- }(_BaseApp2.default);
- _exports.AppMedia = AppMedia;
- var instance = null;
- function getInstance() {
- if (!instance) {
- instance = new AppMedia();
- }
- return instance;
- }
- function run() {
- var app = getInstance();
- app.run();
- }
- var _default = AppMedia;
- _exports.default = _default;
- });
|