File size: 9,960 Bytes
e084a2e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32809e3
 
 
 
e084a2e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<body>
    
    {% include 'sidepane.html' %}


    <div class="wrapper">
        <section class="main-header" style="border-bottom: none;border-top: none;">
            <div class="container-fluid">
                <div id="company-block" class="form-group left-align" style="display: none;">
                    <label for="company" class="ml-3" style="display: inline-block; margin-right: 10px;">Select the Company Name
                        to view the details <span class="text-danger">*</span>
                    </label>
                    <select type="text" id="company" name="company" class="ml-3 form-control"
                        style="display: inline-block; width: 20%;" required>
                        <option value="" selected>Select</option>
                    </select>
                </div>
                
                <div class="row">
                    <div class="col-lg-4 col-6">
                        <div class="small-box bg-info">
                            <div class="inner margin-left:10px;">
                                <h3 id="knowledgeBaseCount">{{table_count_of_each_table.knowledge_base}}</h3>
                                <h4>KnowledgeBase</h4>
                            </div>
                            <div class="icon">
                                <i class="ion ion-bag"></i>
                            </div>
                        </div>
                    </div>

                    <div class="col-lg-4 col-6">
                        <div class="small-box bg-success">
                            <div class="inner">
                                <h3 id="dataConnectorsCount">{{table_count_of_each_table.data_connectors}}</h3>
                                <h4>Data connectors</h4>
                            </div>
                            <div class="icon">
                                <i class="ion ion-stats-bars"></i>
                            </div>
                        </div>
                    </div>

                    <div class="col-lg-4 col-6">
                        <div class="small-box bg-warning">
                            <div class="inner">
                                <h3 id="apiConnectorsCount">{{table_count_of_each_table.api_connectors}}</h3>
                                <h4>API Connectors</h4>
                            </div>
                            <div class="icon">
                                <i class="ion ion-person-add"></i>
                            </div>
                        </div>
                    </div>

                    <div class="col-lg-4 col-6">
                        <div class="small-box bg-warning">
                            <div class="inner">
                                <h3 id="promptTemplatesCount">{{table_count_of_each_table.prompt_templates}}</h3>
                                <h4>Prompt_Templates</h4>
                            </div>
                            <div class="icon">
                                <i class="ion ion-person-add"></i>
                            </div>
                        </div>
                    </div>

                </div>
            </div>
        </section>
    </div>

    <input type="hidden" id="userRole" name="userRole" value={{role}}>
    <input type="hidden" id="company_id" name="company_id" value={{company_id}}>
    <input type="hidden" id="username" name="username" value={{username}}>
    <input type="hidden" id="company_name" name="company_name" value={{company_name}}>
   
        {% include 'footer.html' %}
    
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/adminlte.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
    <script>
        window.addEventListener('pageshow', function (event) {
            if (event.persisted || (window.performance && window.performance.navigation.type === 2)) {
                window.location.reload();
            }
        });


        document.addEventListener('DOMContentLoaded', function () {
            var role1 = document.getElementById("userRole").value;
            var company_id1 = document.getElementById("company_id").value;
            var company_name1=document.getElementById("company_name").value;
            var username1=document.getElementById("username").value;
            console.log("companyid in dasshboard",username1);
             sessionStorage.setItem('userRole', role1);
            // sessionStorage.setItem('siderole',role1);
            // sessionStorage.setItem('sidecompanyId',company_id1);
            sessionStorage.setItem('company_id', company_id1);
            sessionStorage.setItem('company_name',company_name1);
            sessionStorage.setItem('username',username1);
            if (!role1) {
                var roleFromInput = sessionStorage.getItem('userRole');
                sessionStorage.setItem('userRole', roleFromInput);
                console.log("Role set in sessionStorage:", roleFromInput);
            } else {
                sessionStorage.setItem('userRole', role1);
                console.log("Retrieved user role from input:", role1); // Debugging
            }
            if (role1 === "superadmin") {
                document.getElementById('company-block').style.display = 'block';
                fetchCompanies();
            }

        });
        document.getElementById('company').addEventListener('change', async function () {
            const selectedCompany = this.value;
            sessionStorage.setItem("company_name",selectedCompany);
            if (selectedCompany!== "Select") {
                try {
                    const response = await fetch(`/api/company_id?company_name=${encodeURIComponent(selectedCompany)}`);
                    if (!response.ok) {
                        contentSection.style.display = 'none';
                        displayErrorMessage("Document details do not exist for this company. Please fill in the details.");
                        throw new Error('Network response was not ok');
                    }
                    const data = await response.json();
                    console.log('data returned', data);
                    const companyId = data.company_id;
                    sessionStorage.setItem("company_id",companyId);
                    console.log("company id for superadmin", company_id);
                     //document.getElementById('company_id').value = companyId;                  
             
            
                if (companyId) {
                    try {
                        const countResponse = await fetch(`/api/company_record_count/${companyId}`);
                        if (!countResponse.ok) {
                            throw new Error('Network response was not ok');
                        }
                        const countData = await countResponse.json();
                        console.log('Count data:', countData); // Log the response data
                        updateRecordCounts(countData.table_counts);
                    } catch (error) {
                        console.error('Error fetching record counts:', error);
                    }
                } else {
                    clearRecordCounts();
                }
            } catch (error) {
                    console.error('No details for this company ID or data documents:', error);
                    // displayEmptyTable();

                    displayErrorMessage("company details do not exist for this company.");
                   
                }
            }
            });


        function updateRecordCounts(counts) {
            // Update the counts displayed in the dashboard
            document.getElementById('knowledgeBaseCount').textContent = counts.knowledge_base || 0;
            document.getElementById('dataConnectorsCount').textContent = counts.data_connectors || 0;
            document.getElementById('apiConnectorsCount').textContent = counts.api_connectors || 0;
            document.getElementById('promptTemplatesCount').textContent = counts.prompt_templates || 0;
        }

        function clearRecordCounts() {
            document.getElementById('knowledgeBaseCount').textContent = 0;
            document.getElementById('dataConnectorsCount').textContent = 0;
            document.getElementById('apiConnectorsCount').textContent = 0;
            document.getElementById('promptTemplatesCount').textContent = 0;
        }


        async function fetchCompanies() {
            try {
                const response = await fetch('/api/companies');
                if (!response.ok) {
                    throw new Error('Network response was not ok');
                }
                const data = await response.json();
                displayCompanies(data.companies);
            } catch (error) {
                console.error('Error fetching companies:', error);
            }
        }

        function displayCompanies(companies) {
            const companySelect = document.getElementById('company');
            companySelect.innerHTML = '<option value="" selected>Select</option>'; // Reset the dropdown
            companies.forEach(company => {
                const option = document.createElement('option');
                option.value = company.name;
                option.textContent = company.name;
                companySelect.appendChild(option);
            });
        }
        function clearFormFields() {
            document.getElementById('APIName').value = "";
            document.getElementById('APIEndpoint').value = "";
            document.getElementById('Auth_Bearer').value = "";
            document.getElementById('Inputjson').value = "";
            document.getElementById('OutputJson').value = "";
            document.getElementById('Description').value = "";
        }


    </script>
</body>

</html>