Changes between Initial Version and Version 1 of DeveloperGuidelines/EdenMobile/DataFormats


Ignore:
Timestamp:
08/19/19 07:41:09 (6 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/EdenMobile/DataFormats

    v1 v1  
     1= EdenMobile Data Formats =
     2[[TOC]]
     3
     4== Form List ==
     5
     6 - ''tbd''
     7
     8== Form Download ==
     9
     10=== Table Schema ===
     11
     12The table schema describes the field in the table.
     13
     14The field '''name''', '''type''' and '''label''' are read from the web2py Field instance directly.
     15
     16The field type will determine the choice of '''widget''' in the mobile app. This default widget decision can be overridden by {{{Field.s3_settings["mobile"]}}}.
     17
     18For dynamic tables, {{{Field.s3_settings}}} will be established from {{{s3_field.settings}}}. The format for both is identical.
     19
     20{{{
     21Field.s3_settings = s3field.settings = {
     22
     23   // must be JSON-seriablizable
     24
     25   "mobile": {            <== the mobile-specific section in the field settings, will be send to EdenMobile
     26
     27      "widget": {
     28          "type": widget-type,       <== must be a widget-type name supported by EdenMobile (if an unknown widget type is set, no widget will be shown at all!)
     29          ...                        <== other widget options as key-value pairs
     30      },
     31      "requires": {
     32          validatorName: {parameters}              <== general format: parameters for the validator must be passed as dict, all parameters are optional
     33          "isIntInRange": {"min": 0, "max": 100},  <== example: mobile-specific validator (instant validation!)
     34      },
     35      "l10n": {                                    <== localized strings for the field (label, comment)
     36          "es": {
     37              "label": "...spanish translation of the label...",
     38              "comment": "...spanish translation of the comment...",
     39          }
     40      },
     41      "image": {
     42          "url": "...download-URL of the image for this widget..."
     43      },
     44      "pipeImage": {
     45          // format to be defined
     46      }
     47   }
     48}
     49}}}
     50
     51NB In future, the field settings will fall back to values introspected from the web2py Field instance (requires/widget/represent), but this does not happen yet, so it is essential to configure the "mobile" section in the settings for EdenMobile to handle the field correctly. If no mobile settings are provided, EdenMobile will assume defaults, which may differ from what is configured for the field on the server!
     52
     53=== Form Description ===
     54
     55The form description is a JSON array with form elements.
     56
     57If the "mobile_form" table setting on the server is a Python list, it will be used as-is. Otherwise, if the "mobile_form" setting is a S3SQLCustomForm instance, then it will be converted into such an list (with every S3SQLFormElement corresponding to one entry in the list).
     58
     59The general format:
     60
     61{{{
     62[
     63    "fieldA",                   <== String indicates a field name
     64
     65    // Form element type S3SQLField
     66    {"type": "input",           <== Non-string elements must be objects and have a "type"-attribute
     67     "field": "fieldB",         <== Form element of type "input" must specify a "field" attribute with the field name
     68     ...,                       <== Other parameters in key-value format for the form element (e.g. display logic)
     69     },
     70
     71    // Form element type S3SQLInstruction
     72    {"type": "instructions",    <== A non-field form element "instructions", will show instructions to the form user
     73     "do": "...string...",      <== String with instruction what to do
     74     "say": "...string...",     <== String with example what to say (will automatically be quoted, so no need to quote it)
     75     "l10n": {
     76         "es": {                                              <== localized instruction, language-code as attribute name
     77             "do": "...do-instruction in Spanish...",
     78             "say": "...say-instruction in Spanish..."
     79         }
     80     },
     81
     82     // Form element type S3SQLSectionBreak
     83     {"type": "section-break"}  <== A non-field form element that marks a section/page break in the form
     84
     85     // Form element type S3SQLSubHeading (<= yet to be implemented)
     86     {"type": "subheading",
     87      "text": "...subheading...",
     88      "l10n": {
     89          "es": {
     90              "text": "...spanish translation of the subheading text..."
     91          }
     92      }
     93]
     94
     95}}}
     96
     97==== Display Logic ====
     98
     99Every form element (except section breaks) can have an entry "displayLogic" - which determines when the form element is to be shown.
     100
     101Format:
     102
     103{{{
     104    {"type": "input"
     105     "field": "fieldname",
     106     "displayLogic": {"field": <fieldname>, op: value}        <== single condition display logic, op = eq|ne|lt|gt|le|ge|in|has (in=belongs, has=contains)
     107     }
     108
     109     More complex conditions:
     110
     111     "displayLogic": [{...cond...}, {...cond...}]             <== multi-condition display logic, AND assumed
     112     "displayLogic": ["anyOf", {...cond...}, {...cond...}]    <== multi-condition display logic, explicit OR
     113     "displayLogic": ["allOf", ["anyOf", {...condA...}, {...condB...}], {...condC...}]   <== nested multi-condition display logic, translates to "(condA or condB) and condC"
     114}}}
     115
     116== Data Upload ==
     117
     118 - uses regular S3JSON via REST API, no specifics