# weforms/1.4.3/assets/spa/components/component-table/index.js

weForms – Easy Drag &amp; Drop Contact Form Builder For WordPress, version 1.4.3. 146 lines.

- Page: https://pluginprobe.com/plugins/weforms/1.4.3/code/assets/spa/components/component-table/index.js
- Raw: https://pluginprobe.com/plugins/weforms/1.4.3/raw/assets/spa/components/component-table/index.js
- Modified: 2019-11-18T04:29:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/weforms/1.4.3/code/assets/spa/components/component-table/index.js#L10-L20`.

```javascript
Vue.component( 'wpuf-table', {
    template: '#tmpl-wpuf-component-table',
    mixins: [weForms.mixins.Loading, weForms.mixins.Paginate, weForms.mixins.BulkAction],
    props: {
        has_export: String,
        action: String,
        delete: String,
        id: [String, Number],
        status: [String],
    },

    data() {
        return {
            loading: false,
            columns: [],
            items: [],
            ajaxAction: this.action,
            nonce: weForms.nonce,
            index: 'id',
            bulkDeleteAction: this.delete ? this.delete : 'weforms_form_entry_trash_bulk'
        };
    },

    created() {
        this.fetchData();
    },

    computed: {
        columnLength: function() {
            return Object.keys(this.columns).length;
        },
    },
    methods: {

        fetchData: function() {
            var self = this;

            this.loading = true;

            wp.ajax.send( self.action, {
                data: {
                    id: self.id,
                    page: self.currentPage,
                    status: self.status,
                    _wpnonce: weForms.nonce
                },
                success: function(response) {
                    self.loading = false;
                    self.columns = response.columns;
                    self.items   = response.entries;
                    self.form_title = response.form_title;
                    self.totalItems = response.pagination.total;
                    self.perPage    = response.pagination.per_page;
                    self.totalPage  = response.pagination.pages;

                    self.$emit('ajaxsuccess', response);
                },
                error: function(error) {
                    self.loading = false;
                    alert(error);
                }
            });
        },

        handleBulkAction: function() {
            if ( '-1' === this.bulkAction ) {
                alert( 'Please chose a bulk action to perform' );
                return;
            }

            if ( 'delete' === this.bulkAction ) {
                if ( ! this.checkedItems.length ) {
                    alert( 'Please select atleast one entry to delete.' );
                    return;
                }

                if ( confirm( 'Are you sure to delete the entries?' ) ) {
                    this.deleteBulk();
                }
            }

            if ( 'restore' === this.bulkAction ) {
                if ( ! this.checkedItems.length ) {
                    alert( 'Please select atleast one entry to restore.' );
                    return;
                }

                this.restoreBulk();
            }
        },
        restore: function(entry_id){
            var self = this;
            self.loading = true;

            wp.ajax.send( 'weforms_form_entry_restore', {
                data: {
                    entry_id: entry_id,
                    _wpnonce: weForms.nonce
                },
                success: function(response) {
                    self.loading = false;
                    self.fetchData();
                },
                error: function(error) {
                    self.loading = false;
                    alert(error);
                }
            });
        },
        deletePermanently: function(entry_id){

            if ( confirm( 'Are you sure to delete this entry?' ) ) {

                var self = this;
                self.loading = true;

                wp.ajax.send( 'weforms_form_entry_delete', {
                    data: {
                        entry_id: entry_id,
                        _wpnonce: weForms.nonce
                    },
                    success: function(response) {
                        self.loading = false;
                        self.fetchData();
                    },
                    error: function(error) {
                        self.loading = false;
                        alert(error);
                    }
                });
            }
        }
    },

    watch: {
        id: function(){
            this.fetchData();
        },
        status: function(){
            this.currentPage = 1;
            this.bulkAction = -1;
            this.fetchData();
        },
    }
} );

```
