Update generation UI (#1471)

* update setup

* update

* Update abaplint.jsonc

* Update abaplint.jsonc
This commit is contained in:
oblomov-dev 2024-10-02 00:43:43 +02:00 committed by GitHub
parent e0cb6990f2
commit 7b47b3bba9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
30 changed files with 2045 additions and 1668 deletions

17
app/package-lock.json generated
View File

@ -8,6 +8,7 @@
"name": "z2ui5", "name": "z2ui5",
"version": "0.0.1", "version": "0.0.1",
"devDependencies": { "devDependencies": {
"@abaplint/cli": "^2.113.17",
"@sap/ui5-builder-webide-extension": "^1.1.9", "@sap/ui5-builder-webide-extension": "^1.1.9",
"@sap/ux-ui5-tooling": "1", "@sap/ux-ui5-tooling": "1",
"@ui5/cli": "^3.0.0", "@ui5/cli": "^3.0.0",
@ -17,6 +18,22 @@
"ui5-task-zipper": "^3.1.3" "ui5-task-zipper": "^3.1.3"
} }
}, },
"node_modules/@abaplint/cli": {
"version": "2.113.17",
"resolved": "https://registry.npmjs.org/@abaplint/cli/-/cli-2.113.17.tgz",
"integrity": "sha512-++3AXVlGr/AKOsHnClqFMJsRLuirke3FuxHhm+48HeA57pecy0JMoAIQEZF+w0V+wQWcIYx4AFaAeiE4J6LZ8g==",
"dev": true,
"license": "MIT",
"bin": {
"abaplint": "abaplint"
},
"engines": {
"node": ">=12.0.0"
},
"funding": {
"url": "https://github.com/sponsors/larshp"
}
},
"node_modules/@babel/runtime": { "node_modules/@babel/runtime": {
"version": "7.25.6", "version": "7.25.6",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.6.tgz", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.6.tgz",

View File

@ -9,6 +9,7 @@
], ],
"main": "webapp/index.html", "main": "webapp/index.html",
"devDependencies": { "devDependencies": {
"@abaplint/cli": "^2.113.17",
"@sap/ui5-builder-webide-extension": "^1.1.9", "@sap/ui5-builder-webide-extension": "^1.1.9",
"@sap/ux-ui5-tooling": "1", "@sap/ux-ui5-tooling": "1",
"@ui5/cli": "^3.0.0", "@ui5/cli": "^3.0.0",
@ -30,6 +31,7 @@
"undeploy": "cf undeploy z2ui5 --delete-services --delete-service-keys --delete-service-brokers", "undeploy": "cf undeploy z2ui5 --delete-services --delete-service-keys --delete-service-brokers",
"deploy-test": "npm run build && fiori deploy --config ui5-deploy.yaml --testMode true", "deploy-test": "npm run build && fiori deploy --config ui5-deploy.yaml --testMode true",
"build:cf": "ui5 build preload --clean-dest --config ui5-deploy.yaml --include-task=generateCachebusterInfo", "build:cf": "ui5 build preload --clean-dest --config ui5-deploy.yaml --include-task=generateCachebusterInfo",
"transform": "node trans/trans2abap.js && abaplint --fix ./trans/abaplint.jsonc",
"build:mta": "rimraf resources mta_archives && mbt build" "build:mta": "rimraf resources mta_archives && mbt build"
}, },
"sapuxLayer": "CUSTOMER_BASE" "sapuxLayer": "CUSTOMER_BASE"

View File

@ -6,7 +6,7 @@ module.exports = function(className, description) {
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>${className.toUpperCase()}</CLSNAME> <CLSNAME>${className.toUpperCase()}</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>${className.toUpperCase()}</DESCRIPT> <DESCRIPT>${className.toUpperCase()} (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

358
app/trans/abaplint.jsonc Normal file
View File

@ -0,0 +1,358 @@
{
"global": {
"files": "/../../src/01/99/**/*.*"
},
"dependencies": [
{
"url": "https://github.com/abapedia/steampunk-2305-api-intersect-702",
"folder": "/deps",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "v750",
"errorNamespace": "."
},
"rules": {
"7bit_ascii": true,
"abapdoc": false,
"sql_value_conversion" : true,
"select_single_full_key" : true,
"strict_sql" : true,
"easy_to_find_messages" : true,
"fully_type_itabs" : true,
"align_parameters": false,
"smim_consistency": true,
"allowed_object_naming": true,
"allowed_object_types": {
"allowed": [
"CLAS",
"DEVC",
"INTF",
"TABL",
]
},
"ambiguous_statement": true,
"avoid_use": {
"severity": "Error",
"skipQuickFix": false,
"define": true,
"statics": true,
"defaultKey": true,
"break": true,
"testSeams": true,
"describeLines": true,
"exportToMemory": true,
"exportToDatabase": true
},
"begin_end_names": true,
"align_pseudo_comments" : true,
"dynpro_checks" : true,
"empty_event" : true,
"invalid_table_index" : true,
"macro_naming" : true,
"prefer_pragmas" : true,
"add_test_attributes" : true,
"implicit_start_of_selection" : true,
"reduce_procedural_code" : true,
"tables_declared_locally" : true,
"unused_macros" : true,
"align_type_expressions" : true,
"no_prefixes" : false,
"begin_single_include": true,
"call_transaction_authority_check": true,
"cds_comment_style": true,
"cds_legacy_view": true,
"cds_parser_error": true,
"chain_mainly_declarations": true,
"change_if_to_case": true,
"check_abstract": true,
"check_comments": true,
"check_ddic": true,
"check_include": true,
"check_subrc": true,
"check_syntax": true,
"check_text_elements": true,
"check_transformation_exists": true,
"class_attribute_names": true,
"classic_exceptions_overlap": true,
"cloud_types": true,
"colon_missing_space": true,
"commented_code": false,
"constant_classes": true,
"constructor_visibility_public": true,
"contains_tab": true,
"cyclic_oo": false,
"cyclomatic_complexity": {
"exclude": [],
"severity": "Error",
"max": 8
},
"dangerous_statement": {
"exclude": [],
"severity": "Error",
"execSQL": true,
"kernelCall": true,
"systemCall": true,
"insertReport": true,
"generateDynpro": true,
"generateReport": true,
"generateSubroutine": true,
"deleteReport": true,
"deleteTextpool": true,
"deleteDynpro": true,
"exportDynpro": true,
"dynamicSQL": true
},
"db_operation_in_loop": true,
"definitions_top": false,
"description_empty": true,
"double_space": true,
"downport": true,
"empty_line_in_statement": true,
"empty_statement": true,
"empty_structure": {
"loop": false,
"if": true,
"while": true,
"case": true,
"select": true,
"do": true,
"at": true,
"try": true,
"when": false
},
"exit_or_check": true,
"expand_macros": true,
"exporting": true,
"forbidden_identifier": true,
"forbidden_pseudo_and_pragma": {
"exclude": [],
"severity": "Error",
"pseudo": [],
"pragmas": [],
"ignoreGlobalClassDefinition": false,
"ignoreGlobalInterface": false
},
"form_tables_obsolete": true,
"fully_type_constants": {
"checkData": true
},
"function_module_recommendations": true,
"functional_writing": {
"ignoreExceptions": true
},
"global_class": true,
"identical_conditions": true,
"identical_contents": true,
"identical_descriptions": true,
"identical_form_names": true,
"if_in_if": true,
"implement_methods": true,
"in_statement_indentation": false,
"indentation": true,
"inline_data_old_versions": true,
"intf_referencing_clas": false,
"keep_single_parameter_on_one_line": false,
"keyword_case": false,
"line_break_multiple_parameters": false,
"line_break_style": true,
"line_length": false,
"line_only_punc": false,
"local_class_naming": false,
"local_testclass_consistency": true,
"local_variable_names": false,
"main_file_contents": true,
"many_parentheses": true,
"max_one_method_parameter_per_line": true,
"max_one_statement": true,
"message_exists": true,
"method_implemented_twice": true,
"method_length": {
"exclude": [],
"severity": "Error",
"statements": 100,
"errorWhenEmpty": false,
"ignoreTestClasses": true,
"checkForms": true
},
"method_overwrites_builtin": {
"exclude": [ "z2ui5_cl_xml_view" ],
"severity": "Error"
},
"method_parameter_names": false,
"mix_returning": false,
"modify_only_own_db_tables": {
"reportDynamic": true,
"ownTables": "^[yz]"
},
"msag_consistency": true,
"names_no_dash": true,
"nesting": {
"depth": 5
},
"newline_between_methods": true,
"no_aliases": true,
"no_chained_assignment": true,
"no_external_form_calls": true,
"no_inline_in_optional_branches": false,
"no_public_attributes": false,
"no_yoda_conditions": true,
"nrob_consistency": true,
"object_naming": {
"exclude": [],
"severity": "Error",
"patternKind": "required",
"ignoreNames": [],
"ignorePatterns": [],
"clas": "^Z2UI5_C(L|X)",
"intf": "^Z2UI5_IF",
"prog": "^Z",
"fugr": "^Z",
"tabl": "^Z",
"ttyp": "^Z",
"dtel": "^Z",
"doma": "^Z",
"msag": "^Z",
"tran": "^Z",
"enqu": "^EZ",
"auth": "^Z",
"pinf": "^Z",
"idoc": "^Z",
"xslt": "^Z",
"ssfo": "^Z",
"ssst": "^Z",
"shlp": "^Z"
},
"obsolete_statement": true,
"omit_parameter_name": true,
"omit_preceding_zeros": true,
"omit_receiving": true,
"parser_702_chaining": true,
"parser_error": true,
"parser_missing_space": true,
"pragma_style": true,
"prefer_corresponding": true,
"prefer_inline": true,
"prefer_is_not": true,
"prefer_raise_exception_new": true,
"prefer_returning_to_exporting": true,
"prefer_xsdbool": true,
"preferred_compare_operator": true,
"prefix_is_current_class": {
"severity": "Warning"
},
"reduce_string_templates": true,
"release_idoc": true,
"remove_descriptions": {
"exclude": [],
"severity": "Error",
"ignoreExceptions": false,
"ignoreWorkflow": false
},
"rfc_error_handling": true,
"select_add_order_by": false,
"select_performance": true,
"selection_screen_naming": true,
"sequential_blank": {
"severity": "Warning"
},
"short_case": true,
"sicf_consistency": true,
"slow_parameter_passing": true,
"space_before_colon": true,
"space_before_dot": true,
"sql_escape_host_variables": true,
"start_at_tab": false,
"static_call_via_instance": {
"allowInTestclassIncludes": false
},
"superclass_final": true,
"superfluous_value": true,
"sy_modification": true,
"tabl_enhancement_category": true,
"try_without_catch": true,
"type_form_parameters": true,
"types_naming": false,
"uncaught_exception": true,
"unknown_types": true,
"unnecessary_chaining": true,
"unnecessary_pragma": true,
"unnecessary_return": true,
"unreachable_code": true,
"unsecure_fae": true,
"unused_ddic": true,
"unused_methods": true,
"unused_types": true,
"unused_variables": {
"severity": "Error",
"skipNames": ["lv_dummy"]
},
"use_bool_expression": true,
"use_class_based_exceptions": true,
"use_line_exists": true,
"use_new": true,
"when_others_last": true,
"whitespace_end": false,
"xml_consistency": true,
"forbidden_void_type": {
"check": [
"^boole_d$",
"^char10$",
"^char12$",
"^char2$",
"^char20$",
"^char30$",
"^char4$",
"^char50$",
"^char70$",
"^cl_abap_syst",
"^cl_aff_",
"^cl_aucv_test_runner_abstract$",
"^cl_aucv_test_runner_standard$",
"^cl_aunit_assert$",
"^cl_axt_dbtable$",
"^cl_blue_wb_utility$",
"^cl_oo_source$",
"^/ui2/cl_$",
"^/ui2/cl_",
"^cl_saunit_internal_result$",
"^cl_srvd_wb_object_data$",
"^cl_wb_object_operator_factory$",
"^cl_wer_const$",
"^cl_xco_",
"^cx_aff_",
"^cx_wb_object_operation_error$",
"^cx_xco_",
"^flag$",
"^i18_a_langiso2$",
"^if_adt_lock_handle$",
"^if_aff_",
"^if_satc_ci_variant_access$",
"^if_saunit_internal_result$",
"^if_saunit_internal_result_type$",
"^if_srvd_types$",
"^if_wb_adt_plugin_resource_co$",
"^if_wb_object_data_selection_co$",
"^if_wb_object_operator$",
"^if_xco_",
"^int4$",
"^numc2$",
"^sabp_t_tadir_keys$",
"^sap_bool$",
"^srcsystem$",
"^stringtab$",
"^sychar01$",
"^sychar10$",
"^sychar70$",
"^sydatum$",
"^sylangu$",
"^syst_title$",
"^syuzeit$",
"^xubname$",
"^feld$",
"^abap_boolean$",
]
},
}
}

View File

@ -54,7 +54,7 @@ function generateClassName(filePath) {
fileName.splice(1, 1); // Remove the middle part fileName.splice(1, 1); // Remove the middle part
} }
const folderPath = parts.map(part => part.substring(0, 4)).join('_').toLowerCase(); const folderPath = parts.map(part => part.substring(0, 4)).join('_').toLowerCase();
return `z2ui5_cl_app_${fileName.join('_')}`; return `z2ui5_cl_app_${fileName.join('_').toLowerCase()}`;
} }
// Function to recursively get all files in a directory // Function to recursively get all files in a directory

View File

@ -82,7 +82,7 @@
"commented_code": false, "commented_code": false,
"constant_classes": true, "constant_classes": true,
"constructor_visibility_public": true, "constructor_visibility_public": true,
"contains_tab": false, "contains_tab": true,
"cyclic_oo": false, "cyclic_oo": false,
"cyclomatic_complexity": { "cyclomatic_complexity": {
"exclude": [], "exclude": [],

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_APP_JS</CLSNAME> <CLSNAME>Z2UI5_CL_APP_APP_JS</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_APP_JS</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_APP_JS (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -1,4 +1,4 @@
CLASS z2ui5_cl_app_App_xml DEFINITION CLASS z2ui5_cl_app_app_xml DEFINITION
PUBLIC PUBLIC
FINAL FINAL
CREATE PUBLIC . CREATE PUBLIC .
@ -14,11 +14,11 @@ CLASS z2ui5_cl_app_App_xml DEFINITION
ENDCLASS. ENDCLASS.
CLASS z2ui5_cl_app_App_xml IMPLEMENTATION. CLASS z2ui5_cl_app_app_xml IMPLEMENTATION.
METHOD get. METHOD get.
result = `<mvc:View controllerName="z2ui5.controller.App"` && result = `<mvc:View controllerName="z2ui5.controller.App"` &&
` xmlns:html="http://www.w3.org/1999/xhtml"` && ` xmlns:html="http://www.w3.org/1999/xhtml"` &&
` xmlns:mvc="sap.ui.core.mvc" displayBlock="true"` && ` xmlns:mvc="sap.ui.core.mvc" displayBlock="true"` &&
` xmlns="sap.m">` && ` xmlns="sap.m">` &&

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_APP_XML</CLSNAME> <CLSNAME>Z2UI5_CL_APP_APP_XML</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_APP_XML</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_APP_XML (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -1,4 +1,4 @@
CLASS z2ui5_cl_app_Component_js DEFINITION CLASS z2ui5_cl_app_component_js DEFINITION
PUBLIC PUBLIC
FINAL FINAL
CREATE PUBLIC . CREATE PUBLIC .
@ -14,71 +14,71 @@ CLASS z2ui5_cl_app_Component_js DEFINITION
ENDCLASS. ENDCLASS.
CLASS z2ui5_cl_app_Component_js IMPLEMENTATION. CLASS z2ui5_cl_app_component_js IMPLEMENTATION.
METHOD get. METHOD get.
result = `sap.ui.define(["sap/ui/core/UIComponent", "z2ui5/model/models",` && |\n| && result = `sap.ui.define(["sap/ui/core/UIComponent", "z2ui5/model/models",` && |\n| &&
` "z2ui5/cc/DebugTool","z2ui5/cc/Server", "sap/base/Log","sap/ui/VersionInfo"` && |\n| && ` "z2ui5/cc/DebugTool","z2ui5/cc/Server", "sap/base/Log","sap/ui/VersionInfo"` && |\n| &&
`` && |\n| && `` && |\n| &&
` ], function (UIComponent, models, DebugTool, Server, Log, VersionInfo) {` && |\n| && ` ], function (UIComponent, models, DebugTool, Server, Log, VersionInfo) {` && |\n| &&
` return UIComponent.extend("z2ui5.Component", {` && |\n| && ` return UIComponent.extend("z2ui5.Component", {` && |\n| &&
` metadata: {` && |\n| && ` metadata: {` && |\n| &&
` manifest: "json"` && |\n| && ` manifest: "json"` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` init: async function () {` && |\n| && ` init: async function () {` && |\n| &&
`` && |\n| && `` && |\n| &&
` UIComponent.prototype.init.apply(this, arguments);` && |\n| && ` UIComponent.prototype.init.apply(this, arguments);` && |\n| &&
`` && |\n| && `` && |\n| &&
` this.getRouter().initialize();` && |\n| && ` this.getRouter().initialize();` && |\n| &&
` z2ui5.oRouter = this.getRouter();` && |\n| && ` z2ui5.oRouter = this.getRouter();` && |\n| &&
` this.setModel(models.createDeviceModel(), "device");` && |\n| && ` this.setModel(models.createDeviceModel(), "device");` && |\n| &&
` this._oLogger = Log.getLogger("abap2UI5");` && |\n| && ` this._oLogger = Log.getLogger("abap2UI5");` && |\n| &&
`` && |\n| && `` && |\n| &&
` z2ui5.oConfig = {};` && |\n| && ` z2ui5.oConfig = {};` && |\n| &&
` z2ui5.oConfig.ComponentData = this.getComponentData();` && |\n| && ` z2ui5.oConfig.ComponentData = this.getComponentData();` && |\n| &&
`` && |\n| && `` && |\n| &&
` try {` && |\n| && ` try {` && |\n| &&
` z2ui5.oLaunchpadService = await this.getService("ShellUIService");` && |\n| && ` z2ui5.oLaunchpadService = await this.getService("ShellUIService");` && |\n| &&
` } catch (e) {}` && |\n| && ` } catch (e) {}` && |\n| &&
`` && |\n| && `` && |\n| &&
` let oVersionInfo = await VersionInfo.load();` && |\n| && ` let oVersionInfo = await VersionInfo.load();` && |\n| &&
` z2ui5.oConfig.UI5VersionInfo = {` && |\n| && ` z2ui5.oConfig.UI5VersionInfo = {` && |\n| &&
` version : oVersionInfo.version,` && |\n| && ` version : oVersionInfo.version,` && |\n| &&
` buildTimestamp : oVersionInfo.buildTimestamp,` && |\n| && ` buildTimestamp : oVersionInfo.buildTimestamp,` && |\n| &&
` gav : oVersionInfo.gav,` && |\n| && ` gav : oVersionInfo.gav,` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
`` && |\n| && `` && |\n| &&
` if (/iPad|iPhone/.test(navigator.platform)) {` && |\n| && ` if (/iPad|iPhone/.test(navigator.platform)) {` && |\n| &&
` window.addEventListener("__pagehide", this.__pagehide.bind(this));` && |\n| && ` window.addEventListener("__pagehide", this.__pagehide.bind(this));` && |\n| &&
` } else {` && |\n| && ` } else {` && |\n| &&
` window.addEventListener("__beforeunload", this.__beforeunload.bind(this));` && |\n| && ` window.addEventListener("__beforeunload", this.__beforeunload.bind(this));` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
`` && |\n| && `` && |\n| &&
` document.addEventListener("keydown", function (zEvent) {` && |\n| && ` document.addEventListener("keydown", function (zEvent) {` && |\n| &&
` if (zEvent?.key === "F12") {` && |\n| && ` if (zEvent?.key === "F12") {` && |\n| &&
` new z2ui5.cc.DebugTool().show();` && |\n| && ` new z2ui5.cc.DebugTool().show();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
`` && |\n| && `` && |\n| &&
` __beforeunload: function () {` && |\n| && ` __beforeunload: function () {` && |\n| &&
` window.removeEventListener("__beforeunload", this.__beforeunload.bind(this));` && |\n| && ` window.removeEventListener("__beforeunload", this.__beforeunload.bind(this));` && |\n| &&
` this.destroy();` && |\n| && ` this.destroy();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` __pagehide: function () {` && |\n| && ` __pagehide: function () {` && |\n| &&
` window.removeEventListener("__pagehide", this.__pagehide.bind(this));` && |\n| && ` window.removeEventListener("__pagehide", this.__pagehide.bind(this));` && |\n| &&
` this.destroy();` && |\n| && ` this.destroy();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
`` && |\n| && `` && |\n| &&
` exit: function () {` && |\n| && ` exit: function () {` && |\n| &&
` Server.endSession();` && |\n| && ` Server.endSession();` && |\n| &&
` if (UIComponent.prototype.exit)` && |\n| && ` if (UIComponent.prototype.exit)` && |\n| &&
` UIComponent.prototype.exit.apply(this, arguments);` && |\n| && ` UIComponent.prototype.exit.apply(this, arguments);` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
`});` && |\n| && `});` && |\n| &&
`` && |\n| && `` && |\n| &&
``. ``.
ENDMETHOD. ENDMETHOD.

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_COMPONENT_JS</CLSNAME> <CLSNAME>Z2UI5_CL_APP_COMPONENT_JS</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_COMPONENT_JS</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_COMPONENT_JS (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -1,4 +1,4 @@
CLASS z2ui5_cl_app_DebugTool_js DEFINITION CLASS z2ui5_cl_app_debugtool_js DEFINITION
PUBLIC PUBLIC
FINAL FINAL
CREATE PUBLIC . CREATE PUBLIC .
@ -14,152 +14,152 @@ CLASS z2ui5_cl_app_DebugTool_js DEFINITION
ENDCLASS. ENDCLASS.
CLASS z2ui5_cl_app_DebugTool_js IMPLEMENTATION. CLASS z2ui5_cl_app_debugtool_js IMPLEMENTATION.
METHOD get. METHOD get.
result = `sap.ui.define(["sap/ui/core/Control", "sap/ui/core/Fragment", "sap/ui/model/json/JSONModel"], (Control, Fragment, JSONModel) => {` && |\n| && result = `sap.ui.define(["sap/ui/core/Control", "sap/ui/core/Fragment", "sap/ui/model/json/JSONModel"], (Control, Fragment, JSONModel) => {` && |\n| &&
` "use strict";` && |\n| && ` "use strict";` && |\n| &&
`` && |\n| && `` && |\n| &&
` return Control.extend("z2ui5.cc.DebugTool", {` && |\n| && ` return Control.extend("z2ui5.cc.DebugTool", {` && |\n| &&
`` && |\n| && `` && |\n| &&
`prettifyXml: function(sourceXml) {` && |\n| && `prettifyXml: function(sourceXml) {` && |\n| &&
` const xmlDoc = new DOMParser().parseFromString(sourceXml, 'application/xml');` && |\n| && ` const xmlDoc = new DOMParser().parseFromString(sourceXml, 'application/xml');` && |\n| &&
` var sParse = ``&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;` && |\n| && ` var sParse = ``&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;` && |\n| &&
` &lt;xsl:strip-space elements="*" /&gt;` && |\n| && ` &lt;xsl:strip-space elements="*" /&gt;` && |\n| &&
` &lt;xsl:template match="para[content-style][not(text())]"&gt;` && |\n| && ` &lt;xsl:template match="para[content-style][not(text())]"&gt;` && |\n| &&
` &lt;xsl:value-of select="normalize-space(.)" /&gt;` && |\n| && ` &lt;xsl:value-of select="normalize-space(.)" /&gt;` && |\n| &&
` &lt;/xsl:template&gt;` && |\n| && ` &lt;/xsl:template&gt;` && |\n| &&
` &lt;xsl:template match="node()|@*"&gt;` && |\n| && ` &lt;xsl:template match="node()|@*"&gt;` && |\n| &&
` &lt;xsl:copy&gt;` && |\n| && ` &lt;xsl:copy&gt;` && |\n| &&
` &lt;xsl:apply-templates select="node()|@*" /&gt;` && |\n| && ` &lt;xsl:apply-templates select="node()|@*" /&gt;` && |\n| &&
` &lt;/xsl:copy&gt;` && |\n| && ` &lt;/xsl:copy&gt;` && |\n| &&
` &lt;/xsl:template&gt;` && |\n| && ` &lt;/xsl:template&gt;` && |\n| &&
` &lt;xsl:output indent="yes" /&gt;` && |\n| && ` &lt;xsl:output indent="yes" /&gt;` && |\n| &&
` &lt;/xsl:stylesheet&gt;``;` && |\n| && ` &lt;/xsl:stylesheet&gt;``;` && |\n| &&
` sParse = sParse.replace(/&gt;/g, unescape("%3E")).replace(/&lt;/g, unescape("%3C"));` && |\n| && ` sParse = sParse.replace(/&gt;/g, unescape("%3E")).replace(/&lt;/g, unescape("%3C"));` && |\n| &&
` const xsltDoc = new DOMParser().parseFromString(sParse, 'application/xml');` && |\n| && ` const xsltDoc = new DOMParser().parseFromString(sParse, 'application/xml');` && |\n| &&
`` && |\n| && `` && |\n| &&
` const xsltProcessor = new XSLTProcessor();` && |\n| && ` const xsltProcessor = new XSLTProcessor();` && |\n| &&
` xsltProcessor.importStylesheet(xsltDoc);` && |\n| && ` xsltProcessor.importStylesheet(xsltDoc);` && |\n| &&
` const resultDoc = xsltProcessor.transformToDocument(xmlDoc);` && |\n| && ` const resultDoc = xsltProcessor.transformToDocument(xmlDoc);` && |\n| &&
` const resultXml = new XMLSerializer().serializeToString(resultDoc);` && |\n| && ` const resultXml = new XMLSerializer().serializeToString(resultDoc);` && |\n| &&
` return resultXml.replace(/&gt;/g, ">").replace(/&lt;/g, "<");` && |\n| && ` return resultXml.replace(/&gt;/g, ">").replace(/&lt;/g, "<");` && |\n| &&
` }, onItemSelect: function (oEvent) {` && |\n| && ` }, onItemSelect: function (oEvent) {` && |\n| &&
` const selItem = oEvent.getSource().getSelectedKey();` && |\n| && ` const selItem = oEvent.getSource().getSelectedKey();` && |\n| &&
` const oView = z2ui5?.oView;` && |\n| && ` const oView = z2ui5?.oView;` && |\n| &&
` const oResponse = z2ui5?.oResponse;` && |\n| && ` const oResponse = z2ui5?.oResponse;` && |\n| &&
` const displayEditor = this.displayEditor.bind(this);` && |\n| && ` const displayEditor = this.displayEditor.bind(this);` && |\n| &&
`` && |\n| && `` && |\n| &&
` switch (selItem) {` && |\n| && ` switch (selItem) {` && |\n| &&
` case 'CONFIG':` && |\n| && ` case 'CONFIG':` && |\n| &&
` displayEditor(oEvent, JSON.stringify(z2ui5.oConfig, null, 3), 'json');` && |\n| && ` displayEditor(oEvent, JSON.stringify(z2ui5.oConfig, null, 3), 'json');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'MODEL':` && |\n| && ` case 'MODEL':` && |\n| &&
` displayEditor(oEvent, JSON.stringify(oView?.getModel()?.getData(), null, 3), 'json');` && |\n| && ` displayEditor(oEvent, JSON.stringify(oView?.getModel()?.getData(), null, 3), 'json');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'VIEW':` && |\n| && ` case 'VIEW':` && |\n| &&
` const viewContent = oView?.mProperties?.viewContent || z2ui5.responseData.S_FRONT.PARAMS.S_VIEW.XML;` && |\n| && ` const viewContent = oView?.mProperties?.viewContent || z2ui5.responseData.S_FRONT.PARAMS.S_VIEW.XML;` && |\n| &&
` displayEditor(oEvent, this.prettifyXml(viewContent), 'xml', this.prettifyXml(oView?._xContent.outerHTML));` && |\n| && ` displayEditor(oEvent, this.prettifyXml(viewContent), 'xml', this.prettifyXml(oView?._xContent.outerHTML));` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'PLAIN':` && |\n| && ` case 'PLAIN':` && |\n| &&
` displayEditor(oEvent, JSON.stringify(z2ui5.responseData, null, 3), 'json');` && |\n| && ` displayEditor(oEvent, JSON.stringify(z2ui5.responseData, null, 3), 'json');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'REQUEST':` && |\n| && ` case 'REQUEST':` && |\n| &&
` displayEditor(oEvent, JSON.stringify(z2ui5.oBody, null, 3), 'json');` && |\n| && ` displayEditor(oEvent, JSON.stringify(z2ui5.oBody, null, 3), 'json');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'POPUP':` && |\n| && ` case 'POPUP':` && |\n| &&
` displayEditor(oEvent, this.prettifyXml(oResponse?.PARAMS?.S_POPUP?.XML), 'xml');` && |\n| && ` displayEditor(oEvent, this.prettifyXml(oResponse?.PARAMS?.S_POPUP?.XML), 'xml');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'POPUP_MODEL':` && |\n| && ` case 'POPUP_MODEL':` && |\n| &&
` displayEditor(oEvent, JSON.stringify(z2ui5.oViewPopup.getModel().getData(), null, 3), 'json');` && |\n| && ` displayEditor(oEvent, JSON.stringify(z2ui5.oViewPopup.getModel().getData(), null, 3), 'json');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'POPOVER':` && |\n| && ` case 'POPOVER':` && |\n| &&
` displayEditor(oEvent, oResponse?.PARAMS?.S_POPOVER?.XML, 'xml');` && |\n| && ` displayEditor(oEvent, oResponse?.PARAMS?.S_POPOVER?.XML, 'xml');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'POPOVER_MODEL':` && |\n| && ` case 'POPOVER_MODEL':` && |\n| &&
` displayEditor(oEvent, JSON.stringify(z2ui5?.oViewPopover?.getModel()?.getData(), null, 3), 'json');` && |\n| && ` displayEditor(oEvent, JSON.stringify(z2ui5?.oViewPopover?.getModel()?.getData(), null, 3), 'json');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'NEST1':` && |\n| && ` case 'NEST1':` && |\n| &&
` displayEditor(oEvent, this.prettifyXml(z2ui5?.oViewNest?.mProperties?.viewContent), 'xml', this.prettifyXml(z2ui5?.oViewNest?._xContent.outerHTML));` && |\n| && ` displayEditor(oEvent, this.prettifyXml(z2ui5?.oViewNest?.mProperties?.viewContent), 'xml', this.prettifyXml(z2ui5?.oViewNest?._xContent.outerHTML));` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'NEST1_MODEL':` && |\n| && ` case 'NEST1_MODEL':` && |\n| &&
` displayEditor(oEvent, JSON.stringify(z2ui5?.oViewNest?.getModel()?.getData(), null, 3), 'json');` && |\n| && ` displayEditor(oEvent, JSON.stringify(z2ui5?.oViewNest?.getModel()?.getData(), null, 3), 'json');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'NEST2':` && |\n| && ` case 'NEST2':` && |\n| &&
` displayEditor(oEvent, this.prettifyXml(z2ui5?.oViewNest2?.mProperties?.viewContent), 'xml', this.prettifyXml(z2ui5?.oViewNest2?._xContent.outerHTML));` && |\n| && ` displayEditor(oEvent, this.prettifyXml(z2ui5?.oViewNest2?.mProperties?.viewContent), 'xml', this.prettifyXml(z2ui5?.oViewNest2?._xContent.outerHTML));` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'NEST2_MODEL':` && |\n| && ` case 'NEST2_MODEL':` && |\n| &&
` displayEditor(oEvent, JSON.stringify(z2ui5?.oViewNest2?.getModel()?.getData(), null, 3), 'json');` && |\n| && ` displayEditor(oEvent, JSON.stringify(z2ui5?.oViewNest2?.getModel()?.getData(), null, 3), 'json');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'SOURCE':` && |\n| && ` case 'SOURCE':` && |\n| &&
` const parent = oEvent.getSource().getParent();` && |\n| && ` const parent = oEvent.getSource().getParent();` && |\n| &&
` const contentControl = parent.getContent()[2].getItems()[0];` && |\n| && ` const contentControl = parent.getContent()[2].getItems()[0];` && |\n| &&
` const url = ``${window.location.origin}/sap/bc/adt/oo/classes/${z2ui5.responseData.S_FRONT.APP}/source/main``;` && |\n| && ` const url = ``${window.location.origin}/sap/bc/adt/oo/classes/${z2ui5.responseData.S_FRONT.APP}/source/main``;` && |\n| &&
` const content = atob('PGlmcmFtZSBpZD0idGVzdCIgc3JjPSInICsgdXJsICsgJyIgaGVpZ2h0PSI4MDBweCIgd2lkdGg9IjEyMDBweCIgLz4=').replace("' + url + '", url);` && |\n| && ` const content = atob('PGlmcmFtZSBpZD0idGVzdCIgc3JjPSInICsgdXJsICsgJyIgaGVpZ2h0PSI4MDBweCIgd2lkdGg9IjEyMDBweCIgLz4=').replace("' + url + '", url);` && |\n| &&
` contentControl.setProperty("content", content);` && |\n| && ` contentControl.setProperty("content", content);` && |\n| &&
` const modelData = oEvent.getSource().getModel().oData;` && |\n| && ` const modelData = oEvent.getSource().getModel().oData;` && |\n| &&
` modelData.editor_visible = false;` && |\n| && ` modelData.editor_visible = false;` && |\n| &&
` modelData.source_visible = true;` && |\n| && ` modelData.source_visible = true;` && |\n| &&
` oEvent.getSource().getModel().refresh();` && |\n| && ` oEvent.getSource().getModel().refresh();` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
`` && |\n| && `` && |\n| &&
` displayEditor: function (oEvent, content, type, xcontent = "") {` && |\n| && ` displayEditor: function (oEvent, content, type, xcontent = "") {` && |\n| &&
` const modelData = oEvent.getSource().getModel().oData;` && |\n| && ` const modelData = oEvent.getSource().getModel().oData;` && |\n| &&
` modelData.editor_visible = true;` && |\n| && ` modelData.editor_visible = true;` && |\n| &&
` modelData.source_visible = false;` && |\n| && ` modelData.source_visible = false;` && |\n| &&
` modelData.isTemplating = content.includes("xmlns:template");` && |\n| && ` modelData.isTemplating = content.includes("xmlns:template");` && |\n| &&
` modelData.value = content;` && |\n| && ` modelData.value = content;` && |\n| &&
` modelData.previousValue = content;` && |\n| && ` modelData.previousValue = content;` && |\n| &&
` modelData.xContent = xcontent;` && |\n| && ` modelData.xContent = xcontent;` && |\n| &&
` modelData.type = type;` && |\n| && ` modelData.type = type;` && |\n| &&
` oEvent.getSource().getModel().refresh();` && |\n| && ` oEvent.getSource().getModel().refresh();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
`` && |\n| && `` && |\n| &&
` onTemplatingPress: function (oEvent) {` && |\n| && ` onTemplatingPress: function (oEvent) {` && |\n| &&
` const modelData = oEvent.getSource().getModel().oData;` && |\n| && ` const modelData = oEvent.getSource().getModel().oData;` && |\n| &&
` modelData.value = oEvent.getSource().getPressed() ? modelData.xContent : modelData.previousValue;` && |\n| && ` modelData.value = oEvent.getSource().getPressed() ? modelData.xContent : modelData.previousValue;` && |\n| &&
` oEvent.getSource().getModel().refresh();` && |\n| && ` oEvent.getSource().getModel().refresh();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
`` && |\n| && `` && |\n| &&
` onClose: function () {` && |\n| && ` onClose: function () {` && |\n| &&
` this.oDialog.close();` && |\n| && ` this.oDialog.close();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
`` && |\n| && `` && |\n| &&
` async show() {` && |\n| && ` async show() {` && |\n| &&
` if (!this.oDialog) {` && |\n| && ` if (!this.oDialog) {` && |\n| &&
` this.oDialog = await Fragment.load({` && |\n| && ` this.oDialog = await Fragment.load({` && |\n| &&
` name: "z2ui5.cc.DebugTool",` && |\n| && ` name: "z2ui5.cc.DebugTool",` && |\n| &&
` controller: this,` && |\n| && ` controller: this,` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
`` && |\n| && `` && |\n| &&
` const value = JSON.stringify(z2ui5.responseData, null, 3);` && |\n| && ` const value = JSON.stringify(z2ui5.responseData, null, 3);` && |\n| &&
` const oData = {` && |\n| && ` const oData = {` && |\n| &&
` type: 'json',` && |\n| && ` type: 'json',` && |\n| &&
` source_visible: false,` && |\n| && ` source_visible: false,` && |\n| &&
` editor_visible: true,` && |\n| && ` editor_visible: true,` && |\n| &&
` value: value,` && |\n| && ` value: value,` && |\n| &&
` xContent: '',` && |\n| && ` xContent: '',` && |\n| &&
` previousValue: value,` && |\n| && ` previousValue: value,` && |\n| &&
` isTemplating: false,` && |\n| && ` isTemplating: false,` && |\n| &&
` templatingSource: false,` && |\n| && ` templatingSource: false,` && |\n| &&
` activeNest1: z2ui5?.oViewNest?.mProperties?.viewContent !== undefined,` && |\n| && ` activeNest1: z2ui5?.oViewNest?.mProperties?.viewContent !== undefined,` && |\n| &&
` activeNest2: z2ui5?.oViewNest2?.mProperties?.viewContent !== undefined,` && |\n| && ` activeNest2: z2ui5?.oViewNest2?.mProperties?.viewContent !== undefined,` && |\n| &&
` activePopup: z2ui5?.oResponse?.PARAMS?.S_POPUP?.XML !== undefined,` && |\n| && ` activePopup: z2ui5?.oResponse?.PARAMS?.S_POPUP?.XML !== undefined,` && |\n| &&
` activePopover: z2ui5?.oResponse?.PARAMS?.S_POPOVER?.XML !== undefined,` && |\n| && ` activePopover: z2ui5?.oResponse?.PARAMS?.S_POPOVER?.XML !== undefined,` && |\n| &&
` };` && |\n| && ` };` && |\n| &&
` const oModel = new JSONModel(oData);` && |\n| && ` const oModel = new JSONModel(oData);` && |\n| &&
`` && |\n| && `` && |\n| &&
` this.oDialog.addStyleClass('dbg-ltr');` && |\n| && ` this.oDialog.addStyleClass('dbg-ltr');` && |\n| &&
` this.oDialog.setModel(oModel);` && |\n| && ` this.oDialog.setModel(oModel);` && |\n| &&
` this.oDialog.open();` && |\n| && ` this.oDialog.open();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
`});` && |\n| && `});` && |\n| &&
`` && |\n| && `` && |\n| &&
``. ``.
ENDMETHOD. ENDMETHOD.

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_DEBUGTOOL_JS</CLSNAME> <CLSNAME>Z2UI5_CL_APP_DEBUGTOOL_JS</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_DEBUGTOOL_JS</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_DEBUGTOOL_JS (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -1,4 +1,4 @@
CLASS z2ui5_cl_app_DebugTool_xml DEFINITION CLASS z2ui5_cl_app_debugtool_xml DEFINITION
PUBLIC PUBLIC
FINAL FINAL
CREATE PUBLIC . CREATE PUBLIC .
@ -14,11 +14,11 @@ CLASS z2ui5_cl_app_DebugTool_xml DEFINITION
ENDCLASS. ENDCLASS.
CLASS z2ui5_cl_app_DebugTool_xml IMPLEMENTATION. CLASS z2ui5_cl_app_debugtool_xml IMPLEMENTATION.
METHOD get. METHOD get.
result = `<core:FragmentDefinition` && result = `<core:FragmentDefinition` &&
` xmlns="sap.m"` && ` xmlns="sap.m"` &&
` xmlns:mvc="sap.ui.core.mvc"` && ` xmlns:mvc="sap.ui.core.mvc"` &&
` xmlns:core="sap.ui.core"` && ` xmlns:core="sap.ui.core"` &&
@ -34,15 +34,15 @@ CLASS z2ui5_cl_app_DebugTool_xml IMPLEMENTATION.
` select="onItemSelect"` && ` select="onItemSelect"` &&
` >` && ` >` &&
` <items>` && ` <items>` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Config"` && ` text="Config"` &&
` key="CONFIG"` && ` key="CONFIG"` &&
` enabled="true"` && ` enabled="true"` &&
` />` && ` />` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Previous Request"` && ` text="Previous Request"` &&
` key="REQUEST"` && ` key="REQUEST"` &&
` enabled="true"` && ` enabled="true"` &&
` />` && ` />` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Response"` && ` text="Response"` &&
@ -63,47 +63,47 @@ CLASS z2ui5_cl_app_DebugTool_xml IMPLEMENTATION.
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Popup"` && ` text="Popup"` &&
` key="POPUP"` && ` key="POPUP"` &&
` enabled="{/activePopup}"` && ` enabled="{/activePopup}"` &&
` />` && ` />` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Popup Model"` && ` text="Popup Model"` &&
` key="POPUP_MODEL"` && ` key="POPUP_MODEL"` &&
` enabled="{/activePopup}"` && ` enabled="{/activePopup}"` &&
` />` && ` />` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Popover"` && ` text="Popover"` &&
` key="POPOVER"` && ` key="POPOVER"` &&
` enabled="{/activePopover}"` && ` enabled="{/activePopover}"` &&
` />` && ` />` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Popover Model"` && ` text="Popover Model"` &&
` key="POPOVER_MODEL"` && ` key="POPOVER_MODEL"` &&
` enabled="{/activePopover}"` && ` enabled="{/activePopover}"` &&
` />` && ` />` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Nest1"` && ` text="Nest1"` &&
` key="NEST1"` && ` key="NEST1"` &&
` enabled="{/activeNest1}"` && ` enabled="{/activeNest1}"` &&
` />` && ` />` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Nest1 Model"` && ` text="Nest1 Model"` &&
` key="NEST1_MODEL"` && ` key="NEST1_MODEL"` &&
` enabled="{/activeNest1}"` && ` enabled="{/activeNest1}"` &&
` />` && ` />` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Nest2"` && ` text="Nest2"` &&
` key="NEST2"` && ` key="NEST2"` &&
` enabled="{/activeNest2}"` && ` enabled="{/activeNest2}"` &&
` />` && ` />` &&
` <IconTabFilter` && ` <IconTabFilter` &&
` text="Nest2 Model"` && ` text="Nest2 Model"` &&
` key="NEST2_MODEL"` && ` key="NEST2_MODEL"` &&
` enabled="{/activeNest2}"` && ` enabled="{/activeNest2}"` &&
` />` && ` />` &&
` </items>` && ` </items>` &&
` </IconTabHeader>` && ` </IconTabHeader>` &&
` <VBox>` && ` <VBox>` &&
` <ToggleButton text="Source XML after Templating" visible="{/isTemplating}" pressed="{/templatingSource}" press="onTemplatingPress" />` && ` <ToggleButton text="Source XML after Templating" visible="{/isTemplating}" pressed="{/templatingSource}" press="onTemplatingPress" />` &&
` <ce:CodeEditor` && ` <ce:CodeEditor` &&
` type="{/type}"` && ` type="{/type}"` &&
` value="{/value}"` && ` value="{/value}"` &&
@ -111,9 +111,9 @@ CLASS z2ui5_cl_app_DebugTool_xml IMPLEMENTATION.
` width="10000px"` && ` width="10000px"` &&
` visible="{/editor_visible}"` && ` visible="{/editor_visible}"` &&
` /></VBox>` && ` /></VBox>` &&
` <VBox visible="{/source_visible}">` && ` <VBox visible="{/source_visible}">` &&
` <core:HTML/>` && ` <core:HTML/>` &&
` </VBox>` && ` </VBox>` &&
` <endButton>` && ` <endButton>` &&
` <Button` && ` <Button` &&
` text="Close"` && ` text="Close"` &&

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_DEBUGTOOL_XML</CLSNAME> <CLSNAME>Z2UI5_CL_APP_DEBUGTOOL_XML</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_DEBUGTOOL_XML</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_DEBUGTOOL_XML (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -18,7 +18,7 @@ CLASS z2ui5_cl_app_index_html IMPLEMENTATION.
METHOD get. METHOD get.
result = `<!DOCTYPE html>` && result = `<!DOCTYPE html>` &&
`<html lang="en">` && `<html lang="en">` &&
`<head>` && `<head>` &&
` <meta charset="UTF-8">` && ` <meta charset="UTF-8">` &&

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_INDEX_HTML</CLSNAME> <CLSNAME>Z2UI5_CL_APP_INDEX_HTML</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_INDEX_HTML</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_INDEX_HTML (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -18,7 +18,7 @@ CLASS z2ui5_cl_app_manifest_json IMPLEMENTATION.
METHOD get. METHOD get.
result = `{` && result = `{` &&
` "_version": "1.65.0",` && ` "_version": "1.65.0",` &&
` "sap.app": {` && ` "sap.app": {` &&
` "id": "z2ui5",` && ` "id": "z2ui5",` &&

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_MANIFEST_JSON</CLSNAME> <CLSNAME>Z2UI5_CL_APP_MANIFEST_JSON</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_MANIFEST_JSON</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_MANIFEST_JSON (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -18,25 +18,25 @@ CLASS z2ui5_cl_app_models_js IMPLEMENTATION.
METHOD get. METHOD get.
result = `sap.ui.define([` && |\n| && result = `sap.ui.define([` && |\n| &&
` "sap/ui/model/json/JSONModel",` && |\n| && ` "sap/ui/model/json/JSONModel",` && |\n| &&
` "sap/ui/Device"` && |\n| && ` "sap/ui/Device"` && |\n| &&
`],` && |\n| && `],` && |\n| &&
`function (JSONModel, Device) {` && |\n| && `function (JSONModel, Device) {` && |\n| &&
` "use strict";` && |\n| && ` "use strict";` && |\n| &&
`` && |\n| && `` && |\n| &&
` return {` && |\n| && ` return {` && |\n| &&
` /**` && |\n| && ` /**` && |\n| &&
` * Provides runtime info for the device the UI5 app is running on as JSONModel` && |\n| && ` * Provides runtime info for the device the UI5 app is running on as JSONModel` && |\n| &&
` */` && |\n| && ` */` && |\n| &&
` createDeviceModel: function () {` && |\n| && ` createDeviceModel: function () {` && |\n| &&
` var oModel = new JSONModel(Device);` && |\n| && ` var oModel = new JSONModel(Device);` && |\n| &&
` oModel.setDefaultBindingMode("OneWay");` && |\n| && ` oModel.setDefaultBindingMode("OneWay");` && |\n| &&
` return oModel;` && |\n| && ` return oModel;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` };` && |\n| && ` };` && |\n| &&
`` && |\n| && `` && |\n| &&
`});` && |\n| && `});` && |\n| &&
``. ``.
ENDMETHOD. ENDMETHOD.

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_MODELS_JS</CLSNAME> <CLSNAME>Z2UI5_CL_APP_MODELS_JS</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_MODELS_JS</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_MODELS_JS (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -1,4 +1,4 @@
CLASS z2ui5_cl_app_Server_js DEFINITION CLASS z2ui5_cl_app_server_js DEFINITION
PUBLIC PUBLIC
FINAL FINAL
CREATE PUBLIC . CREATE PUBLIC .
@ -14,157 +14,157 @@ CLASS z2ui5_cl_app_Server_js DEFINITION
ENDCLASS. ENDCLASS.
CLASS z2ui5_cl_app_Server_js IMPLEMENTATION. CLASS z2ui5_cl_app_server_js IMPLEMENTATION.
METHOD get. METHOD get.
result = `sap.ui.define(["sap/ui/core/BusyIndicator","sap/m/MessageBox"` && |\n| && result = `sap.ui.define(["sap/ui/core/BusyIndicator","sap/m/MessageBox"` && |\n| &&
`],` && |\n| && `],` && |\n| &&
` function (BusyIndicator, MessageBox) {` && |\n| && ` function (BusyIndicator, MessageBox) {` && |\n| &&
` "use strict";` && |\n| && ` "use strict";` && |\n| &&
`` && |\n| && `` && |\n| &&
` return {` && |\n| && ` return {` && |\n| &&
`` && |\n| && `` && |\n| &&
` endSession: function () {` && |\n| && ` endSession: function () {` && |\n| &&
`` && |\n| && `` && |\n| &&
` if (z2ui5.contextId) {` && |\n| && ` if (z2ui5.contextId) {` && |\n| &&
` fetch(z2ui5.oConfig.pathname, {` && |\n| && ` fetch(z2ui5.oConfig.pathname, {` && |\n| &&
` method: 'HEAD',` && |\n| && ` method: 'HEAD',` && |\n| &&
` keepalive: true,` && |\n| && ` keepalive: true,` && |\n| &&
` headers: {` && |\n| && ` headers: {` && |\n| &&
` 'sap-terminate': 'session',` && |\n| && ` 'sap-terminate': 'session',` && |\n| &&
` 'sap-contextid': z2ui5.contextId,` && |\n| && ` 'sap-contextid': z2ui5.contextId,` && |\n| &&
` 'sap-contextid-accept': 'header'` && |\n| && ` 'sap-contextid-accept': 'header'` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` delete z2ui5.contextId;` && |\n| && ` delete z2ui5.contextId;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
`` && |\n| && `` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` Roundtrip() {` && |\n| && ` Roundtrip() {` && |\n| &&
` z2ui5.checkTimerActive = false;` && |\n| && ` z2ui5.checkTimerActive = false;` && |\n| &&
` z2ui5.checkNestAfter = false;` && |\n| && ` z2ui5.checkNestAfter = false;` && |\n| &&
` z2ui5.checkNestAfter2 = false;` && |\n| && ` z2ui5.checkNestAfter2 = false;` && |\n| &&
` let event = (args) => {` && |\n| && ` let event = (args) => {` && |\n| &&
` if (args != undefined) {` && |\n| && ` if (args != undefined) {` && |\n| &&
` return args[0][0];` && |\n| && ` return args[0][0];` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` };` && |\n| && ` };` && |\n| &&
`` && |\n| && `` && |\n| &&
` z2ui5.oBody ??= {};` && |\n| && ` z2ui5.oBody ??= {};` && |\n| &&
` z2ui5.oBody.S_FRONT = {` && |\n| && ` z2ui5.oBody.S_FRONT = {` && |\n| &&
` ID: z2ui5?.oBody?.ID,` && |\n| && ` ID: z2ui5?.oBody?.ID,` && |\n| &&
` CONFIG: z2ui5.oConfig,` && |\n| && ` CONFIG: z2ui5.oConfig,` && |\n| &&
` XX: z2ui5?.oBody?.XX,` && |\n| && ` XX: z2ui5?.oBody?.XX,` && |\n| &&
` ORIGIN: window.location.origin,` && |\n| && ` ORIGIN: window.location.origin,` && |\n| &&
` PATHNAME: window.location.pathname,` && |\n| && ` PATHNAME: window.location.pathname,` && |\n| &&
` SEARCH: (z2ui5.search) ? z2ui5.search : window.location.search,` && |\n| && ` SEARCH: (z2ui5.search) ? z2ui5.search : window.location.search,` && |\n| &&
` VIEW: z2ui5.oBody?.VIEWNAME,` && |\n| && ` VIEW: z2ui5.oBody?.VIEWNAME,` && |\n| &&
` EVENT: event(z2ui5.oBody?.ARGUMENTS),` && |\n| && ` EVENT: event(z2ui5.oBody?.ARGUMENTS),` && |\n| &&
` HASH: window.location.hash,` && |\n| && ` HASH: window.location.hash,` && |\n| &&
` };` && |\n| && ` };` && |\n| &&
` if (z2ui5.oBody?.ARGUMENTS != undefined) {` && |\n| && ` if (z2ui5.oBody?.ARGUMENTS != undefined) {` && |\n| &&
` if (z2ui5.oBody?.ARGUMENTS.length > 0) {` && |\n| && ` if (z2ui5.oBody?.ARGUMENTS.length > 0) {` && |\n| &&
` z2ui5.oBody?.ARGUMENTS.shift();` && |\n| && ` z2ui5.oBody?.ARGUMENTS.shift();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.oBody.S_FRONT.T_EVENT_ARG = z2ui5.oBody?.ARGUMENTS;` && |\n| && ` z2ui5.oBody.S_FRONT.T_EVENT_ARG = z2ui5.oBody?.ARGUMENTS;` && |\n| &&
` delete z2ui5.oBody.ID;` && |\n| && ` delete z2ui5.oBody.ID;` && |\n| &&
` delete z2ui5.oBody?.VIEWNAME;` && |\n| && ` delete z2ui5.oBody?.VIEWNAME;` && |\n| &&
` delete z2ui5.oBody?.S_FRONT.XX;` && |\n| && ` delete z2ui5.oBody?.S_FRONT.XX;` && |\n| &&
` delete z2ui5.oBody?.ARGUMENTS;` && |\n| && ` delete z2ui5.oBody?.ARGUMENTS;` && |\n| &&
` if (!z2ui5.oBody.S_FRONT.T_EVENT_ARG) {` && |\n| && ` if (!z2ui5.oBody.S_FRONT.T_EVENT_ARG) {` && |\n| &&
` delete z2ui5.oBody.S_FRONT.T_EVENT_ARG;` && |\n| && ` delete z2ui5.oBody.S_FRONT.T_EVENT_ARG;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (z2ui5.oBody.S_FRONT.T_EVENT_ARG) {` && |\n| && ` if (z2ui5.oBody.S_FRONT.T_EVENT_ARG) {` && |\n| &&
` if (z2ui5.oBody.S_FRONT.T_EVENT_ARG.length == 0) {` && |\n| && ` if (z2ui5.oBody.S_FRONT.T_EVENT_ARG.length == 0) {` && |\n| &&
` delete z2ui5.oBody.S_FRONT.T_EVENT_ARG;` && |\n| && ` delete z2ui5.oBody.S_FRONT.T_EVENT_ARG;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (z2ui5.oBody.S_FRONT.T_STARTUP_PARAMETERS == undefined) {` && |\n| && ` if (z2ui5.oBody.S_FRONT.T_STARTUP_PARAMETERS == undefined) {` && |\n| &&
` delete z2ui5.oBody.S_FRONT.T_STARTUP_PARAMETERS;` && |\n| && ` delete z2ui5.oBody.S_FRONT.T_STARTUP_PARAMETERS;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (z2ui5.oBody.S_FRONT.SEARCH == '') {` && |\n| && ` if (z2ui5.oBody.S_FRONT.SEARCH == '') {` && |\n| &&
` delete z2ui5.oBody.S_FRONT.SEARCH;` && |\n| && ` delete z2ui5.oBody.S_FRONT.SEARCH;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (!z2ui5.oBody.XX) {` && |\n| && ` if (!z2ui5.oBody.XX) {` && |\n| &&
` delete z2ui5.oBody.XX;` && |\n| && ` delete z2ui5.oBody.XX;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` this.readHttp();` && |\n| && ` this.readHttp();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
`` && |\n| && `` && |\n| &&
` async readHttp() {` && |\n| && ` async readHttp() {` && |\n| &&
` const response = await fetch(z2ui5.oConfig.pathname, {` && |\n| && ` const response = await fetch(z2ui5.oConfig.pathname, {` && |\n| &&
` method: 'POST',` && |\n| && ` method: 'POST',` && |\n| &&
` headers: {` && |\n| && ` headers: {` && |\n| &&
` 'Content-Type': 'application/json',` && |\n| && ` 'Content-Type': 'application/json',` && |\n| &&
` 'sap-contextid-accept': 'header',` && |\n| && ` 'sap-contextid-accept': 'header',` && |\n| &&
` 'sap-contextid': z2ui5.contextId` && |\n| && ` 'sap-contextid': z2ui5.contextId` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` body: JSON.stringify(z2ui5.oBody)` && |\n| && ` body: JSON.stringify(z2ui5.oBody)` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` z2ui5.contextId = response.headers.get("sap-contextid");` && |\n| && ` z2ui5.contextId = response.headers.get("sap-contextid");` && |\n| &&
` if (!response.ok) {` && |\n| && ` if (!response.ok) {` && |\n| &&
` const responseText = await response.text();` && |\n| && ` const responseText = await response.text();` && |\n| &&
` this.responseError(responseText);` && |\n| && ` this.responseError(responseText);` && |\n| &&
` } else {` && |\n| && ` } else {` && |\n| &&
` const responseData = await response.json();` && |\n| && ` const responseData = await response.json();` && |\n| &&
` z2ui5.responseData = responseData;` && |\n| && ` z2ui5.responseData = responseData;` && |\n| &&
` this.responseSuccess({` && |\n| && ` this.responseSuccess({` && |\n| &&
` ID: responseData.S_FRONT.ID,` && |\n| && ` ID: responseData.S_FRONT.ID,` && |\n| &&
` PARAMS: responseData.S_FRONT.PARAMS,` && |\n| && ` PARAMS: responseData.S_FRONT.PARAMS,` && |\n| &&
` OVIEWMODEL: responseData.MODEL,` && |\n| && ` OVIEWMODEL: responseData.MODEL,` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` async responseSuccess(response) {` && |\n| && ` async responseSuccess(response) {` && |\n| &&
` try {` && |\n| && ` try {` && |\n| &&
` z2ui5.oResponse = response;` && |\n| && ` z2ui5.oResponse = response;` && |\n| &&
` if (z2ui5.oResponse.PARAMS?.S_VIEW?.CHECK_DESTROY) {` && |\n| && ` if (z2ui5.oResponse.PARAMS?.S_VIEW?.CHECK_DESTROY) {` && |\n| &&
` z2ui5.oController.ViewDestroy();` && |\n| && ` z2ui5.oController.ViewDestroy();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` ; if (z2ui5.oResponse.PARAMS?.S_FOLLOW_UP_ACTION?.CUSTOM_JS) {` && |\n| && ` ; if (z2ui5.oResponse.PARAMS?.S_FOLLOW_UP_ACTION?.CUSTOM_JS) {` && |\n| &&
` setTimeout(() => {` && |\n| && ` setTimeout(() => {` && |\n| &&
` let mParams = z2ui5.oResponse?.PARAMS.S_FOLLOW_UP_ACTION.CUSTOM_JS.split("'");` && |\n| && ` let mParams = z2ui5.oResponse?.PARAMS.S_FOLLOW_UP_ACTION.CUSTOM_JS.split("'");` && |\n| &&
` let mParamsEF = mParams.filter((val, index) => index % 2)` && |\n| && ` let mParamsEF = mParams.filter((val, index) => index % 2)` && |\n| &&
` if (mParamsEF.length) {` && |\n| && ` if (mParamsEF.length) {` && |\n| &&
` z2ui5.oController.eF.apply(undefined, mParamsEF);` && |\n| && ` z2ui5.oController.eF.apply(undefined, mParamsEF);` && |\n| &&
` } else {` && |\n| && ` } else {` && |\n| &&
` Function("return " + mParams[0])();` && |\n| && ` Function("return " + mParams[0])();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }, 100);` && |\n| && ` }, 100);` && |\n| &&
` };` && |\n| && ` };` && |\n| &&
` z2ui5.oController.showMessage('S_MSG_TOAST', z2ui5.oResponse.PARAMS);` && |\n| && ` z2ui5.oController.showMessage('S_MSG_TOAST', z2ui5.oResponse.PARAMS);` && |\n| &&
` z2ui5.oController.showMessage('S_MSG_BOX', z2ui5.oResponse.PARAMS);` && |\n| && ` z2ui5.oController.showMessage('S_MSG_BOX', z2ui5.oResponse.PARAMS);` && |\n| &&
` if (z2ui5.oResponse.PARAMS?.S_VIEW?.XML) {` && |\n| && ` if (z2ui5.oResponse.PARAMS?.S_VIEW?.XML) {` && |\n| &&
` if (z2ui5.oResponse.PARAMS?.S_VIEW?.XML !== '') {` && |\n| && ` if (z2ui5.oResponse.PARAMS?.S_VIEW?.XML !== '') {` && |\n| &&
` z2ui5.oController.ViewDestroy();` && |\n| && ` z2ui5.oController.ViewDestroy();` && |\n| &&
` await z2ui5.oController.displayView(z2ui5.oResponse.PARAMS.S_VIEW.XML, z2ui5.oResponse.OVIEWMODEL);` && |\n| && ` await z2ui5.oController.displayView(z2ui5.oResponse.PARAMS.S_VIEW.XML, z2ui5.oResponse.OVIEWMODEL);` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.oController.updateModelIfRequired('S_VIEW', z2ui5.oView);` && |\n| && ` z2ui5.oController.updateModelIfRequired('S_VIEW', z2ui5.oView);` && |\n| &&
` z2ui5.oController.updateModelIfRequired('S_VIEW_NEST', z2ui5.oViewNest);` && |\n| && ` z2ui5.oController.updateModelIfRequired('S_VIEW_NEST', z2ui5.oViewNest);` && |\n| &&
` z2ui5.oController.updateModelIfRequired('S_VIEW_NEST2', z2ui5.oViewNest2);` && |\n| && ` z2ui5.oController.updateModelIfRequired('S_VIEW_NEST2', z2ui5.oViewNest2);` && |\n| &&
` z2ui5.oController.updateModelIfRequired('S_POPUP', z2ui5.oViewPopup);` && |\n| && ` z2ui5.oController.updateModelIfRequired('S_POPUP', z2ui5.oViewPopup);` && |\n| &&
` z2ui5.oController.updateModelIfRequired('S_POPOVER', z2ui5.oViewPopover);` && |\n| && ` z2ui5.oController.updateModelIfRequired('S_POPOVER', z2ui5.oViewPopover);` && |\n| &&
` z2ui5.oController.onAfterRendering();` && |\n| && ` z2ui5.oController.onAfterRendering();` && |\n| &&
` } catch (e) {` && |\n| && ` } catch (e) {` && |\n| &&
` BusyIndicator.hide();` && |\n| && ` BusyIndicator.hide();` && |\n| &&
` if (e.message.includes("openui5")) {` && |\n| && ` if (e.message.includes("openui5")) {` && |\n| &&
` if (e.message.includes("script load error")) {` && |\n| && ` if (e.message.includes("script load error")) {` && |\n| &&
` z2ui5.oController.checkSDKcompatibility(e)` && |\n| && ` z2ui5.oController.checkSDKcompatibility(e)` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` } else {` && |\n| && ` } else {` && |\n| &&
` MessageBox.error(e.toLocaleString());` && |\n| && ` MessageBox.error(e.toLocaleString());` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` responseError(response) {` && |\n| && ` responseError(response) {` && |\n| &&
` document.write(response);` && |\n| && ` document.write(response);` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` };` && |\n| && ` };` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
``. ``.
ENDMETHOD. ENDMETHOD.

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_SERVER_JS</CLSNAME> <CLSNAME>Z2UI5_CL_APP_SERVER_JS</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_SERVER_JS</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_SERVER_JS (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -18,7 +18,7 @@ CLASS z2ui5_cl_app_style_css IMPLEMENTATION.
METHOD get. METHOD get.
result = `/* Enter your custom styles here */` && |\n| && result = `/* Enter your custom styles here */` && |\n| &&
``. ``.
ENDMETHOD. ENDMETHOD.

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_STYLE_CSS</CLSNAME> <CLSNAME>Z2UI5_CL_APP_STYLE_CSS</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_STYLE_CSS</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_STYLE_CSS (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -1,4 +1,4 @@
CLASS z2ui5_cl_app_View1_js DEFINITION CLASS z2ui5_cl_app_view1_js DEFINITION
PUBLIC PUBLIC
FINAL FINAL
CREATE PUBLIC . CREATE PUBLIC .
@ -14,478 +14,478 @@ CLASS z2ui5_cl_app_View1_js DEFINITION
ENDCLASS. ENDCLASS.
CLASS z2ui5_cl_app_View1_js IMPLEMENTATION. CLASS z2ui5_cl_app_view1_js IMPLEMENTATION.
METHOD get. METHOD get.
result = `sap.ui.define(["sap/ui/core/mvc/Controller", "sap/ui/core/mvc/XMLView", "sap/ui/model/json/JSONModel",` && |\n| && result = `sap.ui.define(["sap/ui/core/mvc/Controller", "sap/ui/core/mvc/XMLView", "sap/ui/model/json/JSONModel",` && |\n| &&
` "sap/ui/core/BusyIndicator", "sap/m/MessageBox", "sap/m/MessageToast", "sap/ui/core/Fragment", "sap/m/BusyDialog",` && |\n| && ` "sap/ui/core/BusyIndicator", "sap/m/MessageBox", "sap/m/MessageToast", "sap/ui/core/Fragment", "sap/m/BusyDialog",` && |\n| &&
` "sap/ui/VersionInfo", "z2ui5/cc/Server",` && |\n| && ` "sap/ui/VersionInfo", "z2ui5/cc/Server",` && |\n| &&
` ],` && |\n| && ` ],` && |\n| &&
` function(Controller, XMLView, JSONModel, BusyIndicator, MessageBox, MessageToast, Fragment, mBusyDialog, VersionInfo,` && |\n| && ` function(Controller, XMLView, JSONModel, BusyIndicator, MessageBox, MessageToast, Fragment, mBusyDialog, VersionInfo,` && |\n| &&
` Server ) {` && |\n| && ` Server ) {` && |\n| &&
` "use strict";` && |\n| && ` "use strict";` && |\n| &&
` return Controller.extend("z2ui5.controller.View1", {` && |\n| && ` return Controller.extend("z2ui5.controller.View1", {` && |\n| &&
`` && |\n| && `` && |\n| &&
` onInit (){` && |\n| && ` onInit (){` && |\n| &&
`` && |\n| && `` && |\n| &&
` z2ui5.oRouter.attachRouteMatched(function(oEvent) {` && |\n| && ` z2ui5.oRouter.attachRouteMatched(function(oEvent) {` && |\n| &&
` z2ui5.checkInit = true;` && |\n| && ` z2ui5.checkInit = true;` && |\n| &&
` Server.Roundtrip();` && |\n| && ` Server.Roundtrip();` && |\n| &&
` }, this);` && |\n| && ` }, this);` && |\n| &&
`` && |\n| && `` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` async onAfterRendering() {` && |\n| && ` async onAfterRendering() {` && |\n| &&
`` && |\n| && `` && |\n| &&
` if (!z2ui5.oResponse){` && |\n| && ` if (!z2ui5.oResponse){` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
`` && |\n| && `` && |\n| &&
` try {` && |\n| && ` try {` && |\n| &&
` if (!z2ui5.oResponse.PARAMS) {` && |\n| && ` if (!z2ui5.oResponse.PARAMS) {` && |\n| &&
` BusyIndicator.hide();` && |\n| && ` BusyIndicator.hide();` && |\n| &&
` z2ui5.isBusy = false;` && |\n| && ` z2ui5.isBusy = false;` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` const {S_POPUP, S_VIEW_NEST, S_VIEW_NEST2, S_POPOVER} = z2ui5.oResponse.PARAMS;` && |\n| && ` const {S_POPUP, S_VIEW_NEST, S_VIEW_NEST2, S_POPOVER} = z2ui5.oResponse.PARAMS;` && |\n| &&
` if (S_POPUP?.CHECK_DESTROY) {` && |\n| && ` if (S_POPUP?.CHECK_DESTROY) {` && |\n| &&
` z2ui5.oController.PopupDestroy();` && |\n| && ` z2ui5.oController.PopupDestroy();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (S_POPOVER?.CHECK_DESTROY) {` && |\n| && ` if (S_POPOVER?.CHECK_DESTROY) {` && |\n| &&
` z2ui5.oController.PopoverDestroy();` && |\n| && ` z2ui5.oController.PopoverDestroy();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (S_POPUP?.XML) {` && |\n| && ` if (S_POPUP?.XML) {` && |\n| &&
` z2ui5.oController.PopupDestroy();` && |\n| && ` z2ui5.oController.PopupDestroy();` && |\n| &&
` await this.displayFragment(S_POPUP.XML, 'oViewPopup');` && |\n| && ` await this.displayFragment(S_POPUP.XML, 'oViewPopup');` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (!z2ui5.checkNestAfter) {` && |\n| && ` if (!z2ui5.checkNestAfter) {` && |\n| &&
` if (S_VIEW_NEST?.XML) {` && |\n| && ` if (S_VIEW_NEST?.XML) {` && |\n| &&
` z2ui5.oController.NestViewDestroy();` && |\n| && ` z2ui5.oController.NestViewDestroy();` && |\n| &&
` await this.displayNestedView(S_VIEW_NEST.XML, 'oViewNest', 'S_VIEW_NEST');` && |\n| && ` await this.displayNestedView(S_VIEW_NEST.XML, 'oViewNest', 'S_VIEW_NEST');` && |\n| &&
` z2ui5.checkNestAfter = true;` && |\n| && ` z2ui5.checkNestAfter = true;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (!z2ui5.checkNestAfter2) {` && |\n| && ` if (!z2ui5.checkNestAfter2) {` && |\n| &&
` if (S_VIEW_NEST2?.XML) {` && |\n| && ` if (S_VIEW_NEST2?.XML) {` && |\n| &&
` z2ui5.oController.NestViewDestroy2();` && |\n| && ` z2ui5.oController.NestViewDestroy2();` && |\n| &&
` await this.displayNestedView2(S_VIEW_NEST2.XML, 'oViewNest2', 'S_VIEW_NEST2');` && |\n| && ` await this.displayNestedView2(S_VIEW_NEST2.XML, 'oViewNest2', 'S_VIEW_NEST2');` && |\n| &&
` z2ui5.checkNestAfter2 = true;` && |\n| && ` z2ui5.checkNestAfter2 = true;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (S_POPOVER?.XML) {` && |\n| && ` if (S_POPOVER?.XML) {` && |\n| &&
` await this.displayPopover(S_POPOVER.XML, 'oViewPopover', S_POPOVER.OPEN_BY_ID);` && |\n| && ` await this.displayPopover(S_POPOVER.XML, 'oViewPopover', S_POPOVER.OPEN_BY_ID);` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` BusyIndicator.hide();` && |\n| && ` BusyIndicator.hide();` && |\n| &&
` z2ui5.isBusy = false;` && |\n| && ` z2ui5.isBusy = false;` && |\n| &&
` z2ui5.onAfterRendering.forEach(item => {` && |\n| && ` z2ui5.onAfterRendering.forEach(item => {` && |\n| &&
` if (item !== undefined) {` && |\n| && ` if (item !== undefined) {` && |\n| &&
` item();` && |\n| && ` item();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` )` && |\n| && ` )` && |\n| &&
` } catch (e) {` && |\n| && ` } catch (e) {` && |\n| &&
` BusyIndicator.hide();` && |\n| && ` BusyIndicator.hide();` && |\n| &&
` z2ui5.isBusy = false;` && |\n| && ` z2ui5.isBusy = false;` && |\n| &&
` MessageBox.error(e.toLocaleString(), {` && |\n| && ` MessageBox.error(e.toLocaleString(), {` && |\n| &&
` title: "Unexpected Error Occured - App Terminated",` && |\n| && ` title: "Unexpected Error Occured - App Terminated",` && |\n| &&
` actions: [],` && |\n| && ` actions: [],` && |\n| &&
` onClose: () => {` && |\n| && ` onClose: () => {` && |\n| &&
` new mBusyDialog({` && |\n| && ` new mBusyDialog({` && |\n| &&
` text: "Please Restart the App"` && |\n| && ` text: "Please Restart the App"` && |\n| &&
` }).open();` && |\n| && ` }).open();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` })` && |\n| && ` })` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` async displayFragment(xml, viewProp) {` && |\n| && ` async displayFragment(xml, viewProp) {` && |\n| &&
` let oview_model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| && ` let oview_model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| &&
` const oFragment = await Fragment.load({` && |\n| && ` const oFragment = await Fragment.load({` && |\n| &&
` definition: xml,` && |\n| && ` definition: xml,` && |\n| &&
` controller: z2ui5.oControllerPopup,` && |\n| && ` controller: z2ui5.oControllerPopup,` && |\n| &&
` id: "popupId"` && |\n| && ` id: "popupId"` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` oFragment.setModel(oview_model);` && |\n| && ` oFragment.setModel(oview_model);` && |\n| &&
` z2ui5[viewProp] = oFragment;` && |\n| && ` z2ui5[viewProp] = oFragment;` && |\n| &&
` z2ui5[viewProp].Fragment = Fragment;` && |\n| && ` z2ui5[viewProp].Fragment = Fragment;` && |\n| &&
` oFragment.open();` && |\n| && ` oFragment.open();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` async displayPopover(xml, viewProp, openById) {` && |\n| && ` async displayPopover(xml, viewProp, openById) {` && |\n| &&
` sap.ui.require(["sap/ui/core/Element"], async function(Element) {` && |\n| && ` sap.ui.require(["sap/ui/core/Element"], async function(Element) {` && |\n| &&
` const oFragment = await Fragment.load({` && |\n| && ` const oFragment = await Fragment.load({` && |\n| &&
` definition: xml,` && |\n| && ` definition: xml,` && |\n| &&
` controller: z2ui5.oControllerPopover,` && |\n| && ` controller: z2ui5.oControllerPopover,` && |\n| &&
` id: "popoverId"` && |\n| && ` id: "popoverId"` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` let oview_model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| && ` let oview_model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| &&
` oFragment.setModel(oview_model);` && |\n| && ` oFragment.setModel(oview_model);` && |\n| &&
` z2ui5[viewProp] = oFragment;` && |\n| && ` z2ui5[viewProp] = oFragment;` && |\n| &&
` z2ui5[viewProp].Fragment = Fragment;` && |\n| && ` z2ui5[viewProp].Fragment = Fragment;` && |\n| &&
` let oControl = {};` && |\n| && ` let oControl = {};` && |\n| &&
` if (z2ui5.oView?.byId(openById)) {` && |\n| && ` if (z2ui5.oView?.byId(openById)) {` && |\n| &&
` oControl = z2ui5.oView.byId(openById);` && |\n| && ` oControl = z2ui5.oView.byId(openById);` && |\n| &&
` } else if (z2ui5.oViewPopup?.Fragment.byId('popupId', openById)) {` && |\n| && ` } else if (z2ui5.oViewPopup?.Fragment.byId('popupId', openById)) {` && |\n| &&
` oControl = z2ui5.oViewPopup.Fragment.byId('popupId', openById);` && |\n| && ` oControl = z2ui5.oViewPopup.Fragment.byId('popupId', openById);` && |\n| &&
` } else if (z2ui5.oViewNest?.byId(openById)) {` && |\n| && ` } else if (z2ui5.oViewNest?.byId(openById)) {` && |\n| &&
` oControl = z2ui5.oViewNest.byId(openById);` && |\n| && ` oControl = z2ui5.oViewNest.byId(openById);` && |\n| &&
` } else if (z2ui5.oViewNest2?.byId(openById)) {` && |\n| && ` } else if (z2ui5.oViewNest2?.byId(openById)) {` && |\n| &&
` oControl = z2ui5.oViewNest2.byId(openById);` && |\n| && ` oControl = z2ui5.oViewNest2.byId(openById);` && |\n| &&
` } else {` && |\n| && ` } else {` && |\n| &&
` if (sapUiCore.byId(openById)) {` && |\n| && ` if (sapUiCore.byId(openById)) {` && |\n| &&
` // oControl = sapUiCore.byId(openById);` && |\n| && ` // oControl = sapUiCore.byId(openById);` && |\n| &&
` oControl = Element.getElementById(openById);` && |\n| && ` oControl = Element.getElementById(openById);` && |\n| &&
` } else {` && |\n| && ` } else {` && |\n| &&
` oControl = null;` && |\n| && ` oControl = null;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` ;` && |\n| && ` ;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` oFragment.openBy(oControl);` && |\n| && ` oFragment.openBy(oControl);` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` async displayNestedView(xml, viewProp, viewNestId) {` && |\n| && ` async displayNestedView(xml, viewProp, viewNestId) {` && |\n| &&
` let oview_model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| && ` let oview_model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| &&
` const oView = await XMLView.create({` && |\n| && ` const oView = await XMLView.create({` && |\n| &&
` definition: xml,` && |\n| && ` definition: xml,` && |\n| &&
` controller: z2ui5.oControllerNest,` && |\n| && ` controller: z2ui5.oControllerNest,` && |\n| &&
` preprocessors: {` && |\n| && ` preprocessors: {` && |\n| &&
` xml: {` && |\n| && ` xml: {` && |\n| &&
` models: {` && |\n| && ` models: {` && |\n| &&
` template: oview_model` && |\n| && ` template: oview_model` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` oView.setModel(oview_model);` && |\n| && ` oView.setModel(oview_model);` && |\n| &&
` let oParent = z2ui5.oView.byId(z2ui5.oResponse.PARAMS[viewNestId].ID);` && |\n| && ` let oParent = z2ui5.oView.byId(z2ui5.oResponse.PARAMS[viewNestId].ID);` && |\n| &&
` if (oParent) {` && |\n| && ` if (oParent) {` && |\n| &&
` try {` && |\n| && ` try {` && |\n| &&
` oParent[z2ui5.oResponse.PARAMS[viewNestId].METHOD_DESTROY]();` && |\n| && ` oParent[z2ui5.oResponse.PARAMS[viewNestId].METHOD_DESTROY]();` && |\n| &&
` } catch {}` && |\n| && ` } catch {}` && |\n| &&
` oParent[z2ui5.oResponse.PARAMS[viewNestId].METHOD_INSERT](oView);` && |\n| && ` oParent[z2ui5.oResponse.PARAMS[viewNestId].METHOD_INSERT](oView);` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5[viewProp] = oView;` && |\n| && ` z2ui5[viewProp] = oView;` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` async displayNestedView2(xml, viewProp, viewNestId) {` && |\n| && ` async displayNestedView2(xml, viewProp, viewNestId) {` && |\n| &&
` let oview_model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| && ` let oview_model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| &&
` const oView = await XMLView.create({` && |\n| && ` const oView = await XMLView.create({` && |\n| &&
` definition: xml,` && |\n| && ` definition: xml,` && |\n| &&
` controller: z2ui5.oControllerNest2,` && |\n| && ` controller: z2ui5.oControllerNest2,` && |\n| &&
` preprocessors: {` && |\n| && ` preprocessors: {` && |\n| &&
` xml: {` && |\n| && ` xml: {` && |\n| &&
` models: {` && |\n| && ` models: {` && |\n| &&
` template: oview_model` && |\n| && ` template: oview_model` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` oView.setModel(oview_model);` && |\n| && ` oView.setModel(oview_model);` && |\n| &&
` let oParent = z2ui5.oView.byId(z2ui5.oResponse.PARAMS[viewNestId].ID);` && |\n| && ` let oParent = z2ui5.oView.byId(z2ui5.oResponse.PARAMS[viewNestId].ID);` && |\n| &&
` if (oParent) {` && |\n| && ` if (oParent) {` && |\n| &&
` try {` && |\n| && ` try {` && |\n| &&
` oParent[z2ui5.oResponse.PARAMS[viewNestId].METHOD_DESTROY]();` && |\n| && ` oParent[z2ui5.oResponse.PARAMS[viewNestId].METHOD_DESTROY]();` && |\n| &&
` } catch {}` && |\n| && ` } catch {}` && |\n| &&
` oParent[z2ui5.oResponse.PARAMS[viewNestId].METHOD_INSERT](oView);` && |\n| && ` oParent[z2ui5.oResponse.PARAMS[viewNestId].METHOD_INSERT](oView);` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5[viewProp] = oView;` && |\n| && ` z2ui5[viewProp] = oView;` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` PopupDestroy() {` && |\n| && ` PopupDestroy() {` && |\n| &&
` if (!z2ui5.oViewPopup) {` && |\n| && ` if (!z2ui5.oViewPopup) {` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (z2ui5.oViewPopup.close) {` && |\n| && ` if (z2ui5.oViewPopup.close) {` && |\n| &&
` try {` && |\n| && ` try {` && |\n| &&
` z2ui5.oViewPopup.close();` && |\n| && ` z2ui5.oViewPopup.close();` && |\n| &&
` } catch {}` && |\n| && ` } catch {}` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.oViewPopup.destroy();` && |\n| && ` z2ui5.oViewPopup.destroy();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` PopoverDestroy() {` && |\n| && ` PopoverDestroy() {` && |\n| &&
` if (!z2ui5.oViewPopover) {` && |\n| && ` if (!z2ui5.oViewPopover) {` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (z2ui5.oViewPopover.close) {` && |\n| && ` if (z2ui5.oViewPopover.close) {` && |\n| &&
` try {` && |\n| && ` try {` && |\n| &&
` z2ui5.oViewPopover.close();` && |\n| && ` z2ui5.oViewPopover.close();` && |\n| &&
` } catch {}` && |\n| && ` } catch {}` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.oViewPopover.destroy();` && |\n| && ` z2ui5.oViewPopover.destroy();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` NestViewDestroy() {` && |\n| && ` NestViewDestroy() {` && |\n| &&
` if (!z2ui5.oViewNest) {` && |\n| && ` if (!z2ui5.oViewNest) {` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.oViewNest.destroy();` && |\n| && ` z2ui5.oViewNest.destroy();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` NestViewDestroy2() {` && |\n| && ` NestViewDestroy2() {` && |\n| &&
` if (!z2ui5.oViewNest2) {` && |\n| && ` if (!z2ui5.oViewNest2) {` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.oViewNest2.destroy();` && |\n| && ` z2ui5.oViewNest2.destroy();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` ViewDestroy() {` && |\n| && ` ViewDestroy() {` && |\n| &&
` if (!z2ui5.oView) {` && |\n| && ` if (!z2ui5.oView) {` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.oView.destroy();` && |\n| && ` z2ui5.oView.destroy();` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` eF(...args) {` && |\n| && ` eF(...args) {` && |\n| &&
`` && |\n| && `` && |\n| &&
` z2ui5.onBeforeEventFrontend.forEach(item => {` && |\n| && ` z2ui5.onBeforeEventFrontend.forEach(item => {` && |\n| &&
` if (item !== undefined) {` && |\n| && ` if (item !== undefined) {` && |\n| &&
` item(args);` && |\n| && ` item(args);` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` )` && |\n| && ` )` && |\n| &&
` let oCrossAppNavigator;` && |\n| && ` let oCrossAppNavigator;` && |\n| &&
` switch (args[0]) {` && |\n| && ` switch (args[0]) {` && |\n| &&
` case 'SET_SIZE_LIMIT':` && |\n| && ` case 'SET_SIZE_LIMIT':` && |\n| &&
` switch (args[2]) {` && |\n| && ` switch (args[2]) {` && |\n| &&
` case 'MAIN':` && |\n| && ` case 'MAIN':` && |\n| &&
` z2ui5.oView.getModel().setSizeLimit(parseInt(args[1]));` && |\n| && ` z2ui5.oView.getModel().setSizeLimit(parseInt(args[1]));` && |\n| &&
` z2ui5.oView.getModel().refresh(true);` && |\n| && ` z2ui5.oView.getModel().refresh(true);` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'NEST':` && |\n| && ` case 'NEST':` && |\n| &&
` z2ui5.oViewNest.getModel().setSizeLimit(parseInt(args[1]));` && |\n| && ` z2ui5.oViewNest.getModel().setSizeLimit(parseInt(args[1]));` && |\n| &&
` z2ui5.oViewNest.getModel().refresh(true);` && |\n| && ` z2ui5.oViewNest.getModel().refresh(true);` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'NEST2':` && |\n| && ` case 'NEST2':` && |\n| &&
` z2ui5.oViewNest2.getModel().setSizeLimit(parseInt(args[1]));` && |\n| && ` z2ui5.oViewNest2.getModel().setSizeLimit(parseInt(args[1]));` && |\n| &&
` z2ui5.oViewNest2.getModel().refresh(true);` && |\n| && ` z2ui5.oViewNest2.getModel().refresh(true);` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'POPUP':` && |\n| && ` case 'POPUP':` && |\n| &&
` z2ui5.oPopup.getModel().setSizeLimit(parseInt(args[1]));` && |\n| && ` z2ui5.oPopup.getModel().setSizeLimit(parseInt(args[1]));` && |\n| &&
` z2ui5.oPopup.getModel().refresh(true);` && |\n| && ` z2ui5.oPopup.getModel().refresh(true);` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'POPOVER':` && |\n| && ` case 'POPOVER':` && |\n| &&
` z2ui5.oPopover.getModel().setSizeLimit(parseInt(args[1]));` && |\n| && ` z2ui5.oPopover.getModel().setSizeLimit(parseInt(args[1]));` && |\n| &&
` z2ui5.oPopover.getModel().refresh(true);` && |\n| && ` z2ui5.oPopover.getModel().refresh(true);` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'DOWNLOAD_B64_FILE':` && |\n| && ` case 'DOWNLOAD_B64_FILE':` && |\n| &&
` var a = document.createElement("a");` && |\n| && ` var a = document.createElement("a");` && |\n| &&
` a.href = args[1];` && |\n| && ` a.href = args[1];` && |\n| &&
` a.download = args[2];` && |\n| && ` a.download = args[2];` && |\n| &&
` a.click();` && |\n| && ` a.click();` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'CROSS_APP_NAV_TO_PREV_APP':` && |\n| && ` case 'CROSS_APP_NAV_TO_PREV_APP':` && |\n| &&
` // oCrossAppNavigator = Container.getService("CrossApplicationNavigation");` && |\n| && ` // oCrossAppNavigator = Container.getService("CrossApplicationNavigation");` && |\n| &&
` oCrossAppNavigator = sap.ushell.Container.getService("CrossApplicationNavigation");` && |\n| && ` oCrossAppNavigator = sap.ushell.Container.getService("CrossApplicationNavigation");` && |\n| &&
` oCrossAppNavigator.backToPreviousApp();` && |\n| && ` oCrossAppNavigator.backToPreviousApp();` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'CROSS_APP_NAV_TO_EXT':` && |\n| && ` case 'CROSS_APP_NAV_TO_EXT':` && |\n| &&
` // oCrossAppNavigator = Container.getService("CrossApplicationNavigation");` && |\n| && ` // oCrossAppNavigator = Container.getService("CrossApplicationNavigation");` && |\n| &&
` oCrossAppNavigator = sap.ushell.Container.getService("CrossApplicationNavigation");` && |\n| && ` oCrossAppNavigator = sap.ushell.Container.getService("CrossApplicationNavigation");` && |\n| &&
` const hash = (oCrossAppNavigator.hrefForExternal({` && |\n| && ` const hash = (oCrossAppNavigator.hrefForExternal({` && |\n| &&
` target: args[1],` && |\n| && ` target: args[1],` && |\n| &&
` params: args[2]` && |\n| && ` params: args[2]` && |\n| &&
` })) || "";` && |\n| && ` })) || "";` && |\n| &&
` if (args[3] === 'EXT') {` && |\n| && ` if (args[3] === 'EXT') {` && |\n| &&
` let url = window.location.href.split('#')[0] + hash;` && |\n| && ` let url = window.location.href.split('#')[0] + hash;` && |\n| &&
` //todo` && |\n| && ` //todo` && |\n| &&
` //URLHelper.redirect(url, true);` && |\n| && ` //URLHelper.redirect(url, true);` && |\n| &&
` } else {` && |\n| && ` } else {` && |\n| &&
` oCrossAppNavigator.toExternal({` && |\n| && ` oCrossAppNavigator.toExternal({` && |\n| &&
` target: {` && |\n| && ` target: {` && |\n| &&
` shellHash: hash` && |\n| && ` shellHash: hash` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'LOCATION_RELOAD':` && |\n| && ` case 'LOCATION_RELOAD':` && |\n| &&
` window.location = args[1];` && |\n| && ` window.location = args[1];` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'OPEN_NEW_TAB':` && |\n| && ` case 'OPEN_NEW_TAB':` && |\n| &&
` window.open(args[1], '_blank');` && |\n| && ` window.open(args[1], '_blank');` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'POPUP_CLOSE':` && |\n| && ` case 'POPUP_CLOSE':` && |\n| &&
` z2ui5.oController.PopupDestroy();` && |\n| && ` z2ui5.oController.PopupDestroy();` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'POPOVER_CLOSE':` && |\n| && ` case 'POPOVER_CLOSE':` && |\n| &&
` z2ui5.oController.PopoverDestroy();` && |\n| && ` z2ui5.oController.PopoverDestroy();` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'NAV_CONTAINER_TO':` && |\n| && ` case 'NAV_CONTAINER_TO':` && |\n| &&
` var navCon = z2ui5.oView.byId(args[1]);` && |\n| && ` var navCon = z2ui5.oView.byId(args[1]);` && |\n| &&
` var navConTo = z2ui5.oView.byId(args[2]);` && |\n| && ` var navConTo = z2ui5.oView.byId(args[2]);` && |\n| &&
` navCon.to(navConTo);` && |\n| && ` navCon.to(navConTo);` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'NEST_NAV_CONTAINER_TO':` && |\n| && ` case 'NEST_NAV_CONTAINER_TO':` && |\n| &&
` navCon = z2ui5.oViewNest.byId(args[1]);` && |\n| && ` navCon = z2ui5.oViewNest.byId(args[1]);` && |\n| &&
` navConTo = z2ui5.oViewNest.byId(args[2]);` && |\n| && ` navConTo = z2ui5.oViewNest.byId(args[2]);` && |\n| &&
` navCon.to(navConTo);` && |\n| && ` navCon.to(navConTo);` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'NEST2_NAV_CONTAINER_TO':` && |\n| && ` case 'NEST2_NAV_CONTAINER_TO':` && |\n| &&
` navCon = z2ui5.oViewNest2.byId(args[1]);` && |\n| && ` navCon = z2ui5.oViewNest2.byId(args[1]);` && |\n| &&
` navConTo = z2ui5.oViewNest2.byId(args[2]);` && |\n| && ` navConTo = z2ui5.oViewNest2.byId(args[2]);` && |\n| &&
` navCon.to(navConTo);` && |\n| && ` navCon.to(navConTo);` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` case 'POPUP_NAV_CONTAINER_TO':` && |\n| && ` case 'POPUP_NAV_CONTAINER_TO':` && |\n| &&
` navCon = Fragment.byId("popupId", args[1]);` && |\n| && ` navCon = Fragment.byId("popupId", args[1]);` && |\n| &&
` navConTo = Fragment.byId("popupId", args[2]);` && |\n| && ` navConTo = Fragment.byId("popupId", args[2]);` && |\n| &&
` navCon.to(navConTo);` && |\n| && ` navCon.to(navConTo);` && |\n| &&
` break;` && |\n| && ` break;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` eB(...args) {` && |\n| && ` eB(...args) {` && |\n| &&
`` && |\n| && `` && |\n| &&
` // var oRouter = sap.ui.core.UIComponent.getRouterFor(this);` && |\n| && ` // var oRouter = sap.ui.core.UIComponent.getRouterFor(this);` && |\n| &&
` //debugger;` && |\n| && ` //debugger;` && |\n| &&
` // z2ui5.oRouter.navTo("RouteView2");` && |\n| && ` // z2ui5.oRouter.navTo("RouteView2");` && |\n| &&
` // return;` && |\n| && ` // return;` && |\n| &&
`` && |\n| && `` && |\n| &&
` if (!window.navigator.onLine) {` && |\n| && ` if (!window.navigator.onLine) {` && |\n| &&
` MessageBox.alert('No internet connection! Please reconnect to the server and try again.');` && |\n| && ` MessageBox.alert('No internet connection! Please reconnect to the server and try again.');` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (z2ui5.isBusy == true) {` && |\n| && ` if (z2ui5.isBusy == true) {` && |\n| &&
` if (!args[0][2]) {` && |\n| && ` if (!args[0][2]) {` && |\n| &&
` let oBusyDialog = new mBusyDialog();` && |\n| && ` let oBusyDialog = new mBusyDialog();` && |\n| &&
` oBusyDialog.open();` && |\n| && ` oBusyDialog.open();` && |\n| &&
` setTimeout( (oBusyDialog) => {` && |\n| && ` setTimeout( (oBusyDialog) => {` && |\n| &&
` oBusyDialog.close()` && |\n| && ` oBusyDialog.close()` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` , 100, oBusyDialog);` && |\n| && ` , 100, oBusyDialog);` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.isBusy = true;` && |\n| && ` z2ui5.isBusy = true;` && |\n| &&
` BusyIndicator.show();` && |\n| && ` BusyIndicator.show();` && |\n| &&
` z2ui5.oBody = {};` && |\n| && ` z2ui5.oBody = {};` && |\n| &&
` if (args[0][3]) {` && |\n| && ` if (args[0][3]) {` && |\n| &&
` z2ui5.oBody.XX = z2ui5.oView.getModel().getData().XX;` && |\n| && ` z2ui5.oBody.XX = z2ui5.oView.getModel().getData().XX;` && |\n| &&
` z2ui5.oBody.VIEWNAME = 'MAIN';` && |\n| && ` z2ui5.oBody.VIEWNAME = 'MAIN';` && |\n| &&
` } else if (z2ui5.oController == this) {` && |\n| && ` } else if (z2ui5.oController == this) {` && |\n| &&
` z2ui5.oBody.XX = z2ui5.oView.getModel().getData().XX;` && |\n| && ` z2ui5.oBody.XX = z2ui5.oView.getModel().getData().XX;` && |\n| &&
` z2ui5.oBody.VIEWNAME = 'MAIN';` && |\n| && ` z2ui5.oBody.VIEWNAME = 'MAIN';` && |\n| &&
` } else if (z2ui5.oControllerPopup == this) {` && |\n| && ` } else if (z2ui5.oControllerPopup == this) {` && |\n| &&
` if (z2ui5.oViewPopup) {` && |\n| && ` if (z2ui5.oViewPopup) {` && |\n| &&
` z2ui5.oBody.XX = z2ui5.oViewPopup.getModel().getData().XX;` && |\n| && ` z2ui5.oBody.XX = z2ui5.oViewPopup.getModel().getData().XX;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.oBody.VIEWNAME = 'MAIN';` && |\n| && ` z2ui5.oBody.VIEWNAME = 'MAIN';` && |\n| &&
` } else if (z2ui5.oControllerPopover == this) {` && |\n| && ` } else if (z2ui5.oControllerPopover == this) {` && |\n| &&
` z2ui5.oBody.XX = z2ui5.oViewPopover.getModel().getData().XX;` && |\n| && ` z2ui5.oBody.XX = z2ui5.oViewPopover.getModel().getData().XX;` && |\n| &&
` z2ui5.oBody.VIEWNAME = 'MAIN';` && |\n| && ` z2ui5.oBody.VIEWNAME = 'MAIN';` && |\n| &&
` } else if (z2ui5.oControllerNest == this) {` && |\n| && ` } else if (z2ui5.oControllerNest == this) {` && |\n| &&
` z2ui5.oBody.XX = z2ui5.oViewNest.getModel().getData().XX;` && |\n| && ` z2ui5.oBody.XX = z2ui5.oViewNest.getModel().getData().XX;` && |\n| &&
` z2ui5.oBody.VIEWNAME = 'NEST';` && |\n| && ` z2ui5.oBody.VIEWNAME = 'NEST';` && |\n| &&
` } else if (z2ui5.oControllerNest2 == this) {` && |\n| && ` } else if (z2ui5.oControllerNest2 == this) {` && |\n| &&
` z2ui5.oBody.XX = z2ui5.oViewNest2.getModel().getData().XX;` && |\n| && ` z2ui5.oBody.XX = z2ui5.oViewNest2.getModel().getData().XX;` && |\n| &&
` z2ui5.oBody.VIEWNAME = 'NEST2';` && |\n| && ` z2ui5.oBody.VIEWNAME = 'NEST2';` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.onBeforeRoundtrip.forEach(item => {` && |\n| && ` z2ui5.onBeforeRoundtrip.forEach(item => {` && |\n| &&
` if (item !== undefined) {` && |\n| && ` if (item !== undefined) {` && |\n| &&
` item();` && |\n| && ` item();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` )` && |\n| && ` )` && |\n| &&
` if (args[0][1]) {` && |\n| && ` if (args[0][1]) {` && |\n| &&
` z2ui5.oController.ViewDestroy();` && |\n| && ` z2ui5.oController.ViewDestroy();` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` z2ui5.oBody.ID = z2ui5.oResponse.ID;` && |\n| && ` z2ui5.oBody.ID = z2ui5.oResponse.ID;` && |\n| &&
` z2ui5.oBody.ARGUMENTS = args;` && |\n| && ` z2ui5.oBody.ARGUMENTS = args;` && |\n| &&
` z2ui5.oBody.ARGUMENTS.forEach( (item, i) => {` && |\n| && ` z2ui5.oBody.ARGUMENTS.forEach( (item, i) => {` && |\n| &&
` if (i == 0) {` && |\n| && ` if (i == 0) {` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (typeof item === 'object') {` && |\n| && ` if (typeof item === 'object') {` && |\n| &&
` z2ui5.oBody.ARGUMENTS[i] = JSON.stringify(item);` && |\n| && ` z2ui5.oBody.ARGUMENTS[i] = JSON.stringify(item);` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` );` && |\n| && ` );` && |\n| &&
` z2ui5.oResponseOld = z2ui5.oResponse;` && |\n| && ` z2ui5.oResponseOld = z2ui5.oResponse;` && |\n| &&
` Server.Roundtrip();` && |\n| && ` Server.Roundtrip();` && |\n| &&
`` && |\n| && `` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
`` && |\n| && `` && |\n| &&
` updateModelIfRequired(paramKey, oView) {` && |\n| && ` updateModelIfRequired(paramKey, oView) {` && |\n| &&
` if (z2ui5.oResponse.PARAMS == undefined) {` && |\n| && ` if (z2ui5.oResponse.PARAMS == undefined) {` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (z2ui5.oResponse.PARAMS[paramKey]?.CHECK_UPDATE_MODEL) {` && |\n| && ` if (z2ui5.oResponse.PARAMS[paramKey]?.CHECK_UPDATE_MODEL) {` && |\n| &&
` let model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| && ` let model = new JSONModel(z2ui5.oResponse.OVIEWMODEL);` && |\n| &&
` if (oView) {` && |\n| && ` if (oView) {` && |\n| &&
` oView.setModel(model);` && |\n| && ` oView.setModel(model);` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` async checkSDKcompatibility(err) {` && |\n| && ` async checkSDKcompatibility(err) {` && |\n| &&
` let oCurrentVersionInfo = await VersionInfo.load();` && |\n| && ` let oCurrentVersionInfo = await VersionInfo.load();` && |\n| &&
` var ui5_sdk = oCurrentVersionInfo.gav.includes('com.sap.ui5') ? true : false;` && |\n| && ` var ui5_sdk = oCurrentVersionInfo.gav.includes('com.sap.ui5') ? true : false;` && |\n| &&
` if (!ui5_sdk) {` && |\n| && ` if (!ui5_sdk) {` && |\n| &&
` if (err) {` && |\n| && ` if (err) {` && |\n| &&
` MessageBox.error("openui5 SDK is loaded, module: " + err._modules + " is not availabe in openui5");` && |\n| && ` MessageBox.error("openui5 SDK is loaded, module: " + err._modules + " is not availabe in openui5");` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` ;` && |\n| && ` ;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` ;MessageBox.error(err.toLocaleString());` && |\n| && ` ;MessageBox.error(err.toLocaleString());` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` showMessage(msgType, params) {` && |\n| && ` showMessage(msgType, params) {` && |\n| &&
` if (params == undefined) {` && |\n| && ` if (params == undefined) {` && |\n| &&
` return;` && |\n| && ` return;` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` if (params[msgType]?.TEXT !== undefined) {` && |\n| && ` if (params[msgType]?.TEXT !== undefined) {` && |\n| &&
` if (msgType === 'S_MSG_TOAST') {` && |\n| && ` if (msgType === 'S_MSG_TOAST') {` && |\n| &&
` MessageToast.show(params[msgType].TEXT, {` && |\n| && ` MessageToast.show(params[msgType].TEXT, {` && |\n| &&
` duration: params[msgType].DURATION ? parseInt(params[msgType].DURATION) : 3000,` && |\n| && ` duration: params[msgType].DURATION ? parseInt(params[msgType].DURATION) : 3000,` && |\n| &&
` width: params[msgType].WIDTH ? params[msgType].WIDTH : '15em',` && |\n| && ` width: params[msgType].WIDTH ? params[msgType].WIDTH : '15em',` && |\n| &&
` onClose: params[msgType].ONCLOSE ? params[msgType].ONCLOSE : null,` && |\n| && ` onClose: params[msgType].ONCLOSE ? params[msgType].ONCLOSE : null,` && |\n| &&
` autoClose: params[msgType].AUTOCLOSE ? true : false,` && |\n| && ` autoClose: params[msgType].AUTOCLOSE ? true : false,` && |\n| &&
` animationTimingFunction: params[msgType].ANIMATIONTIMINGFUNCTION ? params[msgType].ANIMATIONTIMINGFUNCTION : 'ease',` && |\n| && ` animationTimingFunction: params[msgType].ANIMATIONTIMINGFUNCTION ? params[msgType].ANIMATIONTIMINGFUNCTION : 'ease',` && |\n| &&
` animationDuration: params[msgType].ANIMATIONDURATION ? parseInt(params[msgType].ANIMATIONDURATION) : 1000,` && |\n| && ` animationDuration: params[msgType].ANIMATIONDURATION ? parseInt(params[msgType].ANIMATIONDURATION) : 1000,` && |\n| &&
` closeonBrowserNavigation: params[msgType].CLOSEONBROWSERNAVIGATION ? true : false` && |\n| && ` closeonBrowserNavigation: params[msgType].CLOSEONBROWSERNAVIGATION ? true : false` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` if (params[msgType].CLASS) {` && |\n| && ` if (params[msgType].CLASS) {` && |\n| &&
` let mtoast = {};` && |\n| && ` let mtoast = {};` && |\n| &&
` mtoast = document.getElementsByClassName("sapMMessageToast")[0];` && |\n| && ` mtoast = document.getElementsByClassName("sapMMessageToast")[0];` && |\n| &&
` if (mtoast) {` && |\n| && ` if (mtoast) {` && |\n| &&
` mtoast.classList.add(params[msgType].CLASS);` && |\n| && ` mtoast.classList.add(params[msgType].CLASS);` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` ;` && |\n| && ` ;` && |\n| &&
` } else if (msgType === 'S_MSG_BOX') {` && |\n| && ` } else if (msgType === 'S_MSG_BOX') {` && |\n| &&
` if (params[msgType].TYPE) {` && |\n| && ` if (params[msgType].TYPE) {` && |\n| &&
` MessageBox[params[msgType].TYPE](params[msgType].TEXT);` && |\n| && ` MessageBox[params[msgType].TYPE](params[msgType].TEXT);` && |\n| &&
` } else {` && |\n| && ` } else {` && |\n| &&
` MessageBox.show(params[msgType].TEXT, {` && |\n| && ` MessageBox.show(params[msgType].TEXT, {` && |\n| &&
` styleClass: params[msgType].STYLECLASS ? params[msgType].STYLECLASS : '',` && |\n| && ` styleClass: params[msgType].STYLECLASS ? params[msgType].STYLECLASS : '',` && |\n| &&
` title: params[msgType].TITLE ? params[msgType].TITLE : '',` && |\n| && ` title: params[msgType].TITLE ? params[msgType].TITLE : '',` && |\n| &&
` onClose: params[msgType].ONCLOSE ? Function("sAction", "return " + params[msgType].ONCLOSE) : null,` && |\n| && ` onClose: params[msgType].ONCLOSE ? Function("sAction", "return " + params[msgType].ONCLOSE) : null,` && |\n| &&
` actions: params[msgType].ACTIONS ? params[msgType].ACTIONS : 'OK',` && |\n| && ` actions: params[msgType].ACTIONS ? params[msgType].ACTIONS : 'OK',` && |\n| &&
` emphasizedAction: params[msgType].EMPHASIZEDACTION ? params[msgType].EMPHASIZEDACTION : 'OK',` && |\n| && ` emphasizedAction: params[msgType].EMPHASIZEDACTION ? params[msgType].EMPHASIZEDACTION : 'OK',` && |\n| &&
` initialFocus: params[msgType].INITIALFOCUS ? params[msgType].INITIALFOCUS : null,` && |\n| && ` initialFocus: params[msgType].INITIALFOCUS ? params[msgType].INITIALFOCUS : null,` && |\n| &&
` textDirection: params[msgType].TEXTDIRECTION ? params[msgType].TEXTDIRECTION : 'Inherit',` && |\n| && ` textDirection: params[msgType].TEXTDIRECTION ? params[msgType].TEXTDIRECTION : 'Inherit',` && |\n| &&
` icon: params[msgType].ICON ? params[msgType].ICON : 'NONE',` && |\n| && ` icon: params[msgType].ICON ? params[msgType].ICON : 'NONE',` && |\n| &&
` details: params[msgType].DETAILS ? params[msgType].DETAILS : '',` && |\n| && ` details: params[msgType].DETAILS ? params[msgType].DETAILS : '',` && |\n| &&
` closeOnNavigation: params[msgType].CLOSEONNAVIGATION ? true : false` && |\n| && ` closeOnNavigation: params[msgType].CLOSEONNAVIGATION ? true : false` && |\n| &&
` })` && |\n| && ` })` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` setApp(oApp) {` && |\n| && ` setApp(oApp) {` && |\n| &&
` this._oApp = oApp;` && |\n| && ` this._oApp = oApp;` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` async displayView(xml, viewModel) {` && |\n| && ` async displayView(xml, viewModel) {` && |\n| &&
` let oview_model = new JSONModel(viewModel);` && |\n| && ` let oview_model = new JSONModel(viewModel);` && |\n| &&
` z2ui5.oView = await XMLView.create({` && |\n| && ` z2ui5.oView = await XMLView.create({` && |\n| &&
` definition: xml,` && |\n| && ` definition: xml,` && |\n| &&
` models: oview_model,` && |\n| && ` models: oview_model,` && |\n| &&
` controller: z2ui5.oController,` && |\n| && ` controller: z2ui5.oController,` && |\n| &&
` id: 'mainView',` && |\n| && ` id: 'mainView',` && |\n| &&
` preprocessors: {` && |\n| && ` preprocessors: {` && |\n| &&
` xml: {` && |\n| && ` xml: {` && |\n| &&
` models: {` && |\n| && ` models: {` && |\n| &&
` template: oview_model` && |\n| && ` template: oview_model` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` }` && |\n| && ` }` && |\n| &&
` });` && |\n| && ` });` && |\n| &&
` z2ui5.oView.setModel(z2ui5.oDeviceModel, "device");` && |\n| && ` z2ui5.oView.setModel(z2ui5.oDeviceModel, "device");` && |\n| &&
` this._oApp.removeAllPages();` && |\n| && ` this._oApp.removeAllPages();` && |\n| &&
` this._oApp.insertPage(z2ui5.oView);` && |\n| && ` this._oApp.insertPage(z2ui5.oView);` && |\n| &&
` },` && |\n| && ` },` && |\n| &&
` })` && |\n| && ` })` && |\n| &&
`});` && |\n| && `});` && |\n| &&
``. ``.
ENDMETHOD. ENDMETHOD.

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_VIEW1_JS</CLSNAME> <CLSNAME>Z2UI5_CL_APP_VIEW1_JS</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_VIEW1_JS</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_VIEW1_JS (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>

View File

@ -1,4 +1,4 @@
CLASS z2ui5_cl_app_View1_xml DEFINITION CLASS z2ui5_cl_app_view1_xml DEFINITION
PUBLIC PUBLIC
FINAL FINAL
CREATE PUBLIC . CREATE PUBLIC .
@ -14,11 +14,11 @@ CLASS z2ui5_cl_app_View1_xml DEFINITION
ENDCLASS. ENDCLASS.
CLASS z2ui5_cl_app_View1_xml IMPLEMENTATION. CLASS z2ui5_cl_app_view1_xml IMPLEMENTATION.
METHOD get. METHOD get.
result = `<mvc:View controllerName="z2ui5.controller.View1"` && result = `<mvc:View controllerName="z2ui5.controller.View1"` &&
` xmlns:mvc="sap.ui.core.mvc" displayBlock="true"` && ` xmlns:mvc="sap.ui.core.mvc" displayBlock="true"` &&
` xmlns="sap.m">` && ` xmlns="sap.m">` &&
`</mvc:View>` && `</mvc:View>` &&

View File

@ -5,7 +5,7 @@
<VSEOCLASS> <VSEOCLASS>
<CLSNAME>Z2UI5_CL_APP_VIEW1_XML</CLSNAME> <CLSNAME>Z2UI5_CL_APP_VIEW1_XML</CLSNAME>
<LANGU>E</LANGU> <LANGU>E</LANGU>
<DESCRIPT>Z2UI5_CL_APP_VIEW1_XML</DESCRIPT> <DESCRIPT>Z2UI5_CL_APP_VIEW1_XML (generated)</DESCRIPT>
<STATE>1</STATE> <STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL> <CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT> <FIXPT>X</FIXPT>