summaryrefslogtreecommitdiff
path: root/public/app/controllers/JsonToForm.php
blob: db8af11475ff9e3a9350fd88bb0f90ee4f31622e (plain)
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<?php
namespace app\controllers;

class JsonToForm
{
    /**
     * ## Help Constants and Functions -----------------------------------------
     * /////////////////////////////////////////////////////////////////////////
     *
     * 
     * Cache fields options (json format) //////////////////////////////////////
     * -------------------------------------------------------------------------
     *   $formJSON = file_get_contents('config/kallassa.json');
     *   define("FORMJSON", $formJSON);
     *
     * Cache CCODE attributes (json format) ////////////////////////////////////
     * -------------------------------------------------------------------------
     *   $codeJSON = file_get_contents('config/ccode.json');
     *   define("CODEJSON", $codeJSON);
     *
     * Parse anythig from a field //////////////////////////////////////////////
     * ARGS:
     *    $fkey   = keyname (as in json fields oprions)
     *    $inp    = input value (string)
     * RETURN: array(
     *    'label' = field label,
     *    'multi' = (true|false) is multiple choice (select|radio|check) or not,
     *    'value' = human readable value (or array of values if multi)
     * ) -----------------------------------------------------------------------
     */
    public static function parse_any($fkey, $inp ="")
    {
         $formARRAY = json_decode(FORMJSON);

         foreach ($formARRAY as $key => $section) {
            foreach ($section->childs as $kk => $field) {

                // find the field
                if ($field->nam == $fkey) {

                    $values = array();    // human readble values if select (comma separated)

                    if ($field->typ == 'select') {
                    $multi = true;

                    if ($inp !='') {
                        $codes = explode(",", $inp);    // split coded values
                        foreach ($field->opt as $kkk => $v) {
                            if (in_array($v->id, $codes)) {   // check if option is in array
                                $values[] = ($field->nam == 'ccode') ? ($v->id.": ".$v->tag) : $v->tag;
                            }
                        }
                    }

                    }
                    else $multi = false;

                    // return everything in an array
                    return  array(
                            'label' => $field->lab,
                            'multi' => $multi,
                            'value' => ($multi ? $values : $inp)
                            );
                }
            }
         }

        // if not escaped already, then name return same
        return    array('label' => $fkey, 'multi' => false, 'value' => $inp );
    }



    // Parse anythig from ccode
    public static function parse_ccode($ckey)
    {
        $ccARRAY = json_decode(CODEJSON);

        foreach ($ccARRAY as $key => $val) {
            // find the field
            if ($val->id == $ckey) {
                // return everything in an array
                return  $val;
            }
        }
    }



    // Preview Local Datetime //////////////////////////////////////////////////
    // (in Greek format and names )
    // -------------------------------------------------------------------------
    public static function local_dt($t)
    {
        $day  = array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
        $dayL = array("Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ");
        $mon  = array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
        $monL = array("Ιαν", "Φεβ", "Μαρ", "Απρ", "Μαϊ", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ");
        $tm   = array("am", "pm");
        $tmL  = array("πμ", "μμ");
        $r = date("D. j M. Y, h:i:sa", $t);
        $r = str_replace($day, $dayL, $r);
        $r = str_replace($mon, $monL, $r);
        $r = str_replace($tm, $tmL, $r);
        return $r;
    }


    // Part of string
    // UTF-8 SAFE
    public static function str_part($str, $len)
    {
        return (mb_strlen($str) > $len) ? mb_substr($str, 0, $len-1) ."…" : $str;
    }


    /** json_form
     * -------------------------------------------------------------------------
     * construct a form (html, javasctipt)
     * from a json designer
     * 
     * @param stdClass $formJson : form descriptor
     * 
     * @param array $require_identity : array of properties and values;
     *    they identify the record; injected into form as hidden fields
     * 
     * @return array [ html=>(string), init_js=>(string), values_js=>String ]
     * -------------------------------------------------------------------------
     */
    public static function json_form($formJson, $require_identity = [])
    {
        // $formJson = json_decode(json_encode($form));

        $default_outer  = $formJson->defaults->outer_class ?? '';
        $default_inner  = $formJson->defaults->inner_class ?? '';
        $default_type   = $formJson->defaults->type ?? 'text';
        $default_values = $formJson->defaults ?? ((object) ['nothing' => true]);

        // TODO handle $form->defaults->source;

        // Script Workflow:
        // ---------------------------------------------------------------------
        // 1. read fields options
        // 2. generate HTML
        // 3. generate JS needed

        // the UI
        // ---------------------------------------------------------------------
        // Fields are grouped in sections
        // These sections presented in tabs (or accordion if mobile device)
        // Two (2) sections incduded to inform the user of empty fields or errors

        // Libraries and FrameWorks used
        // ---------------------------------------------------------------------
        // Bootstrap 4.3 is used for easy responsive HTML code
        // JQuery 3.3 is used to handle user interation
        // Select2 is used to make select-boxes (single or multiple) easier to use

        // read fields options (json format) ///////////////////////////////////
        // ---------------------------------------------------------------------

        // Init strigns for JS generator (needed to handle everything) /////////
        // ---------------------------------------------------------------------
        $checkFilledJS = "";    // JS for checking empty fields
        $ref2Select2JS = "";    // references to Select2-controls Javascript
        $initSelectsJS = "";    // js to initialize select fields (single or multiple)


        $identity = "";     // construct required identity hidden fields
        foreach ($require_identity as $group) {
            $identity .= "
                <input type='hidden' name='". $group['name']
                    ."' value='". $group['value'] ."'>";
        }

        // now constuct the form body
        $html = "{$identity}
            <div class='row'>
            ";

        foreach ($formJson->form as $key => $field) {

            $attributes = $field->attributes ?? [];         // attributes array
            $type = $field->type ?? $default_type;
            $class = $field->class ?? "";
            $label = $field->label;
            $name = $field->name ?? $field->label;

            // handle value assignment
            if (isset($field->value)) {         // if value property is set
                $set_value = true;              // (flag: value seted)
                $value = $field->value;
                // $value = (($field->value == 'auto') && isset($default_values->$name))
                //     ? $default_values->$name    // set auto value
                //     : $field->value;            // or other set-value
            
            } else if (in_array('auto', $attributes) && isset($default_values->$name)) {
                $set_value = true;                  // (flag: value seted)
                $value = $default_values->$name;    // set auto value
                // echo "\n{$name}: $value";

            } else {
                $set_value = false;
            }
            // print_r([ $set_value, $name, ($default_values->$name ?? 'none') ]);
                        
            $appendKey = in_array('append-key', $attributes) ? true : false;    // append key (for selects)
            $required = in_array('required', $attributes) ? 'required' : '';    // required
            $asterisk = in_array('required', $attributes) ? '*' : '';       // asterisk in label if required

            $html .= "
            <div class='form-group {$class}'>
                <label for='{$name}'>{$label} {$asterisk}</label>
                ";
            
            switch ($type) {

                case 'select':                         

                    if (in_array('multiple', $attributes)) {      // if select is multiple

                        $html .="
                            <select id='{$name}' class='form-select form-select-sm' name='{$name}[]' multiple='multiple' style='width:100%'>";

                        // prepare initialization of select2 (multiple)
                        $initSelectsJS .= "
                            var {$name} = $('#{$name}');
                            {$name}.select2({ width: '100%' });";

                        if ($set_value) {       // if default value is set
                            $initSelectsJS .= "
                            select2_set_multi_text( {$name} , {$value} );";

                        } else {
                            $initSelectsJS .= "
                                {$name}.val(null).trigger('change');";
                        }

                        // prepare check if empty field
                        $checkFilledJS .= "
                            if (getValues({$name}) =='') { empty += '{$label} {$asterisk}<br />'; }
                            values.{$name} = getValues($name);";


                    } else {    // select is single; draw select + add empty option

                        $html .="
                            <select id='{$name}' class='form-select form-select-sm' name='{$name}' style='width:100%'>";

                        // prepare initialization of select2 (single)
                        $initSelectsJS .= "
                            var {$name} = $('#{$name}');
                            {$name}.select2();";

                        if ($set_value) {       // if default value is set
                            $initSelectsJS .= "
                                select2_set_text( {$name} , '{$value}' );";

                        } else {
                            $initSelectsJS .= "
                                {$name}.val(null).trigger('change');";
                        }

                        // prepare check if empty field
                        $checkFilledJS .= "
                            if (getValues({$name}) =='') { empty += '{$label} {$asterisk}<br />'; }
                            values.{$name} = getValues($name);";
                        
                    }

                    // inject options
                    if (isset($field->options)) {
                    foreach ($field->options as $key => $val) {
                        $html .= "
                            <option value='{$key}'>{$val}</option>";
                    }}

                    // close select
                    $html .= "</select>";

                    break;


                case 'text':

                    $def_value = ($set_value) ? "value='{$value}'" : "value=''";

                    $html .= "
                        <input type='text' class='form-control form-control-sm' name='{$name}' $def_value {$required}>";

                    $checkFilledJS = "
                        if ($('input[name={$name}]').val() =='') { empty += '{$label} {$asterisk}<br />'; }
                        values.{$name} = $('input[name={$name}]').val();";

                    break;


                case 'password':

                    $def_value = ($set_value) ? "value='{$value}'" : "value=''";

                    $html .= "
                        <input type='password' class='form-control form-control-sm' name='{$name}' {$required}>";

                    $checkFilledJS = "
                        if ($('input[name={$name}]').val() =='') { empty += '{$label} {$asterisk}<br />'; }
                        values.{$name} = $('input[name={$name}]').val();";

                    break;

                            
                case 'integer':

                    $def_value = ($set_value) ? "value='{$value}'" : "value=''";

                    $html .= "
                        <input type='number' class='form-control form-control-sm' name='{$name}' min='0' step='1' $def_value {$required}>";

                    $checkFilledJS .= "
                        if ($('input[name={$name}]').val() =='') { empty += '{$label} {$asterisk}<br />'; }
                        values.{$name} = $('input[name={$name}]').val();";

                    break;


                case 'textarea':

                    $def_value = ($set_value) ? "{$value}" : "";

                    $html .= "
                        <textarea class='form-control form-control-sm' name='{$name}' {$required}>{$def_value}</textarea>";

                    $checkFilledJS .= "
                        if ($('textarea[name={$name}]').val() =='') { empty += '{$label} {$asterisk}<br />'; }
                        values.{$name} = $('textarea[name={$name}]').val();";

                    break;
                    

                case 'date':

                    $html .= "
                        <input type='date' class='form-control form-control-sm' name='{$name}' {$required}>";

                    $checkFilledJS .= "
                        if ($('input[name={$name}]').val() =='') { empty += '{$label} {$asterisk}<br />'; }
                        values.{$name} = $('input[name={$name}]').val();";

                    break;


                case 'email':

                    $def_value = ($set_value) ? "value='{$value}'" : "value=''";

                    $html .= "
                        <input type='email' class='form-control form-control-sm' name='{$name}' {$def_value} {$required}>";

                    $checkFilledJS .= "
                        if ($('input[name={$name}]').val() =='') { empty += '{$label} {$asterisk}<br />'; }
                        values.{$name} = $('input[name={$name}]').val();";

                    break;


                default:    // label, acts as common text

                    //$html .= "<label>{$label}</label";

            }

            $html .= '</div>';
        }

        return [
            'html' => $html .'</div>',
            'init_js' => $initSelectsJS,
            'values_js' => $checkFilledJS
        ];

    }

}




/***
 * Script Workflow:
 * -----------------------------------------------------------------------------
 * 1. read fields options
 * 2. generate HTML
 * 3. generate JS needed

 * the UI
 * -----------------------------------------------------------------------------
 * Fields are grouped in sections
 * These sections presented in tabs (or accordion if mobile device)
 * Two (2) sections incduded to inform the user of empty fields or errors

 * Libraries and FrameWorks used
 * -----------------------------------------------------------------------------
 * Bootstrap 4.3 is used for easy responsive HTML code
 * JQuery 3.3 is used to handle user interation
 * Select2 is used to make select-boxes (single or multiple) easier to use


 * read fields options (json format) ///////////////////////////////////////////
 * -----------------------------------------------------------------------------
    $formJSON = file_get_contents('config/kallassa.json');
    $formARRAY = json_decode($formJSON);


 * Init strigns for JS generator (needed to handle everything) /////////////////
 * -----------------------------------------------------------------------------
    $checkFilledJS = "";    // JS for checking empty fields
    $ref2Select2JS = "";    // references to Select2-controls Javascript
    $initSelectsJS = "";    // js to initialize select fields (single or multiple)
*/