HEX
Server: Apache
System: Linux ecngx285.inmotionhosting.com 4.18.0-553.79.1.lve.el8.x86_64 #1 SMP Wed Oct 15 17:59:35 UTC 2025 x86_64
User: zeusxp5 (3862)
PHP: 8.3.28
Disabled: NONE
Upload Files
File: /home/zeusxp5/in.kamilleinc.com/wp-content/plugins/weforms/assets/js/spa-mixins.js
'use strict';

/* ./assets/spa/mixins/bulk-action.js */

weForms.mixins.BulkAction = {
    data: function data() {
        return {
            bulkAction: '-1',
            checkedItems: []
        };
    },

    computed: {
        selectAll: {
            get: function get() {
                return this.items ? this.checkedItems.length == this.items.length : false;
            },

            set: function set(value) {
                var selected = [],
                    self = this;

                if (value) {
                    this.items.forEach(function (item) {
                        if (item[self.index] !== undefined) {
                            selected.push(item[self.index]);
                        } else {
                            selected.push(item.id);
                        }
                    });
                }

                this.checkedItems = selected;
            }
        }
    },

    methods: {
        deleteBulk: function deleteBulk() {
            var self = this;

            self.loading = true;

            wp.ajax.send(self.bulkDeleteAction, {
                data: {
                    permanent: this.status == 'trash' ? 1 : 0,
                    ids: this.checkedItems,
                    _wpnonce: weForms.nonce
                },
                success: function success(response) {
                    self.checkedItems = [];
                    self.fetchData();
                },
                error: function error(_error) {
                    alert(_error);
                },

                complete: function complete(resp) {
                    self.loading = false;
                }
            });
        },
        restoreBulk: function restoreBulk() {
            var self = this;

            self.loading = true;

            wp.ajax.send('weforms_form_entry_restore_bulk', {
                data: {
                    ids: this.checkedItems,
                    _wpnonce: weForms.nonce
                },
                success: function success(response) {
                    self.checkedItems = [];
                    self.fetchData();
                },
                error: function error(_error2) {
                    alert(_error2);
                },
                complete: function complete(resp) {
                    self.loading = false;
                }
            });
        }
    }
};

/* ./assets/spa/mixins/cookie.js */
weForms.mixins.Cookie = {

    methods: {

        setCookie: function setCookie(cname, cvalue, exdays) {
            var d = new Date();
            d.setTime(d.getTime() + exdays * 24 * 60 * 60 * 1000);
            var expires = "expires=" + d.toUTCString();
            document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
        },

        getCookie: function getCookie(cname) {
            var name = cname + "=";
            var decodedCookie = decodeURIComponent(document.cookie);
            var ca = decodedCookie.split(';');
            for (var i = 0; i < ca.length; i++) {
                var c = ca[i];
                while (c.charAt(0) == ' ') {
                    c = c.substring(1);
                }
                if (c.indexOf(name) == 0) {
                    return c.substring(name.length, c.length);
                }
            }
            return "";
        }
    }
};

/* ./assets/spa/mixins/loading.js */
weForms.mixins.Loading = {
    watch: {
        loading: function loading(value) {
            if (value) {
                NProgress.configure({ parent: '#wpadminbar' });
                NProgress.start();
            } else {
                NProgress.done();
            }
        }

        /* ./assets/spa/mixins/paginate.js */
    } };weForms.mixins.Paginate = {
    data: function data() {
        return {
            totalItems: 0,
            totalPage: 1,
            currentPage: 1,
            pageNumberInput: 1
        };
    },

    methods: {
        isFirstPage: function isFirstPage() {
            return this.currentPage == 1;
        },

        isLastPage: function isLastPage() {
            return this.currentPage == this.totalPage;
        },

        goFirstPage: function goFirstPage() {
            this.currentPage = 1;
            this.pageNumberInput = this.currentPage;

            this.goToPage();
        },

        goLastPage: function goLastPage() {
            this.currentPage = this.totalPage;
            this.pageNumberInput = this.currentPage;

            this.goToPage();
        },

        goToPage: function goToPage(direction) {
            if (direction == 'prev') {
                this.currentPage--;
            } else if (direction == 'next') {
                this.currentPage++;
            } else {
                if (!isNaN(direction) && direction <= this.totalPage) {
                    this.currentPage = direction;
                }
            }

            this.pageNumberInput = this.currentPage;
            this.fetchData();
        }
    }
};

/* ./assets/spa/mixins/tabs.js */
weForms.mixins.Tabs = {

    methods: {
        makeActive: function makeActive(val) {
            this.activeTab = val;
        },

        isActiveTab: function isActiveTab(val) {
            return this.activeTab === val;
        }
    }
};