Skip to main content

XomegaJS Data Objects

Generates customizable presentation layer data objects that are used as data models for SPA Views Models. The generated data objects are TypeScript classes based on XomegaJS Framework - a TypeScript counterpart of our C# based Xomega Framework for client-side development.

You can add your customizations to a subclass of a generated data object, and implement any reusable presentation logic there, such as custom validations, propagations, and updates based on property change events, custom invocation, and handling of service operations including serialization to/from data contracts, etc.

Generator inputs

The generator uses data object definitions in the Xomega model to generate the corresponding TypeScript classes. Those definitions consist of a data object declaration in the model, and a number of references in each model structure associated with the data object.

Data Objects

In the declaration element you give the data object a unique class name, and optionally specify if this is a list object and whether you need to customize it as illustrated below.

<xfk:data-object xmlns:xfk="http://www.xomega.net/framework"
class="SalesOrderList"
list="true" customize="true"/>

You can also add named child objects from the model to your data object declaration here using nested xfk:add-child elements, as follows.

<xfk:data-object class="SalesOrderObject" customize="true">
<xfk:add-child name="customer" class="SalesOrderCustomerObject"/>
<xfk:add-child name="detail" class="SalesOrderDetailList"/>
</xfk:data-object>

Operations

Once you declare a data object, you will need to add references to that object in the input, output or standalone structures declared in the model, by adding the corresponding xfk:add-to-object element under the structure’s config element as shown below.

<operation name="read list" type="readlist">
<input>[...]
<output list="true">
<param name="sales order id"/>
<param name="sales order number"/>
<param name="status"/>
<param name="order date" type="date"/>
<param name="total due"/>
<config>
<xfk:add-to-object class="SalesOrderList"/>
</config>
</output>
</operation>

These references from the model structures will serve a dual purpose.

On the one hand, all parameters from these structures combined will form a set of data properties for the data object, which will be grouped by parameter name, so parameters with the same name must have the same type in different structures.

On the other hand, the operations that those structures participate in as input or output will determine which service call methods will be generated on those data objects and whether the object’s properties will feed into the input and/or will be populated from the output of those service calls.

tip

Oftentimes, input structures for REST-compliant operations will consist of some key fields (which will go into the URL parameters), and the actual data in a separate child structure (which will go into the body of the request).

In such cases, it is important to add both the main input structure and the child structure to the data object, to ensure that the service call method is generated correctly on the data object.

Properties

The XomegaJS data properties that are used on the generated data objects are determined based on the configuration of their types in the model. The types usually inherit such configurations from their base types but can override the data properties to use as needed.

You need to specify the property's TypeScript class and module on the xfk:property element under the config element of the type, i.e. the same element as the one used for specifying Xomega Framework properties, as illustrated below.

<type name="date time">
<config>
<xfk:property tsModule="xomega" tsClass="DateTimeProperty"
class="DateTimeProperty" namespace="Xomega.Framework.Properties"/>
</config>
</type>
<type name="string">
<config>
<xfk:property tsModule="xomega" class="TextProperty" namespace="Xomega.Framework.Properties"/>
</config>
</type>

The module is specified in the tsModule attribute and can be set to xomega for properties from the XomegaJS framework, or your custom module if you use custom properties. The property class is specified in the tsClass attribute but can be omitted if it has the same name as the property from the Xomega Framework, in which case the value from the class attribute will be used.

note

Most of this setup of data objects in the model for standard CRUD and read list operations can be easily added automatically to the model by a special model enhancement CRUD generator.

Generator outputs

This generator creates TypeScript classes for XomegaJS-based data objects with all the data properties, child objects, and service call methods defined, and adds the generated classes to the specified project, which is usually a dedicated project for the SPA client.

For data objects that are decorated with a customize="true" attribute, it also creates a subclass of the generated object with a postfix Customized appended to the class name if one does not exist yet. It can also nest the customized class under the generated data object in the project if so configured.

Configuration

The following sections describe the configuration parameters used by the generator.

Generator parameters

The following table lists configuration parameters that are set as the generator’s properties.

ParameterValue ExampleDescription
Generator NameXomegaJS Data ObjectsThe name of the current configuration of the generator that will appear in the model project and the build output.
Folder NamePresentation Layer\SPAFolder path to the generator inside the Model project. The folders are separated by a backslash (\).
Include In BuildTrueA flag indicating whether or not running this generator should be included in building of the model project.
Output
Nest Custom FileTrueWhether or not to nest custom file under the auto-generated base file in the project. Applies only if both files are output to the same directory.
Add To Project../MySolution.Client.Spa /MySolution.Client.Spa.csprojRelative path to the project file to add the generated files to. The project will be reloaded every time you run the generator. Leave it blank if you don't want generated files to be added to your project automatically.

Model configuration

The generator's configuration parameters that need to be also accessible to other generators are specified in the Xomega model in the xfk:data-objects-config element under the top-level config element, which is conventionally placed in the global_config.xom file.

These parameters include the relative output paths for the generated and customized TypeScript data objects, which may contain {Module} and {File} placeholders to output them by module and data object, as follows.

global_config.xom
<xfk:data-objects-config tsOutputPath="../MySolution.Client.Spa/DataObjects/{Module/}{File}"
tsCustomPath="../MySolution.Client.Spa/DataObjects/{Module/}{File}"/>
note

Note that this is different from most of the other generators, which specify the output paths as generator parameters rather than in the model configuration.

To be able to use the generated classes in other TypeScript files requires importing the file where the generated class is declared using a relative path to it, so the other generators that use data objects, such as SPA Views, also need to know the path to them.

tip

You can omit the tsCustomPath attribute, in which case the customized data objects will be output into the same folder as the generated data objects.

Common configurations

There is expected to be just one configuration of this generator in the model, with the parameter values as illustrated above.

How to use the generator

The sections below provide some details on how to work with the generator.

Running the generator

You can run this generator either for the entire model or for individual files by selecting them in the model project and running the generator from the context menu.

You can rerun the generator when you add new data objects or change existing data objects in the model, and also when you change the structure of operations that the data objects are associated with.

note

Normally, this will require re-running other generators that depend on the same model elements, such as generators of UI views or service and data contracts as well as the service implementations. Therefore, this generator should be included in the build of the model project in the configuration, to allow you to easily regenerate all data objects along with other artifacts.

Customizing the output

danger

You should never edit generated data objects directly. This allows re-running the generator at any time without losing your customizations.

To add your customizations, you should edit a subclass of the generated data object class that was added when you specified the customize attribute on the data object.

Cleaning the generator’s output

This generator supports cleaning either all generated data objects or only the ones from the selected model files using the Clean context menu for that generator.

tip

Normally, cleaning the generated files makes sense if you are planning to change the output path for the generator, or when you have removed some of the data objects from the model, and want the generated classes deleted and removed from the target project.

caution

The customization subclasses that were generated for data objects with a customize="true" attribute will not be cleaned during these operations to prevent any loss of custom code during an accidental run of such actions. Therefore, you may get compilation errors for those classes if you clean your data objects, and will need to delete them manually as needed.