-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunc.php
executable file
·271 lines (212 loc) · 7.32 KB
/
func.php
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<?php
function database_service($tblname){
$txt = file_get_contents('templates/database.service.ts');
// echo $txt;
$arr1=[];
$loc1='
//-----LOC0--------//
export interface '.$tblname.' {
id: number,
maso: string,
x: number,
y: number,
maso_nguoidung: string,
takedate: string,
trangthai: number,
thuoctinh: string,
gpsinfo: string
}';
$loc2='
//-----LOC1--------//
'.$tblname.'_arr = new BehaviorSubject([]);';
$loc3='
//-----LOC2--------//
this.load'.$tblname.'();';
$loc4="
//-----LOC3--------//
get".$tblname."(): Observable<".$tblname."[]> {
return this.".$tblname."_arr.asObservable();
}
load".$tblname."(){
return this.table_to_array_order('".$tblname."','takedate','ASC').then(data => {
let ".$tblname."_arr: ".$tblname."[] = [];
if (data.rows.length > 0) {
for (let i = 0; i < data.rows.length; i++) {
".$tblname."_arr.push(data.rows.item(i));
}
}
this.".$tblname."_arr.next(".$tblname."_arr);
});
}";
array_push($arr1,$loc1,$loc2,$loc3,$loc4);
// Thêm nội dung
for($i=0;$i<count($arr1);$i++){
$txt=str_replace("//-----LOC".$i."--------//",$arr1[$i],$txt);
}
echo $txt;
}
function app_routing_module($tblname){
$txt = file_get_contents('templates/app-routing.module.ts');
$path=str_replace('_','-',$tblname);
$txt = str_replace("path: 'view-".$path."', loadChildren","path: 'list-".$path."/:maso', loadChildren",$txt);
echo $txt;
}
function app_component_ts($tblname){
$path=str_replace('_','-',$tblname);
$txt = file_get_contents('templates/app.component.ts');
$loc0="
//-----LOC0--------//
public ".$tblname."_collect = [
{
title: 'Danh sách thu thập',
url: 'list-".$path."',
icon: 'list'
},
{
title: 'Thu thập dữ liệu',
url: '/add-".$path."',
icon: 'add-circle'
}
];";
$txt=str_replace("//-----LOC0--------//",$loc0,$txt);
echo $txt;
}
function app_component_html($tblname,$title){
$txt = file_get_contents('templates/app.component.html');
$loc0='
<!-- //-----LOC0--------// -->
<ng-container *ngIf="login.check_permissions(\'mb_trongtrot_dichbenh\',\'xem\')">
<ion-item-divider>
<ion-label color="primary">
<b>'.$title.'</b>
</ion-label>
</ion-item-divider>
<ion-menu-toggle auto-hide="false" *ngFor="let p of '.$tblname.'_collect">
<ion-item [routerDirection]="\'root\'" [routerLink]="[p.url]">
<ion-icon slot="start" [name]="p.icon"></ion-icon>
<ion-label>
{{p.title}}
</ion-label>
</ion-item>
</ion-menu-toggle>
</ng-container>';
$txt=str_replace("<!-- //-----LOC0--------// -->",$loc0,$txt);
echo $txt;
}
function home_page_html($tblname,$title){
$txt = file_get_contents('templates/home.page.html');
$path=str_replace('_','-',$tblname);
$loc0='
<!-- //-----LOC0--------// -->
<ion-card-header>
<ion-card-title>'.$title.'</ion-card-title>
</ion-card-header>
<ion-card-content>
<ion-item button (click)="db.go2page(\'list-'.$path.'\')">
<ion-icon name="list" slot="start"></ion-icon>
<ion-label>Số liệu đã thu thập</ion-label>
<ion-button fill="outline" slot="end">Xem</ion-button>
</ion-item>
<ion-item button (click)="db.go2page(\'add-'.$path.'\')">
<ion-icon name="add-circle" slot="start"></ion-icon>
<ion-label>Thêm số liệu</ion-label>
<ion-button fill="outline" slot="end">Thêm</ion-button>
</ion-item>
</ion-card-content>';
$txt=str_replace("<!-- //-----LOC0--------// -->",$loc0,$txt);
echo $txt;
}
function update_sql($tblname){
$txt = file_get_contents('templates/db_v2_min.sql');
$newtbl='CREATE TABLE IF NOT EXISTS "'.$tblname.'" ( "id" integer NULL, "maso" text NOT NULL PRIMARY KEY, "x" real, "y" real, "maso_nguoidung" text NULL, "takedate" text NULL, "trangthai" integer NULL, "thuoctinh" text NULL );';
echo $txt.$newtbl;
}
function add_page_ts($tblname,$attr1){
$txt = file_get_contents('templates/add-bieughi-n1.page.ts');
$path=str_replace('_','-',$tblname);
$upcase=str_replace('_',' ',$tblname);
$upcase=ucwords($upcase);
$upcase=str_replace(' ','',$upcase);
// @Component
$txt = str_replace('bieughi-n1',$path,$txt);
// bieughi_n1
$txt = str_replace('bieughi_n1',$tblname,$txt);
// AddBieughiN1Page
$txt = str_replace('AddBieughiN1Page','Add'.$upcase.'Page',$txt);
// Tên hiện trong thông báo insert
$txt = str_replace('Tên tuyến điều tra, giám sát',$attr1,$txt);
echo $txt;
}
function add_page_html($tblname,$title){
$txt = file_get_contents('templates/add-bieughi-n1.page.html');
$path=str_replace('_','-',$tblname);
$upcase=str_replace('_',' ',$tblname);
$upcase=ucwords($upcase);
$upcase=str_replace(' ','',$upcase);
// <ion-title>Số lượng voi</ion-title>
$txt = str_replace('Số lượng voi',$title,$txt);
// bieughi_n1
$txt = str_replace('bieughi_n1',$tblname,$txt);
echo $txt;
}
function list_page_ts($tblname){
$txt = file_get_contents('templates/list-bieughi-n1.page.ts');
$path=str_replace('_','-',$tblname);
$upcase=str_replace('_',' ',$tblname);
$upcase=ucwords($upcase);
$upcase=str_replace(' ','',$upcase);
// @Component
$txt = str_replace('bieughi-n1',$path,$txt);
// bieughi_n1
$txt = str_replace('bieughi_n1',$tblname,$txt);
// AddBieughiN1Page
$txt = str_replace('ListBieughiN1Page','List'.$upcase.'Page',$txt);
echo $txt;
}
function list_page_html($tblname,$title,$attr1,$attr2,$attr3,$attr4){
$txt = file_get_contents('templates/list-bieughi-n1.page.html');
$path=str_replace('_','-',$tblname);
$upcase=str_replace('_',' ',$tblname);
$upcase=ucwords($upcase);
$upcase=str_replace(' ','',$upcase);
// <ion-title>Số lượng voi</ion-title>
$txt = str_replace('Số lượng voi',$title,$txt);
// bieughi_n1
$txt = str_replace('bieughi_n1',$tblname,$txt);
// bieughi-n1
$txt = str_replace('bieughi-n1',$path,$txt);
$txt = str_replace('Tên tuyến điều tra, giám sát',$attr1,$txt);
$txt = str_replace('Thời gian bắt đầu',$attr2,$txt);
$txt = str_replace('Tên khu vực điều tra, giám sát',$attr3,$txt);
$txt = str_replace('Ghi chú',$attr4,$txt);
echo $txt;
}
function view_page_ts($tblname){
$txt = file_get_contents('templates/view-bieughi-n1.page.ts');
$path=str_replace('_','-',$tblname);
$upcase=str_replace('_',' ',$tblname);
$upcase=ucwords($upcase);
$upcase=str_replace(' ','',$upcase);
// @Component
$txt = str_replace('bieughi-n1',$path,$txt);
// bieughi_n1
$txt = str_replace('bieughi_n1',$tblname,$txt);
// AddBieughiN1Page
$txt = str_replace('ViewBieughiN1Page','View'.$upcase.'Page',$txt);
echo $txt;
}
function view_page_html($tblname,$title){
$txt = file_get_contents('templates/view-bieughi-n1.page.html');
$path=str_replace('_','-',$tblname);
$upcase=str_replace('_',' ',$tblname);
$upcase=ucwords($upcase);
$upcase=str_replace(' ','',$upcase);
// Chi tiết điểm thu thập
$txt = str_replace('Chi tiết điểm thu thập',$title,$txt);
// bieughi_n1
$txt = str_replace('bieughi_n1',$tblname,$txt);
// bieughi-n1
$txt = str_replace('bieughi-n1',$path,$txt);
echo $txt;
}
?>