Build Studio

From Xamun MediaWiki
Table of Contents
Home Page Design Studio Project Hub Build Studio

Build Studio has the backend and frontend setup for the project. The developers can easily build the application using the low-code interface. It also has the feature of deploying the application in an ultra-fast way and testing it.


Check and Confirm Pages

This is the page where the user can check and confirm the pages in the Design components. You can view this page after creating a project or application.
In this section, the user can group pages by module, which is applicable only for Web Applications.

View Image Source

Feature Description
Design Components • Paginated list of designs.
Create Module Button • Create Module button should be disabled when all designs/pages are added in a group.
• The user will be able to create module.
Add New Design • A dialog will appear containing the Tenant ID, API Key, Session Keya and App ID with Instructions.
• Will import new Figma Design.
Modules • User can Edit/update created modules.
• User can Delete created modules.
• Paginated list of created modules.
Ellipsis • By clicking the ellipsis button in each design user has the option to view the Design/Page.

Create Module (For WEB only)

View Video Tutorial

Feature Description
Create Module • Group name is required field.
• Main component dropdown list should vary based on the selected. Design/Page. This field is a required field.
• User has the option to select the Version (Blueprint versions).
• At least 2 Designs/Page should be selected when creating a group.
Choose Version • Select a version where this module will be added as part of a version releases.
Main Component • Selection of a page where you will assign as main component.
Include in Deployment • A checkbox where an option to include this module whenever user deploy in Sandbox.
Save Button • Save the created module and it will be added on the list of modules.
Cancel Button • Cancel button will terminate create module action.


Backend

Data Modelling

At Data Model Touchup, the predicted entity for each page can be set up by extracting the components of the page and setup the parameters.

View Image Source

Feature Description
Build • It will build backend data.
• Enabled where all pages under backend are filled with data and saved.
View Swagger • View Swagger Documentation when I'm in the pages under backend section.
• When clicked, a new tab will appear redirecting to App Swagger Documentation.
• It will only be enabled after a successful backend build.
Data Model Touchup • Button toggle option to view for Design Preview and Properties.
• List down all pages.
Predict • Predict button will predict entity and parameters in each page.
• List of Entity and Properties should be displayed after predicting the page.
Process • The process button should only be enabled when at least one page is setup.
• If the Process button is clicked, you will be redirected to the Entity Diagram Designer.
• Cancel button will terminate the action.
Entity and Property Maintenance
It contains the list of pages and its properties where the user has the option to add, edit and delete.

View Image Source

Feature Description
Entity • User has the option to Add, Edit, and Delete Entity in each page after predicting.
Property • User has the option to Add, Edit, and Delete Properties in each Entity based on desired changes.
Transfer • Allows user to transfer Property into other created Entities on the Page.
Save Page • Should appear once the page is predicted.
• It will save the created properties in all entities in the same page.
Save Page and Next • Should appear once the page is predicted and there’s 2 or more pages


Entity Designer

This is the page where the developer can confirm and edit the entity of each page.

Once published, developers will be able to view the swagger. Typically, publishing takes about 30 minutes, but a pre-built version of the backup is available.

View Image Source

Feature Description
Add Icon (Create Entity) • Will open a dialog for Create Entity fields
• Users will Create, Edit and Delete Property in each Entity.
• User can Save/Cancel when creating an Entity
Trash Icon (Delete Entity) • Allow user to Delete create Entity
Entity • User has the option to Add, Edit and Delete Entity in each page after predicting.
Update Entity • Double click on created entity to update.
Load XML • If the Load XML button is clicked, it will open a file dialog for user to select saved Model XML file. Then it will load the selected XML file in the Entity Designer.
Save • The save button will allow the user to save/download the created contents for Entity Designer. File extension should be .xml. And Click Save to save changes on the current file. Click Save As to save changes to a new file.
Zoom in/Zoom out • Can Zoom in/Zoom out Entity Designer page.
Reset • If the Reset button is clicked, it will roll back to the initial processed data. If data wasn't processed from the Data Model Touchup, your current canvas will be cleared.
Create Entity and Property
This is the page where the developer can create the entity and property of the pages.

View Image Source

Feature Description
Create Entity • Entity name input field for user to input Entity name to be created.
Property • Users have the option to Add, Edit and Delete Properties in each Entity based on desired changes.
• Data type is a dropdown selection that will be set in each property.
• Is Required, is a checkbox to which sets the property as required.
• Default value is an input field to where user can input a default value if applicable in a specific property.
Save • licked, it will save all the input information and entity will be added on the file.
Cancel If clicked, it will terminate the Create action.


Route Editor (For Mobile only)

The Route Editor is for Mobile application only. This is where the initial code is displayed, and the developer can maintain the code.

View Image Source

Feature Description
Editor • Initial code is displayed where Developer will be able to Edit/Update the code for Routing.
Save • Will save the code in the database.


Flutter Config(For Mobile only)

The Flutter Configuration is for Mobile applications only. It contains the list of the configuration.

View Image Source

Feature Description
Dio Configurations • Dart Input Output for HTTP Network & API Usage
Local Storage Configuration • Configuration for Local Storage
Services • List of added services.
Local Database Configuration • Configuration for SQFlite Local Database.
Pub Spec Editor • Add packages in pubspec.yaml
Screen State • List of Screen States
DIO Configuration
This is the page where the developer can view and edit the Dio Configuration.

View Image Source

Feature Description
Edit Config • Allows user to modify the configurations of Base URL, Connect Timeout, Send Timeout, Receive Timeout.
• All fields are required, and input should be valid when updating config.
View Config • A dialog will appear for the user to view the updated code after updating the config. And data inputted should be reflected.
• File name should be “http_client.dart”.
Submit • If clicked and if validation passed, entered Dio configuration details will be saved.
• Will only be enabled once validations are passed.
Cancel • Terminate update action
Local Storage Configuration
This is the page where the developer can view and edit the configuration for Storage Keys.

View Image Source

Feature Description
Edit Config • Allows user to modify the configurations of Storage Keys.
• All fields are required, and input should be valid when updating config.
View Config • A dialog will appear for the user to view the updated code after updating the config. And data inputted should be reflected.
• File name should be “storage_helper.dart”.
Add Storage Keys • If clicked, a new line of Variable Name and Storage Key Name fields will be added where user can input details.
Delete • If clicked added storage key will be deleted.
• Delete button is per storage keys.
• Will only visible when two or more keys are added
Submit • If clicked and if validation passed, entered Storage keys configuration details will be saved.
• Will only be enabled once validations are passed.
Cancel • Terminate update action
Services
This is the page where the developer can add and maintain the services.

View Image Source

Feature Description
Add Service • Users are not allowed to add Service if no Model class is created-JSON to Dart.
• All fields are required, and input should be valid when updating config.
Add Function • If clicked, another Function fields such Function name, Endpoint, Method, Model and Content will be added where user can input details.
• All fields are required except for Content.
• HTTP Method is a dropdown field which has Post, Put, Delete and Get selection.
• Content Field where user will input valid JSON
• Model is dropdown selection where list is based on created JSON to Model
Delete • If clicked added Function will be deleted.
• Delete button is per Function.
• It will only visible when two or more functions are added
Submit • If clicked and validation passed, Service will be created.
• It will only be enabled once validations are passed.
Cancel • Terminate update action.
Ellipsis • Will have ellipses in each created services where these actions are available: Edit, Delete, and View Service file.
Edit • Edit allow user to update created Service.
• Updating this file will result in the deletion of the associated files (ViewModel).
Delete • Delete allows the user to Delete created Service.
View Service Files • A dialog will appear for the user to view the updated code after updating the config. And data entered should be reflected.
• File name should be “<Servicename>_service.dart”.
Repositories
This is the page where the developer can view the different repository files.

View Image Source

Feature Description
Repositories • Will only appear when there is a created Service.
• Each created service will have a generated Repositories.
Ellipsis • Will have ellipses in each created services where these actions are available: View Repository file, View Repository Providing file, View Repository Unit test file, and View Repository Mock Unit Test File.
View Repository File • Users will be able to view the generated Repository file in each created service.
• File name should be “<Servicename>_repository.dart”.
View Repository Providing File • Users will be able to view the generated Repository Providing File in each created service. • File name should be “<Servicename_repository_providing.dart”
View Repository Unit Test File • Users will be able to view the generated Repository Unit Test File in each created service.
• File name should be “<Servicename>_repository_test.dart”.
View Repository Mock Unit Test File • Users will be able to view the generated Repository Mock Unit Test File in each created service.
• File name should be “<Servicename>_repository_test.mocks.dart”
Local Database Configuration
This is the page where the developer can add and maintain the database configuration.

View Image Source

Feature Description
Add Config • Allow users to add DB name and password.
• Can only add one configuration detail of Local database.
• DB Name is only required, and Password is optional when creating config.
Edit Config • Allows user to modify the DB name and Password of Local Database configurations.
• DB Name is only required, and Password is optional when updating config.
View Config • A dialog will appear for the user to view the updated code after adding the config. And database config. entered details should be reflected.
• File name should be “database_helper.dart”.
Submit • If clicked and validation passed, Local Database Configuration saved.
• Will only be enabled once validations are passed.
Cancel • Terminate Update Action
Pubspec Editor
This is the page where the developer can add the packages. The JSON can also be viewed from this page.

View Image Source

Feature Description
Add Package • When clicked, a dialog will appear which contains checkboxes of Packages to Add packages in pubspec.yaml.
View JSON • A dialog will appear for a generated file after adding packages for user to view the generated xamun-packages.json.
• If no selected package, no file is generated.
Select Package • A dialog where the user will be able to tick/select checkboxes for each package.
• Users can select 1 or more packages as desired.
Submit • Saved selected packages.
• If clicked “xamun-packages.json” file will be generated.
Cancel • Terminate add/update action.
Screen State
This is the page where the developer can add and maintain the different Screen State.

View Image Source

View Model
This is the page where the developer can create and maintain the View Model.

View Image Source


JSON to Dart

The JSON to Dart Model is for Mobile applications only. This is where the developer can create and maintain the different models.

View Image Source


Build API Swagger

Once swagger is viewable, developers will be able to test and view the back end set up and entity flow.

View Image Source



Frontend

UI Touch Up

This is the page where the front-end design and page routing set-up can be generated.

View Image Source

Feature Description
Build • Will build Frontend data.
• Enabled where all pages except for App Logic under Frontend are filled with data and saved.
View App • When clicked, a new tab will appear redirecting to Deployed App.
• Will only be enabled after a successful Frontend build.
Dropdown • List down all the created modules from Design components.
• Can switch into different pages by selecting the pages from the dropdown to modify/update code
Save • The save button will allow the user to save modified changes on the codes
Process Workflow • If clicked, it will integrate workflow created from Application Logic.
Project • Contains Info, Files and Dependencies data.
Editor • Will only show Editor Form.
Preview • Will only show Design Preview.
Both • Both Editor and Preview will be visible on the screen.
Lock/Unlock • Lock module so that other users can’t make any changes on the Module.
• Unlock module to remove users' restriction on the module.


Angular Config(For Web Only)

To help the developers manage the angular package dependencies and environment variables.

Package Manager
Packages are the dependencies of the application to make it work.

View Image Source

Feature Description
Add Package • Will open a dialog to which allows user to create/add package that is not part of the default packages.
Edit • Allow user to update created package.
Delete • Allow user to delete package.
Add Package
This is the page where the developer can add new packages.

View Image Source

Feature Description
Add Package • Package name and Package version is required when creating a package.
Save Package • If clicked, it will save the package and will add on the package list.
• Will only enable when Package name and Version is filled out.
Cancel • If clicked, will terminate create action.
Created packages will be reflected in UI touch up as dependencies.

View Image Source

Environment Variable
Environment variables are needed to store the application secrets and configuration data.

View Image Source

Feature Description
Add Variable • Will open a dialog to which allows user to create/add variable that is not part of the default environment variables created.
Edit • Allow user to update created environment variable.
Delete • Allow user to delete environment variable.
Add Variable
This is the page where the developer can add new variables.

View Image Source

Feature Description
Add Variable • Variable name and Variable value are required when creating an environment variable.
Save Variable • If clicked, it will save the variable and will add on the environment variable list.
• Will only enable when Variable name and Value is filled out.
Cancel • If clicked, will terminate create action.
Create variables will be reflected in UI touchup under Environment folder> “environment.ts “file

View Image Source


Page Routes

Page routing contains the flow from one view to another. This is also where the logic for the business rules can be applied.

View Image Source

Feature Description
Add Route • Will open a dialog to which allows user to create/add page route in each group.
Public • Set route as public route.
Main Page • Enabled when created route was set as main page.
Edit • Allow user to update created route.
Delete • Allow user to delete created route
Add Route
This is the page where the developer can add the route.

View Image Source

Feature Description
Add Route • Group, Page and Route is required when creating a route.
• The list of pages will vary depending on the selected group when creating Route.
• Can only create 1 route in each Page per group.
Default Route • A checkbox that will only be available when the selected page is assigned as main component.
• Set as the default route when accessing the page.
Submit • If clicked, it will create the route and will add on the page routes list.
Cancel • If clicked, will terminate create action.


Application Logic

Once Application logic for the business rules were set and integration is created, “Build” button will be available. Once done building the Frontend, App Test Site will be available for testing.

View Image Source

Feature Description
Modules • List of all created workflow modules which user can Add more modules by clicking Add Module button. Home module is default added.
Start • This workflow action will initiate on creating module workflow.
Zoom In/Zoom Out • Allows user to Zoom in/Zoom out canvas.
Reset Zoom • If clicked, it will roll back to the initial default view.
Save Canvas • If clicked, it will Save created workflow.
Add Module
This is the page where the developer can add the Workflow Modules.

View Image Source

Feature Description
Module Name • Users are required to enter module name.
Submit • Save created workflow module and will be added in Modules List on the left side panel.
Cancel • If clicked, will terminate create action.
Create Workflow
Creation of workflow that will be integrated in Groups in UI Touch up.
Trigger
A.1 SELECT GROUP

View Image Source

Feature Description
Group • Select Group of modules that you want to create a workflow with.
• Can only select 1 group in each workflow creation.
Next • Will only be enabled when a Group is selected.
• If clicked, it will proceed on “Page” selection.
A.2 SELECT PAGE

View Image Source

Feature Description
Page • List down all pages under the selected group.
• Select a Page that you want to create a workflow with.
• User can only select 1 page in each workflow creation.
Next • Will only be enabled when a Page is selected.
• If clicked, it will proceed on “Trigger” selection.
A.3 SELECT TRIGGER

View Image Source

Feature Description
Select Tigger • User has the option of “On button click” or “On page load’ trigger to be created.
• Can only select 1 trigger in each workflow creation.
Button Config • Will only appear once “On button click” is selected.
• Selection of button config.
Apply Trigger • Apply the created Trigger in the workflow.
Back • Will navigate back to “Page” selection process.
Action
B.1 SELECT WORKFLOW

View Image Source

Feature Description
All Tab • All workflows are displayed by default.
• Send HTTP request, SendGrid Send Email, Switch are only available workflows as of current.
SQL Tab • Will only display workflows related to SQL
HTTP Tab • Will only display workflows related to HTTP
Email Tab • Will only display workflows related to email.
Control Workflow • Will only display workflows related to Control workflow
B.2 SEND HTTP REQUEST – Properties Tab

View Image Source

Feature Description
Properties Tab • All fields are required, and input should be valid.
URL • The URL to send the HTTP request to.
Method • Select Method: Get, Post, Delete, Put. The HTTP content to send along with the request.
Content • The HTTP Content to send along with the request.
Content Type • The Content type to send with the request.
Save • Will only be enabled once all tabs are filled out except Header tab.
• If clicked and validations passed, it will save all input data and action will be added in the workflow.
Cancel • Will terminate action.
B.3 SEND HTTP REQUEST – Authorization Tab

View Image Source

Feature Description
Authorization Tab • All fields are required, and input should be valid.
Authority • The base URL of the authorization server.
Redirect URI • The address where the authorization server sends the user once the app has been successfully authorized.
Post Logout Redirect URI • The address where the authorization server sends the user after logging out.
Client ID • The public identifier of your app.
Scope • Access needed to call on APIs.
Authorization • The Authorization header value to send.
Token • Key to be used alongside the Authorization header.
• Click the Authorize button, a new tab will open then Copy and paste the token on the Token input.
B.4 SEND HTTP REQUEST – Headers Tab

View Image Source

Feature Description
Request Headers • Additional headers to send along with the request.
• This tab/field is not required.
B.5 SEND HTTP REQUEST – Common Tab

View Image Source

Feature Description
Common Tab • All fields are required, and input should be valid.
Name • The technical name of the activity.
Display Name • The friendly name of the activity.
Description • A custom description for this activity.
B.6 SEND HTTP REQUEST – Test Tab

View Image Source

Feature Description
Test Tab • Click the Send Http Request button to send the input data from previous tabs.
B.7 SEND HTTP REQUEST – UI Touch up HTML Mapper Tab

View Image Source

Feature Description
UI Touch up HTML Mapper Tab • Configure your workflow integration to UI Touchup.
• This tab will only appear/enabled when “Put/Post Method” from Properties tab is selected.
HTML Element for Form Group • Dropdown selection of HTML Element for Form Group.
Form Control Configuration • Configure form control values that will map to the Input HTML Elements.
• Name, Description, Is Active, Is Deleted, and Account ID fields are optional inputs



Version Release

way to differentiate current and past application configurations is through the Version Release.

View Image Source

Feature Description
Versions List • Paginated Versions List.
Create Version • Allow users to create versions.
Progress • Progress of modules added in the version. New, Active and Completed
Ellipsis • List of available actions: View, Edit, create snapshot, Use this version.
• Available in each created version.
View action • Dialog will appear, allowing the user to view details of the created version.
Edit action • Dialog will appear, allowing the user to modify details of the existing version.
Create Snapshot • Will change status from New to “Current” and will be use as Current version.
• When creating snapshot on a” New” version the “Current” version will be updated “Active” status.
Use this Version • Will change status from Active to “Current” and will be use as Current version.
• Will only be applicable if Version status is “Active”.

Create Version

This is the page where the developer can create the different release versions.

View Image Source

Feature Description
Name • The User is required to input the version name.
Start date • Date selection for Version’s Start date.
Release date • Date selection for Version’ Release date.
Description • Input field for Version’s Description.
Submit • If clicked, it will Save created version and will be added in Versions List.
Cancel • If clicked, it will terminate create action.

Version Modules

This page list down the modules added in each version. The modules are created from Design Component page.

View Image Source

Feature Description
Name • Name of module which added in this version from Design components.
Status • Display module status. New status is selected as default.
Ellipsis • Edit action which allows user to update each module status which is New, Active and Completed.


Table of Contents
Home Page Design Studio Project Hub Build Studio