If we want to do a more complex logic for formatting properties of our data model, we can also write a custom formatting function. We will now add a localized status with a custom formatter, because the status in our data model is in a rather technical format.
A status is now displayed with a custom formatter
You can access the live preview by clicking on this link: 🔗 Live Preview of Step 22.
To download the solution for this step as a zip file, just choose the link here: 📥 Download Solution for Step 22.
We add three new entries to the resource bundle that reflect translated status texts 'New', 'In Progess', and 'Done'. We will use these texts to format the status values 'A', 'B', and 'C' of our invoices when displayed in the invoice list view.
...
# Invoice List
invoiceListTitle=Invoices
invoiceStatusA=New
invoiceStatusB=In Progress
invoiceStatusC=Done
We place a new formatter.ts
in the model folder of the app. This time we do not need to extend from any base object, but just return an object with our formatter
functions in it. We add a statusText
function, that gets a status as input parameter and returns a human-readable text that is read from the resourceBundle
file.
import ResourceBundle from "sap/base/i18n/ResourceBundle";
import Controller from "sap/ui/core/mvc/Controller";
import ResourceModel from "sap/ui/model/resource/ResourceModel";
export default {
statusText: function (this: Controller, status: string): string | undefined {
const resourceBundle = <ResourceBundle> (<ResourceModel> this?.getOwnerComponent()?.getModel("i18n"))?.getResourceBundle();
switch (status) {
case "A":
return resourceBundle.getText("invoiceStatusA");
case "B":
return resourceBundle.getText("invoiceStatusB");
case "C":
return resourceBundle.getText("invoiceStatusC");
default:
return status;
}
}
};
The new formatter
file is placed in the model folder of the app, because formatters are working on data properties and format them for display on the UI. This time we do not extend from any base object but just return an object with our formatter
functions inside.
📌 Important:
In the above example,this
refers to the controller instance as soon as the formatter gets called. We access the resource bundle via the component usingthis.getOwnerComponent().getModel()
instead of usingthis.getView().getModel()
. The latter call might returnundefined
, because the view might not have been attached to the component yet, and thus the view can't inherit a model from the component.
Additional Information:
- API Reference:
sap.ui.core.mvc.Controller#getOwnerComponent
. - API Reference:
sap.ui.core.mvc.Controller#onInit
.
To be able to access the formatter in the invoice list view, we load it to the InvoiceList.controller.ts
and store it in a local property formatter
.
import Controller from "sap/ui/core/mvc/Controller";
import JSONModel from "sap/ui/model/json/JSONModel";
import formatter from "../model/formatter";
/**
* @namespace ui5.walkthrough.controller
*/
export default class App extends Controller {
public formatter = formatter;
onInit(): void {
const viewModel = new JSONModel({
currency: "EUR"
});
this.getView()?.setModel(viewModel, "view");
}
};
We add a status using the firstStatus
aggregation to our ObjectListItem
that will display the status of our invoice. The custom formatter function is specified with the reserved property formatter
of the binding syntax. Our formatter is stored in the controller of the current view in paramter formatter
, so we can access it by assigning .formatter.statusText
to the formatter
property of the binding syntax.
<mvc:View
controllerName="ui5.walkthrough.controller.InvoiceList"
xmlns="sap.m"
xmlns:mvc="sap.ui.core.mvc">
<List
headerText="{i18n>invoiceListTitle}"
class="sapUiResponsiveMargin"
width="auto"
items="{invoice>/Invoices}" >
<items>
<ObjectListItem
title="{invoice>Quantity} x {invoice>ProductName}"
number="{
parts: [
'invoice>ExtendedPrice',
'view>/currency'
],
type: 'sap.ui.model.type.Currency',
formatOptions: {
showMeasure: false
}
}"
numberUnit="{view>/currency}"
numberState="{= ${invoice>ExtendedPrice} > 50 ? 'Error' : 'Success' }">
<firstStatus>
<ObjectStatus text="{
path: 'invoice>Status',
formatter: '.formatter.statusText'
}"/>
</firstStatus>
</ObjectListItem>
</items>
</List>
</mvc:View>
Instead of a technical status we get now the human-readable texts per invoice we specified in our resource bundle below the number
attribute of the ObjectListItem
.
Next: Step 23: Filtering
Previous: Step 21: Expression Binding
Related Information