Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | const {zcl_abapgit_gui_component} = await import("./zcl_abapgit_gui_component.clas.mjs");
const {cx_root} = await import("./cx_root.clas.mjs");
// zcl_abapgit_gui_page_flowtsht.clas.abap
class zcl_abapgit_gui_page_flowtsht extends zcl_abapgit_gui_component {
static STATIC_SUPER = zcl_abapgit_gui_component;
static INTERNAL_TYPE = 'CLAS';
static INTERNAL_NAME = 'ZCL_ABAPGIT_GUI_PAGE_FLOWTSHT';
static IMPLEMENTED_INTERFACES = ["ZIF_ABAPGIT_GUI_RENDERABLE","ZIF_ABAPGIT_GUI_MENU_PROVIDER"];
static ATTRIBUTES = {};
static METHODS = {"CREATE": {"visibility": "U", "parameters": {"RI_PAGE": {"type": () => {return new abap.types.ABAPObject({qualifiedName: "ZIF_ABAPGIT_GUI_RENDERABLE", RTTIName: "\\INTERFACE=ZIF_ABAPGIT_GUI_RENDERABLE"});}, "is_optional": " ", "parm_kind": "R", "type_name": "ObjectReferenceType"}}}};
constructor() {
const sup = super();
this.me = new abap.types.ABAPObject();
this.me.set(this);
this.INTERNAL_ID = abap.internalIdCounter++;
this.FRIENDS_ACCESS_INSTANCE = {
"SUPER": sup.FRIENDS_ACCESS_INSTANCE,
};
}
async constructor_(INPUT) {
if (super.constructor_) { await super.constructor_(INPUT); }
return this;
}
async create() {
return zcl_abapgit_gui_page_flowtsht.create();
}
static async create() {
let ri_page = new abap.types.ABAPObject({qualifiedName: "ZIF_ABAPGIT_GUI_RENDERABLE", RTTIName: "\\INTERFACE=ZIF_ABAPGIT_GUI_RENDERABLE"});
let lo_component = new abap.types.ABAPObject({qualifiedName: "ZCL_ABAPGIT_GUI_PAGE_FLOWTSHT", RTTIName: "\\CLASS=ZCL_ABAPGIT_GUI_PAGE_FLOWTSHT"});
lo_component.set(await (new abap.Classes['ZCL_ABAPGIT_GUI_PAGE_FLOWTSHT']()).constructor_());
ri_page.set((await abap.Classes['ZCL_ABAPGIT_GUI_PAGE_HOC'].create({iv_page_title: abap.CharacterFactory.get(20, 'Flow Troubleshooting'), ii_page_menu_provider: lo_component, ii_child_component: lo_component})));
return ri_page;
}
async zif_abapgit_gui_menu_provider$get_menu() {
let ro_toolbar = new abap.types.ABAPObject({qualifiedName: "ZCL_ABAPGIT_HTML_TOOLBAR", RTTIName: "\\CLASS=ZCL_ABAPGIT_HTML_TOOLBAR"});
ro_toolbar.set((await abap.Classes['ZCL_ABAPGIT_HTML_TOOLBAR'].create({iv_id: abap.CharacterFactory.get(17, 'toolbar-flow-tsht')})));
await ro_toolbar.get().add({iv_txt: abap.CharacterFactory.get(4, 'Back'), iv_act: abap.Classes['ZIF_ABAPGIT_DEFINITIONS'].zif_abapgit_definitions$c_action.get().go_back});
return ro_toolbar;
}
async zif_abapgit_gui_renderable$render() {
let ri_html = new abap.types.ABAPObject({qualifiedName: "ZIF_ABAPGIT_HTML", RTTIName: "\\INTERFACE=ZIF_ABAPGIT_HTML"});
ri_html.set(await (new abap.Classes['ZCL_ABAPGIT_HTML']()).constructor_());
await ri_html.get().zif_abapgit_html$add({ig_chunk: abap.CharacterFactory.get(27, '<div class="repo-overview">')});
await ri_html.get().zif_abapgit_html$add({ig_chunk: new abap.types.String().set(`<h1>Flow Troubleshooting</h1>`)});
await ri_html.get().zif_abapgit_html$add({ig_chunk: new abap.types.String().set(`<h2>Why is my transport not shown?</h2>`)});
await ri_html.get().zif_abapgit_html$add({ig_chunk: new abap.types.String().set(`<ul>`)});
await ri_html.get().zif_abapgit_html$add({ig_chunk: new abap.types.String().set(`<li>Transport must contain repository objects</li>`)});
await ri_html.get().zif_abapgit_html$add({ig_chunk: new abap.types.String().set(`<li>These objects must be in a package that is part of a repository</li>`)});
await ri_html.get().zif_abapgit_html$add({ig_chunk: new abap.types.String().set(`<li>The repository must be flow enabled</li>`)});
await ri_html.get().zif_abapgit_html$add({ig_chunk: new abap.types.String().set(`<li>The user(you) must have the repository as a favorite</li>`)});
await ri_html.get().zif_abapgit_html$add({ig_chunk: new abap.types.String().set(`</ul>`)});
await ri_html.get().zif_abapgit_html$add({ig_chunk: abap.CharacterFactory.get(6, '</div>')});
return ri_html;
}
}
abap.Classes['ZCL_ABAPGIT_GUI_PAGE_FLOWTSHT'] = zcl_abapgit_gui_page_flowtsht;
export {zcl_abapgit_gui_page_flowtsht}; |