Config File
The config.json file is an essential component of developing a Quick Design framework. This file contains both meta information that describes the calculator as well as input variable information that describes the inputs available in your calculator.
The config.json file serves as the foundation for your calculator's user interface which is generated directly from the file. You can customize the layout, appearance, and input variables of your calculator by editing the information provided in the config.json file.
#
LayoutThe config.json file uses the JSON file format. At a high level the config starts with the following layout.
#
Meta InformationThe meta information is used to both describe the calculator as well as configure certain settings like access control.
Key | Required | Type |
---|---|---|
name | TRUE | String |
short_description | TRUE | String |
long_description | TRUE | String |
tags | TRUE | Comma Separated String |
access | TRUE | public | private |
s3d_integrated | FALSE | Boolean |
contact | TRUE | Object |
#
Contact ObjectWhen developing a calculator in the SkyCiv software framework, you may wish to provide information about the calculator's developer.
This is where the contact object comes into play. The contact object is an optional object that can be included in your calculator to display information about the developer. Specifically, this information is displayed in the 'View Module Info' option.
At a minimum this object must be include the email key. If no logo is included the SkyCiv Logo will be used.
tip
Include the logo in the images folder of the calc pack. Reference the logo as /image_name.png
to use this option.
#
Input Variable InformationThe input_variable object contains a set of nested objects that are used to build the input form of your calculator. Essentially, you can think of this part of the calculator as a form builder.
Each element in the form is represented by a separate object within the input_variable object. The key of each object represents the name of the related input variable. These elements appear in the user interface in the same order as they are listed in the JSON.
By specifying the necessary information in the input_variable object, you can create a user-friendly input form for your calculator. You can customize each input element, including its label, data type, default value, and other attributes.
#
Additional Input Variable ParametersKey | Value Type | Description |
---|---|---|
s3d_only | Boolean | If set to true , this input will be only be available in S3D. |
disabled | Boolean | If set to true , this input will be disabled (greyed out) and not editable. |
exclude_from_input_table | Boolean | If set to true , this input will be hidden from the main input table. |
exclude_from_input_table_s3d | Boolean | If set to true , this input will be hidden from the main input table in S3D only. |
hide_info_tip_in_input_table | Boolean | If set to true , the information tips will be hidden from the input table of the design report. |
hide_label_in_input_table | Boolean | If set to true , the label will be hidden from the input table of the design report. |
highlight_row | Boolean | If set to true , this input will be highlighted yellow in the input table. |
hide_in_s3d | Boolean | If set to true , this input will be hidden in the S3D input table. Value will still be returned. |
disable_in_s3d | Boolean | If set to true , this input will be disabled in the S3D input table. |
hide_units_label | Boolean | If set to true , this units will be hidden on the input panel (will still be visible in report). |
display_units | String | Overrides the units to display in the UI, report still shows the units key. |
info_table | String | Overrides the info tip in the Input Summary table. |
label_table | String | Overrides the label in the Input Summary table. |
#
Input ElementsInput elements allow they user to interact and adjust sections the element in the calculator's user interface.
#
Number Element Example#
Dynamic Min/Max LogicDynamic min/max can be used to logically specify the min/max of an input based on another inputs value.
Key | Description |
---|---|
greater_than | Ensures that the input will always be greater than the specified input. |
less_than | Ensures that the input will always be less than to the specified input. |
greater_than_or_equal | Ensures that the input will always be greater than or equal to the specified input. |
less_than_or_equal | Ensures that the input will always be greater than or equal to the specified input. |
equal_to | Ensures that the input will always be equal to the specified input. |
#
Example#
Text Element Example#
Display Inputs on One RowIn some cases it may be useful to combine certain input together to be displayed on the same row.
Two number or text elements are able to be displayed on the same row using the combine_with
key.
The labels and tooltip of this combined row can be overridden using the combined_label
and combined_tooltip
keys.
In the report and calculations these inputs will still appear and be treated as if they were separate inputs.
tip
The input you are combining with should always appear after the input that contains the combine_with"
key.
Display Inputs on One Row Example
#
Checkbox Element Example#
Radio Buttons Element Example#
Dropdown Element Example#
Optional Dropdown KeysThese optional keys can be added to the dropdown object (a the root level).
Key | Type | Description |
---|---|---|
use_search_icon | bool | Replace the dropdown icon with a search icon. |
#
Table Element ExampleSimple Example
Advanced Example
#
Optional Table KeysThese optional keys can be added to the table object (a the root level).
Key | Type | Description |
---|---|---|
min_rows | int | Max rows allowed in the table. |
max_rows | int | Min rows allowed in the table. |
default_data | array | Array of objects for default data use in tables. |
button_text | string | Name for button text. Default 'Open Table'. |
#
Button Element ExampleBinding to buttons in the ui.js
You can bind to buttons in your ui.js to execute certain actions. Ensure that you unbind the button before binding your click function:
#
S3D Section Object[S3D Integration Only] This will pass through the Section Object from your S3D model
#
Visual ElementsVisual elements are parts of the input form use to display information or improve the layout of the form.
#
Image Element Exampletip
Images can be served directly from the calc pack by including an images folder. Reference the image as /image_name.png
to use this option.
#
Optional Image KeysThese optional keys can be added to the image object.
Key | Type | Description |
---|---|---|
height | string | Set an explicit height for image. |
max_width | string | Set an explicit max width for image. |
max_height | string | Set an explicit maxheight for image. |
border_radius | string | Set a border radius for the image. |
qd_center | boolean | Set to true to center the graphic. |
#
Heading Element Example#
Subheading Element Example#
Canvas Element Examplenote
Experimental support for sending canvas elements containing SVG elements as base64 to the calculate.js
has now been added.
To do this please include base_64_to_report: true
as a key/value pair in the canvas element.
#
Div Element Example#
Centering Div Elements for GraphicsThe following optional keys can be added to the div element to center it in the middle of the screen.
Parameter | Description |
---|---|
qd_center | Set to true to center the graphic. |
allow_graphic_report | Set to true to allow the user to download the graphic as a PDF. |
graphic_report_name | The name of the report if allow_graphic_report is true. |
graphic_report_details | Set to true to add details to the report if allow_graphic_report is true. |
#
Visibility OptionsThis option allows users to show/hide certain parameters based on another field's input.
For instance, if you have a dropdown to choose a shape, and want to show different inputs for circular VS rectangular, you can use use the visible_variables
key:
These can be used with dropdown, checkbox and radio button type elements.
tip
Note: For dropdown the visible_variables value options are checked amd unchecked
Checkbox Example
You can choose to show/hide based on the following options:
["show", "all"]
- will show all input variables["hide", "all"]
- will hide all input variables (unless they also have avisible_variables
key)["show", "section_width"]
- will show the specific input section_width["show", ".circular-input"]
- will show all inputs that have the class "circular-input"
tip
Want to add dynamic user interface elements like charts and drawings that can be updated based on user input? The canvas and div elements are perfect for the job, controlled from your ui.js file.
#
Settings (Optional)The settings
object is an optional object that you can add top level of your config.json
to control some aspects of the reporting.
The following options are currently available:
Key | Type | Description |
---|---|---|
report_heading | String | Override the calcualtor name for the report heading. |
use_simple_table | Boolean | Use a simplified version of the input table instead with only the Description and Value columns. |
include_input_table | Boolean | Set to false to hide the input table. |
include_headings_in_input_table | Boolean | Set to true to add headings to input table. |
split_input_table_by_headings | Boolean | Set to true to break the input table into multiple sections by headings. |
add_break_after_input_table | Boolean | Set to true to add a section break after the input table. |
include_summary_table | Boolean | Set to false to hide the summary table. |
include_marketing | Boolean | Set to false to hide the marketing footer. |
experimental_clean_report_units | Boolean | Experimental option to print the units in equations in a cleaner fashion. |
disable_batch_run | Boolean | Disables batch run option when true. |
beta_calculation | Boolean | If true adds a BETA tag and warning message to the calcualtor. |
use_docs_as_centre_graphic | Boolean | If true uses the docs.md as the center graphic. |