Current File : /home/inlingua/public_html/crm/ninexb/wp-content/plugins/tablesome/components/table/controller.php
<?php

namespace Tablesome\Components\Table;

if (!class_exists('\Tablesome\Components\Table\Controller')) {
    class Controller
    {
        public $model;
        public $other_cpt_model;
        public $filter_table_model;
        public $view;

        public function __construct()
        {
            $this->model = new \Tablesome\Components\Table\Model();
            $this->other_cpt_model = new \Tablesome\Components\Table\Other_CPT_Model();
            $this->filter_table_model = new \Tablesome\Components\Table\Filter_Table_Model();
            $this->view = new \Tablesome\Components\Table\View();

            new \Tablesome\Components\CellTypes\File\Controller();
            new \Tablesome\Components\CellTypes\Text();
            new \Tablesome\Components\CellTypes\Textarea();
            new \Tablesome\Components\CellTypes\Number();
            new \Tablesome\Components\CellTypes\Email();
            new \Tablesome\Components\CellTypes\URL();
            new \Tablesome\Components\CellTypes\Email();
            new \Tablesome\Components\CellTypes\Date();
            new \Tablesome\Components\CellTypes\Button();
        }

        public function get_view($args = [])
        {
            $viewProps = $this->get_table_viewProps($args);
            return $this->view->get_table($viewProps);
        }

        public function get_table_level_settings($table_id = 0)
        {
            return [
                "editorState" => $this->model->get_editor_state($table_id),
                "display" => $this->model->get_display_settings($table_id),
                "style" => $this->model->get_style_settings($table_id),
                "access_control" => $this->model->get_access_control_settings($table_id),
            ];
        }

        public function get_table_viewProps($args = [])
        {
            global $tablesome_tables_collection;
            $args['post_id'] = isset($args['post_id']) ? $args['post_id'] : $args['table_id'];

            // error_log('get_table_viewProps: ' . print_r($args, true));

            $utils = new \Tablesome\Includes\Utils();
            $table_id = $args['post_id'];
            $is_premium = tablesome_fs()->can_use_premium_code__premium_only();
            $is_premium_and_not_dashboard_page = $is_premium && !is_admin();

            $load_table_action_meta = $utils->get_workflow_action_meta($table_id);
            $can_load_other_cpt_data = !empty($load_table_action_meta) && $is_premium_and_not_dashboard_page;

            $filter_table_action_meta = $utils->get_workflow_action_meta($table_id, 9);
            $can_filter_table_data = !empty($filter_table_action_meta) && $is_premium_and_not_dashboard_page;

            $load_from_gsheet_action_meta = $utils->get_workflow_action_meta($table_id, 17);
            $load_from_gsheet = !empty($load_from_gsheet_action_meta) && $is_premium;

            // error_log('load_from_gsheet: ' . $load_from_gsheet);
            // $load_from_gsheet = true;
            if ($load_from_gsheet == true) {
                do_action('tablesome_before_table_load', $args);
            }

            // error_log('is_user_admin: ' . is_user_admin());

            if ($can_load_other_cpt_data) {
                $collectionProps = $this->model->get_collectionProps($args);
                $viewProps = $this->other_cpt_model->get_viewProps($collectionProps);

                $collectionProps["pagination"] = false;
                $tablesome_tables_collection[] = $this->other_cpt_model->get_viewProps($collectionProps);
            } elseif ($can_filter_table_data && !current_user_can('administrator')) {
                $collectionProps = $this->model->get_collectionProps($args);
                $collectionProps["table_id"] = $table_id;
                $collectionProps["filter_table_action_meta"] = $filter_table_action_meta;
                $viewProps = $this->filter_table_model->get_viewProps($collectionProps);
                $tablesome_tables_collection[] = $viewProps;
            } else {
                $viewProps = $this->model->get_viewProps($args);
                $args["pagination"] = false;
                $tablesome_tables_collection[] = $viewProps;
            }

            // error_log('viewProps: ' . print_r($viewProps, true));
            return $viewProps;
        }
    } // END CLASS
}