| /*
 * Pim
 * Free Extension
 * Copyright (c) TreoLabs GmbH
 * Copyright (c) Kenner Soft Service GmbH
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
Espo.define('pim:views/category/record/list-tree', ['view', 'lib!JsTree'], function (Dep) {
    return Dep.extend({
        _template: '',
        categoryList: null,
        categoryTree: null,
        resizeEventName: null,
        setup() {
            Dep.prototype.setup.call(this);
            this.categoryList = [];
            this.categoryTree = [];
            this.wait(true);
            this.fetchCategoriesList(() => {
                this.wait(false);
            });
            this.resizeEventName = `resize.drag-n-drop-tree-${this.cid}`;
            this.listenToOnce(this, 'remove', () => {
                $(window).off(this.resizeEventName)
            });
        },
        fetchCategoriesList(callback) {
            this.listenToOnce(this.collection, 'update', (collection, o) => {
                if (o.changes.merged.length) {
                    this.collection.lengthCorrection += o.changes.merged.length;
                }
            });
            this.collection.fetch({remove: false, more: true}).then(() => {
                if (this.collection.total > this.collection.length + this.collection.lengthCorrection || this.collection.total === -1) {
                    this.fetchCategoriesList(callback);
                } else {
                    this.setupTree();
                    this.wait(false);
                }
            });
        },
        setupTree() {
            this.collection.models.forEach(model => this.categoryList.push(model.attributes));
            this.categoryTree = this.getCategoryTree(this.categoryList);
        },
        getSelectAttributeList: function (callback) {
            callback([]);
        },
        afterRender() {
            Dep.prototype.afterRender.call(this);
            this.$el.tree({
                data: this.categoryTree,
                dragAndDrop: window.innerWidth >= 768,
                useContextMenu: false,
                closedIcon: $('<i class="fa fa-angle-right"></i>'),
                openedIcon: $('<i class="fa fa-angle-down"></i>')
            });
            $(window).off(this.resizeEventName).on(this.resizeEventName, () => {
                this.$el.tree('setOption', 'dragAndDrop', window.innerWidth >= 768);
            });
            this.$el.on('tree.move', e => {
                e.preventDefault();
                let moveInfo = e.move_info;
                let data = {};
                if (moveInfo.position === 'inside') {
                    data = {
                        categoryParentId: moveInfo.target_node.id,
                        categoryParentName: moveInfo.target_node.name
                    };
                } else if (moveInfo.target_node.parent.id) {
                    data = {
                        categoryParentId: moveInfo.target_node.parent.id,
                        categoryParentName: moveInfo.target_node.parent.name,
                    };
                } else {
                    data = {
                        categoryParentId: null,
                        categoryParentName: null,
                    };
                }
                this.ajaxPatchRequest(`${this.collection.name}/${moveInfo.moved_node.id}`, data).then(response => {
                    moveInfo.do_move();
                });
            });
        },
        getCategoryTree(categoryList) {
            let rootCategories = categoryList.filter(item => !item.categoryRoute);
            let getParentsWithChildren = (parents) => {
                if (parents.length) {
                    let children = [];
                    categoryList.forEach(item => {
                        if (parents.find(parent => parent.id === item.categoryParentId)) {
                            children.push(item);
                        }
                    });
                    if (children.length) {
                        children = getParentsWithChildren(children);
                    }
                    children.sort((a, b) => {
                        if (a.children && !b.children) {
                            return -1;
                        }
                        if (!a.children && b.children) {
                            return 1;
                        }
                        return 0;
                    });
                    children.forEach(child => {
                        let parent = parents.find(parent => parent.id === child.categoryParentId);
                        if (parent) {
                            parent.children = parent.children || [];
                            parent.children.push(child);
                        }
                    });
                }
                return parents;
            };
            return getParentsWithChildren(rootCategories);
        },
    });
});
 |