mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
1176 lines
42 KiB
ABAP
1176 lines
42 KiB
ABAP
CLASS zcl_abapgit_gui_page_view_repo DEFINITION
|
|
PUBLIC
|
|
FINAL
|
|
INHERITING FROM zcl_abapgit_gui_page
|
|
CREATE PUBLIC.
|
|
|
|
PUBLIC SECTION.
|
|
|
|
CONSTANTS:
|
|
BEGIN OF c_actions,
|
|
repo_list TYPE string VALUE 'abapgit_home' ##NO_TEXT,
|
|
change_dir TYPE string VALUE 'change_dir' ##NO_TEXT,
|
|
toggle_hide_files TYPE string VALUE 'toggle_hide_files' ##NO_TEXT,
|
|
toggle_folders TYPE string VALUE 'toggle_folders' ##NO_TEXT,
|
|
toggle_changes TYPE string VALUE 'toggle_changes' ##NO_TEXT,
|
|
toggle_order_by TYPE string VALUE 'toggle_order_by' ##NO_TEXT,
|
|
toggle_diff_first TYPE string VALUE 'toggle_diff_first ' ##NO_TEXT,
|
|
display_more TYPE string VALUE 'display_more' ##NO_TEXT,
|
|
END OF c_actions.
|
|
|
|
|
|
INTERFACES: zif_abapgit_gui_hotkeys.
|
|
|
|
METHODS constructor
|
|
IMPORTING
|
|
!iv_key TYPE zif_abapgit_persistence=>ty_repo-key
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
|
|
METHODS zif_abapgit_gui_event_handler~on_event REDEFINITION.
|
|
|
|
PROTECTED SECTION.
|
|
METHODS render_content REDEFINITION.
|
|
PRIVATE SECTION.
|
|
|
|
DATA mt_col_spec TYPE zif_abapgit_definitions=>tty_col_spec.
|
|
DATA: mo_repo TYPE REF TO zcl_abapgit_repo,
|
|
mv_cur_dir TYPE string,
|
|
mv_hide_files TYPE abap_bool,
|
|
mv_max_lines TYPE i,
|
|
mv_max_setting TYPE i,
|
|
mv_show_folders TYPE abap_bool,
|
|
mv_changes_only TYPE abap_bool,
|
|
mv_show_order_by TYPE abap_bool,
|
|
mv_order_by TYPE string,
|
|
mv_order_descending TYPE abap_bool,
|
|
mv_diff_first TYPE abap_bool,
|
|
mv_key TYPE zif_abapgit_persistence=>ty_value,
|
|
mv_are_changes_recorded_in_tr TYPE abap_bool.
|
|
|
|
METHODS:
|
|
render_head_line
|
|
IMPORTING iv_lstate TYPE char1
|
|
iv_rstate TYPE char1
|
|
RETURNING VALUE(ri_html) TYPE REF TO zif_abapgit_html
|
|
RAISING zcx_abapgit_exception,
|
|
build_head_menu
|
|
IMPORTING iv_lstate TYPE char1
|
|
iv_rstate TYPE char1
|
|
RETURNING VALUE(ro_toolbar) TYPE REF TO zcl_abapgit_html_toolbar
|
|
RAISING zcx_abapgit_exception,
|
|
build_grid_menu
|
|
RETURNING VALUE(ro_toolbar) TYPE REF TO zcl_abapgit_html_toolbar
|
|
RAISING zcx_abapgit_exception,
|
|
render_item
|
|
IMPORTING is_item TYPE zif_abapgit_definitions=>ty_repo_item
|
|
iv_render_transports TYPE abap_bool
|
|
RETURNING VALUE(ri_html) TYPE REF TO zif_abapgit_html
|
|
RAISING zcx_abapgit_exception,
|
|
render_item_files
|
|
IMPORTING is_item TYPE zif_abapgit_definitions=>ty_repo_item
|
|
RETURNING VALUE(ri_html) TYPE REF TO zif_abapgit_html,
|
|
render_item_command
|
|
IMPORTING is_item TYPE zif_abapgit_definitions=>ty_repo_item
|
|
RETURNING VALUE(ri_html) TYPE REF TO zif_abapgit_html,
|
|
get_item_class
|
|
IMPORTING is_item TYPE zif_abapgit_definitions=>ty_repo_item
|
|
RETURNING VALUE(rv_html) TYPE string,
|
|
get_item_icon
|
|
IMPORTING is_item TYPE zif_abapgit_definitions=>ty_repo_item
|
|
RETURNING VALUE(rv_html) TYPE string,
|
|
render_item_lock_column
|
|
IMPORTING is_item TYPE zif_abapgit_definitions=>ty_repo_item
|
|
RETURNING VALUE(rv_html) TYPE string,
|
|
render_empty_package
|
|
RETURNING VALUE(rv_html) TYPE string,
|
|
render_parent_dir
|
|
RETURNING VALUE(ri_html) TYPE REF TO zif_abapgit_html
|
|
RAISING zcx_abapgit_exception.
|
|
|
|
METHODS:
|
|
build_obj_jump_link
|
|
IMPORTING is_item TYPE zif_abapgit_definitions=>ty_repo_item
|
|
RETURNING VALUE(rv_html) TYPE string,
|
|
build_dir_jump_link
|
|
IMPORTING iv_path TYPE string
|
|
RETURNING VALUE(rv_html) TYPE string,
|
|
build_inactive_object_code
|
|
IMPORTING is_item TYPE zif_abapgit_definitions=>ty_repo_item
|
|
RETURNING VALUE(rv_inactive_html_code) TYPE string,
|
|
open_in_master_language
|
|
RAISING zcx_abapgit_exception,
|
|
render_order_by
|
|
RETURNING VALUE(ro_html) TYPE REF TO zcl_abapgit_html,
|
|
apply_order_by
|
|
CHANGING ct_repo_items TYPE zif_abapgit_definitions=>tt_repo_items,
|
|
build_branch_dropdown
|
|
IMPORTING iv_wp_opt LIKE zif_abapgit_html=>c_html_opt-crossout
|
|
RETURNING VALUE(ro_branch_dropdown) TYPE REF TO zcl_abapgit_html_toolbar
|
|
RAISING zcx_abapgit_exception,
|
|
build_tag_dropdown
|
|
IMPORTING iv_wp_opt LIKE zif_abapgit_html=>c_html_opt-crossout
|
|
RETURNING VALUE(ro_tag_dropdown) TYPE REF TO zcl_abapgit_html_toolbar
|
|
RAISING zcx_abapgit_exception,
|
|
build_advanced_dropdown
|
|
IMPORTING iv_wp_opt LIKE zif_abapgit_html=>c_html_opt-crossout
|
|
iv_lstate TYPE char1
|
|
iv_rstate TYPE char1
|
|
RETURNING VALUE(ro_advanced_dropdown) TYPE REF TO zcl_abapgit_html_toolbar
|
|
RAISING zcx_abapgit_exception,
|
|
build_main_toolbar
|
|
IMPORTING iv_pull_opt LIKE zif_abapgit_html=>c_html_opt-crossout
|
|
iv_lstate TYPE char1
|
|
iv_rstate TYPE char1
|
|
io_tb_branch TYPE REF TO zcl_abapgit_html_toolbar
|
|
io_tb_tag TYPE REF TO zcl_abapgit_html_toolbar
|
|
io_tb_advanced TYPE REF TO zcl_abapgit_html_toolbar
|
|
RETURNING VALUE(ro_toolbar) TYPE REF TO zcl_abapgit_html_toolbar
|
|
RAISING zcx_abapgit_exception.
|
|
|
|
METHODS _add_col
|
|
IMPORTING
|
|
iv_str TYPE string.
|
|
|
|
METHODS build_main_menu
|
|
RETURNING VALUE(ro_menu) TYPE REF TO zcl_abapgit_html_toolbar.
|
|
ENDCLASS.
|
|
|
|
|
|
|
|
CLASS ZCL_ABAPGIT_GUI_PAGE_VIEW_REPO IMPLEMENTATION.
|
|
|
|
|
|
METHOD apply_order_by.
|
|
|
|
DATA:
|
|
lt_sort TYPE abap_sortorder_tab,
|
|
ls_sort LIKE LINE OF lt_sort,
|
|
lt_non_code_and_metadata_items LIKE ct_repo_items,
|
|
lt_code_items LIKE ct_repo_items,
|
|
lt_diff_items LIKE ct_repo_items.
|
|
|
|
FIELD-SYMBOLS:
|
|
<ls_repo_item> TYPE zif_abapgit_definitions=>ty_repo_item.
|
|
|
|
IF mv_order_by IS INITIAL.
|
|
RETURN.
|
|
ENDIF.
|
|
|
|
" we want to preserve non-code and metadata files at the top,
|
|
" so we isolate them and and sort only the code artifacts
|
|
LOOP AT ct_repo_items ASSIGNING <ls_repo_item>.
|
|
|
|
IF <ls_repo_item>-obj_type IS INITIAL AND <ls_repo_item>-is_dir = abap_false.
|
|
INSERT <ls_repo_item> INTO TABLE lt_non_code_and_metadata_items.
|
|
ELSE.
|
|
INSERT <ls_repo_item> INTO TABLE lt_code_items.
|
|
ENDIF.
|
|
|
|
ENDLOOP.
|
|
|
|
IF mv_diff_first = abap_true.
|
|
" fix diffs on the top, right after non-code and metadata
|
|
LOOP AT lt_code_items ASSIGNING <ls_repo_item>
|
|
WHERE changes > 0.
|
|
INSERT <ls_repo_item> INTO TABLE lt_diff_items.
|
|
ENDLOOP.
|
|
|
|
DELETE lt_code_items WHERE changes > 0.
|
|
ENDIF.
|
|
|
|
CLEAR: ct_repo_items.
|
|
|
|
ls_sort-name = mv_order_by.
|
|
ls_sort-descending = mv_order_descending.
|
|
ls_sort-astext = abap_true.
|
|
INSERT ls_sort INTO TABLE lt_sort.
|
|
SORT lt_code_items BY (lt_sort).
|
|
SORT lt_diff_items BY (lt_sort).
|
|
|
|
INSERT LINES OF lt_non_code_and_metadata_items INTO TABLE ct_repo_items.
|
|
INSERT LINES OF lt_diff_items INTO TABLE ct_repo_items.
|
|
INSERT LINES OF lt_code_items INTO TABLE ct_repo_items.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_advanced_dropdown.
|
|
|
|
DATA:
|
|
lv_crossout LIKE zif_abapgit_html=>c_html_opt-crossout.
|
|
|
|
CREATE OBJECT ro_advanced_dropdown.
|
|
|
|
IF iv_rstate IS NOT INITIAL OR iv_lstate IS NOT INITIAL. " In case of asyncronicities
|
|
ro_advanced_dropdown->add( iv_txt = 'Reset local'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-git_reset }?{ mv_key }|
|
|
iv_opt = iv_wp_opt ).
|
|
ENDIF.
|
|
|
|
IF mo_repo->is_offline( ) = abap_false. " Online ?
|
|
ro_advanced_dropdown->add( iv_txt = 'Background mode'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-go_background }?{ mv_key }| ).
|
|
ro_advanced_dropdown->add( iv_txt = 'Change remote'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_remote_change }?{ mv_key }| ).
|
|
ro_advanced_dropdown->add( iv_txt = 'Make off-line'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_remote_detach }?{ mv_key }| ).
|
|
ro_advanced_dropdown->add( iv_txt = 'Force stage'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-go_stage }?{ mv_key }| ).
|
|
|
|
CLEAR lv_crossout.
|
|
IF zcl_abapgit_auth=>is_allowed( zif_abapgit_auth=>gc_authorization-transport_to_branch ) = abap_false.
|
|
lv_crossout = zif_abapgit_html=>c_html_opt-crossout.
|
|
ENDIF.
|
|
ro_advanced_dropdown->add( iv_txt = 'Transport to Branch'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_transport_to_branch }?{ mv_key }|
|
|
iv_opt = lv_crossout ).
|
|
|
|
ELSE.
|
|
ro_advanced_dropdown->add( iv_txt = 'Make on-line'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_remote_attach }?{ mv_key }| ).
|
|
ENDIF.
|
|
|
|
IF mv_are_changes_recorded_in_tr = abap_true.
|
|
ro_advanced_dropdown->add(
|
|
iv_txt = 'Add all objects to transport request'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_add_all_obj_to_trans_req }?{ mv_key }| ).
|
|
ENDIF.
|
|
|
|
ro_advanced_dropdown->add( iv_txt = 'Syntax Check'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_syntax_check }?{ mv_key }| ).
|
|
ro_advanced_dropdown->add( iv_txt = 'Run Code Inspector'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_code_inspector }?{ mv_key }| ).
|
|
ro_advanced_dropdown->add( iv_txt = 'Repo settings'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_settings }?{ mv_key }| ).
|
|
|
|
CLEAR lv_crossout.
|
|
IF zcl_abapgit_auth=>is_allowed( zif_abapgit_auth=>gc_authorization-update_local_checksum ) = abap_false.
|
|
lv_crossout = zif_abapgit_html=>c_html_opt-crossout.
|
|
ENDIF.
|
|
ro_advanced_dropdown->add( iv_txt = 'Update local checksums'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_refresh_checksums }?{ mv_key }|
|
|
iv_opt = lv_crossout ).
|
|
|
|
IF mo_repo->get_dot_abapgit( )->get_master_language( ) <> sy-langu.
|
|
ro_advanced_dropdown->add( iv_txt = 'Open in master language'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_open_in_master_lang }?{ mv_key }| ).
|
|
ENDIF.
|
|
|
|
ro_advanced_dropdown->add( iv_txt = 'Remove'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_remove }?{ mv_key }| ).
|
|
|
|
CLEAR lv_crossout.
|
|
IF mo_repo->get_local_settings( )-write_protected = abap_true
|
|
OR zcl_abapgit_auth=>is_allowed( zif_abapgit_auth=>gc_authorization-uninstall ) = abap_false.
|
|
lv_crossout = zif_abapgit_html=>c_html_opt-crossout.
|
|
ENDIF.
|
|
ro_advanced_dropdown->add( iv_txt = 'Uninstall'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_purge }?{ mv_key }|
|
|
iv_opt = lv_crossout ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_branch_dropdown.
|
|
|
|
CREATE OBJECT ro_branch_dropdown.
|
|
|
|
IF mo_repo->is_offline( ) = abap_true.
|
|
RETURN.
|
|
ENDIF.
|
|
|
|
ro_branch_dropdown->add( iv_txt = 'Overview'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-go_branch_overview }?{ mv_key }| ).
|
|
ro_branch_dropdown->add( iv_txt = 'Switch'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-git_branch_switch }?{ mv_key }|
|
|
iv_opt = iv_wp_opt ).
|
|
ro_branch_dropdown->add( iv_txt = 'Create'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-git_branch_create }?{ mv_key }| ).
|
|
ro_branch_dropdown->add( iv_txt = 'Delete'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-git_branch_delete }?{ mv_key }| ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_dir_jump_link.
|
|
|
|
DATA: lv_path TYPE string,
|
|
lv_encode TYPE string.
|
|
|
|
lv_path = iv_path.
|
|
REPLACE FIRST OCCURRENCE OF mv_cur_dir IN lv_path WITH ''.
|
|
lv_encode = zcl_abapgit_html_action_utils=>dir_encode( lv_path ).
|
|
|
|
rv_html = zcl_abapgit_html=>a( iv_txt = lv_path
|
|
iv_act = |{ c_actions-change_dir }?{ lv_encode }| ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_grid_menu.
|
|
|
|
CREATE OBJECT ro_toolbar.
|
|
|
|
IF mo_repo->has_remote_source( ) = abap_true.
|
|
ro_toolbar->add( " Show/Hide files
|
|
iv_txt = 'Show files'
|
|
iv_chk = boolc( NOT mv_hide_files = abap_true )
|
|
iv_act = c_actions-toggle_hide_files ).
|
|
|
|
ro_toolbar->add( " Show changes only
|
|
iv_txt = 'Show changes only'
|
|
iv_chk = mv_changes_only
|
|
iv_act = c_actions-toggle_changes ).
|
|
ENDIF.
|
|
|
|
ro_toolbar->add( " Show/Hide folders
|
|
iv_txt = 'Show folders'
|
|
iv_chk = mv_show_folders
|
|
iv_act = c_actions-toggle_folders ).
|
|
|
|
ro_toolbar->add(
|
|
iv_txt = 'Show order by'
|
|
iv_chk = mv_show_order_by
|
|
iv_act = c_actions-toggle_order_by ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_head_menu.
|
|
|
|
DATA: lo_tb_advanced TYPE REF TO zcl_abapgit_html_toolbar,
|
|
lo_tb_branch TYPE REF TO zcl_abapgit_html_toolbar,
|
|
lo_tb_tag TYPE REF TO zcl_abapgit_html_toolbar,
|
|
lv_wp_opt LIKE zif_abapgit_html=>c_html_opt-crossout,
|
|
lv_pull_opt LIKE zif_abapgit_html=>c_html_opt-crossout.
|
|
|
|
IF mo_repo->get_local_settings( )-write_protected = abap_true.
|
|
lv_wp_opt = zif_abapgit_html=>c_html_opt-crossout.
|
|
lv_pull_opt = zif_abapgit_html=>c_html_opt-crossout.
|
|
ELSE.
|
|
lv_pull_opt = zif_abapgit_html=>c_html_opt-strong.
|
|
ENDIF.
|
|
|
|
lo_tb_branch = build_branch_dropdown( lv_wp_opt ).
|
|
|
|
lo_tb_tag = build_tag_dropdown( lv_wp_opt ).
|
|
|
|
lo_tb_advanced = build_advanced_dropdown(
|
|
iv_wp_opt = lv_wp_opt
|
|
iv_rstate = iv_rstate
|
|
iv_lstate = iv_lstate ).
|
|
|
|
ro_toolbar = build_main_toolbar(
|
|
iv_pull_opt = lv_pull_opt
|
|
iv_rstate = iv_rstate
|
|
iv_lstate = iv_lstate
|
|
io_tb_branch = lo_tb_branch
|
|
io_tb_tag = lo_tb_tag
|
|
io_tb_advanced = lo_tb_advanced ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_inactive_object_code.
|
|
|
|
IF is_item-inactive = abap_true.
|
|
rv_inactive_html_code = zcl_abapgit_html=>icon(
|
|
iv_name = 'bolt/orange'
|
|
iv_hint = 'Object or object part is inactive'
|
|
iv_class = 'inactive' ).
|
|
ENDIF.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_main_menu.
|
|
|
|
CREATE OBJECT ro_menu EXPORTING iv_id = 'toolbar-main'.
|
|
|
|
ro_menu->add(
|
|
iv_txt = zcl_abapgit_gui_buttons=>repo_list( )
|
|
iv_act = zif_abapgit_definitions=>c_action-abapgit_home
|
|
)->add(
|
|
iv_txt = zcl_abapgit_gui_buttons=>advanced( )
|
|
io_sub = zcl_abapgit_gui_chunk_lib=>advanced_submenu( )
|
|
)->add(
|
|
iv_txt = zcl_abapgit_gui_buttons=>help( )
|
|
io_sub = zcl_abapgit_gui_chunk_lib=>help_submenu( ) ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_main_toolbar.
|
|
|
|
DATA:
|
|
li_log TYPE REF TO zif_abapgit_log.
|
|
|
|
CREATE OBJECT ro_toolbar EXPORTING iv_id = 'toolbar-repo'.
|
|
|
|
IF mo_repo->is_offline( ) = abap_false.
|
|
IF iv_rstate IS NOT INITIAL. " Something new at remote
|
|
ro_toolbar->add( iv_txt = 'Pull'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-git_pull }?{ mv_key }|
|
|
iv_opt = iv_pull_opt ).
|
|
ENDIF.
|
|
IF iv_lstate IS NOT INITIAL. " Something new at local
|
|
ro_toolbar->add( iv_txt = 'Stage'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-go_stage }?{ mv_key }|
|
|
iv_opt = zif_abapgit_html=>c_html_opt-strong ).
|
|
ENDIF.
|
|
IF iv_rstate IS NOT INITIAL OR iv_lstate IS NOT INITIAL. " Any changes
|
|
ro_toolbar->add( iv_txt = 'Diff'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-go_diff }?key={ mv_key }|
|
|
iv_opt = zif_abapgit_html=>c_html_opt-strong ).
|
|
ENDIF.
|
|
li_log = mo_repo->get_log( ).
|
|
IF li_log IS BOUND AND li_log->count( ) > 0.
|
|
ro_toolbar->add( iv_txt = 'Log'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_log }?{ mv_key }| ).
|
|
ENDIF.
|
|
ro_toolbar->add( iv_txt = 'Branch'
|
|
io_sub = io_tb_branch ) ##NO_TEXT.
|
|
ro_toolbar->add( iv_txt = 'Tag'
|
|
io_sub = io_tb_tag ) ##NO_TEXT.
|
|
ELSE.
|
|
IF mo_repo->has_remote_source( ) = abap_true AND iv_rstate IS NOT INITIAL.
|
|
ro_toolbar->add( iv_txt = 'Pull <sup>zip</sup>'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-git_pull }?{ mv_key }|
|
|
iv_opt = zif_abapgit_html=>c_html_opt-strong ).
|
|
ro_toolbar->add( iv_txt = 'Diff'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-go_diff }?key={ mv_key }|
|
|
iv_opt = zif_abapgit_html=>c_html_opt-strong ).
|
|
ENDIF.
|
|
ro_toolbar->add( iv_txt = 'Import <sup>zip</sup>'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-zip_import }?{ mv_key }|
|
|
iv_opt = zif_abapgit_html=>c_html_opt-strong ).
|
|
ro_toolbar->add( iv_txt = 'Export <sup>zip</sup>'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-zip_export }?{ mv_key }|
|
|
iv_opt = zif_abapgit_html=>c_html_opt-strong ).
|
|
li_log = mo_repo->get_log( ).
|
|
IF li_log IS BOUND AND li_log->count( ) > 0.
|
|
ro_toolbar->add( iv_txt = 'Log'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_log }?{ mv_key }| ).
|
|
ENDIF.
|
|
ENDIF.
|
|
|
|
ro_toolbar->add( iv_txt = 'Advanced'
|
|
io_sub = io_tb_advanced ) ##NO_TEXT.
|
|
ro_toolbar->add( iv_txt = 'Refresh'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-repo_refresh }?{ mv_key }| ).
|
|
ro_toolbar->add( iv_txt = zcl_abapgit_html=>icon( iv_name = 'cog/grey70' )
|
|
io_sub = build_grid_menu( ) ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_obj_jump_link.
|
|
|
|
DATA: lv_encode TYPE string.
|
|
|
|
lv_encode = zcl_abapgit_html_action_utils=>jump_encode( iv_obj_type = is_item-obj_type
|
|
iv_obj_name = is_item-obj_name ).
|
|
|
|
rv_html = zcl_abapgit_html=>a( iv_txt = |{ is_item-obj_name }|
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-jump }?{ lv_encode }| ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD build_tag_dropdown.
|
|
|
|
CREATE OBJECT ro_tag_dropdown.
|
|
|
|
IF mo_repo->is_offline( ) = abap_true.
|
|
RETURN.
|
|
ENDIF.
|
|
|
|
ro_tag_dropdown->add( iv_txt = 'Overview'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-go_tag_overview }?{ mv_key }| ).
|
|
ro_tag_dropdown->add( iv_txt = 'Switch'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-git_tag_switch }?{ mv_key }|
|
|
iv_opt = iv_wp_opt ).
|
|
ro_tag_dropdown->add( iv_txt = 'Create'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-git_tag_create }?{ mv_key }| ).
|
|
ro_tag_dropdown->add( iv_txt = 'Delete'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-git_tag_delete }?{ mv_key }| ).
|
|
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD constructor.
|
|
|
|
DATA: lo_settings TYPE REF TO zcl_abapgit_settings,
|
|
lv_package TYPE devclass.
|
|
|
|
super->constructor( ).
|
|
|
|
mv_key = iv_key.
|
|
mo_repo = zcl_abapgit_repo_srv=>get_instance( )->get( iv_key ).
|
|
mv_cur_dir = '/'. " Root
|
|
mv_hide_files = zcl_abapgit_persistence_user=>get_instance( )->get_hide_files( ).
|
|
mv_changes_only = zcl_abapgit_persistence_user=>get_instance( )->get_changes_only( ).
|
|
mv_show_order_by = zcl_abapgit_persistence_user=>get_instance( )->get_show_order_by( ).
|
|
mv_diff_first = abap_true.
|
|
|
|
ms_control-page_title = 'REPOSITORY'.
|
|
ms_control-page_menu = build_main_menu( ).
|
|
|
|
" Read global settings to get max # of objects to be listed
|
|
lo_settings = zcl_abapgit_persist_settings=>get_instance( )->read( ).
|
|
mv_max_lines = lo_settings->get_max_lines( ).
|
|
mv_max_setting = mv_max_lines.
|
|
|
|
lv_package = mo_repo->get_package( ).
|
|
|
|
mv_are_changes_recorded_in_tr = zcl_abapgit_factory=>get_sap_package( lv_package
|
|
)->are_changes_recorded_in_tr_req( ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD get_item_class.
|
|
|
|
DATA lt_class TYPE TABLE OF string.
|
|
|
|
IF is_item-is_dir = abap_true.
|
|
APPEND 'folder' TO lt_class.
|
|
ELSEIF is_item-changes > 0.
|
|
APPEND 'modified' TO lt_class.
|
|
ELSEIF is_item-obj_name IS INITIAL.
|
|
APPEND 'unsupported' TO lt_class.
|
|
ENDIF.
|
|
|
|
IF lines( lt_class ) > 0.
|
|
rv_html = | class="{ concat_lines_of( table = lt_class
|
|
sep = ` ` ) }"|.
|
|
ENDIF.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD get_item_icon.
|
|
|
|
CASE is_item-obj_type.
|
|
WHEN 'PROG' OR 'CLAS' OR 'FUGR' OR 'INTF' OR 'TYPE'.
|
|
rv_html = zcl_abapgit_html=>icon( 'file-code/darkgrey' ).
|
|
WHEN 'W3MI' OR 'W3HT' OR 'SFPF'.
|
|
rv_html = zcl_abapgit_html=>icon( 'file-image/darkgrey' ).
|
|
WHEN 'DEVC'.
|
|
rv_html = zcl_abapgit_html=>icon( 'box/darkgrey' ).
|
|
WHEN ''.
|
|
rv_html = space. " no icon
|
|
WHEN OTHERS.
|
|
rv_html = zcl_abapgit_html=>icon( 'file-alt/darkgrey' ).
|
|
ENDCASE.
|
|
|
|
IF is_item-is_dir = abap_true.
|
|
rv_html = zcl_abapgit_html=>icon( 'folder/darkgrey' ).
|
|
ENDIF.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD open_in_master_language.
|
|
|
|
CONSTANTS:
|
|
lc_abapgit_tcode TYPE tcode VALUE `ZABAPGIT` ##NO_TEXT.
|
|
|
|
DATA:
|
|
lv_master_language TYPE spras,
|
|
lt_spagpa TYPE STANDARD TABLE OF rfc_spagpa,
|
|
ls_spagpa LIKE LINE OF lt_spagpa,
|
|
ls_item TYPE zif_abapgit_definitions=>ty_item,
|
|
lv_subrc TYPE syst-subrc,
|
|
lv_save_sy_langu TYPE sy-langu.
|
|
|
|
" https://blogs.sap.com/2017/01/13/logon-language-sy-langu-and-rfc/
|
|
|
|
lv_master_language = mo_repo->get_dot_abapgit( )->get_master_language( ).
|
|
|
|
IF lv_master_language = sy-langu.
|
|
zcx_abapgit_exception=>raise( |Repo already opened in master language| ).
|
|
ENDIF.
|
|
|
|
ls_item-obj_name = lc_abapgit_tcode.
|
|
ls_item-obj_type = |TRAN|.
|
|
|
|
IF zcl_abapgit_objects=>exists( ls_item ) = abap_false.
|
|
zcx_abapgit_exception=>raise( |Please install the abapGit repository| ).
|
|
ENDIF.
|
|
|
|
lv_save_sy_langu = sy-langu.
|
|
SET LOCALE LANGUAGE lv_master_language.
|
|
|
|
ls_spagpa-parid = zif_abapgit_definitions=>c_spagpa_param_repo_key.
|
|
ls_spagpa-parval = mo_repo->get_key( ).
|
|
INSERT ls_spagpa INTO TABLE lt_spagpa.
|
|
|
|
CALL FUNCTION 'ABAP4_CALL_TRANSACTION'
|
|
DESTINATION 'NONE'
|
|
STARTING NEW TASK 'ABAPGIT'
|
|
EXPORTING
|
|
tcode = lc_abapgit_tcode
|
|
TABLES
|
|
spagpa_tab = lt_spagpa
|
|
EXCEPTIONS
|
|
call_transaction_denied = 1
|
|
tcode_invalid = 2
|
|
communication_failure = 3
|
|
system_failure = 4
|
|
OTHERS = 5.
|
|
|
|
lv_subrc = sy-subrc.
|
|
|
|
SET LOCALE LANGUAGE lv_save_sy_langu.
|
|
|
|
IF lv_subrc <> 0.
|
|
zcx_abapgit_exception=>raise( |Error from ABAP4_CALL_TRANSACTION. Subrc = { lv_subrc }| ).
|
|
ENDIF.
|
|
|
|
MESSAGE 'Repository opened in a new window' TYPE 'S'.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD render_content.
|
|
|
|
DATA: lt_repo_items TYPE zif_abapgit_definitions=>tt_repo_items,
|
|
lo_browser TYPE REF TO zcl_abapgit_repo_content_list,
|
|
lx_error TYPE REF TO zcx_abapgit_exception,
|
|
lv_lstate TYPE char1,
|
|
lv_rstate TYPE char1,
|
|
lv_max TYPE abap_bool,
|
|
lv_max_str TYPE string,
|
|
lv_add_str TYPE string,
|
|
li_log TYPE REF TO zif_abapgit_log,
|
|
lv_render_transports TYPE abap_bool,
|
|
lo_news TYPE REF TO zcl_abapgit_news.
|
|
|
|
FIELD-SYMBOLS <ls_item> LIKE LINE OF lt_repo_items.
|
|
|
|
gui_services( )->get_hotkeys_ctl( )->register_hotkeys( me ).
|
|
gui_services( )->register_event_handler( me ).
|
|
register_deferred_script(
|
|
zcl_abapgit_gui_chunk_lib=>render_repo_palette( zif_abapgit_definitions=>c_action-go_repo ) ).
|
|
|
|
" Reinit, for the case of type change
|
|
mo_repo = zcl_abapgit_repo_srv=>get_instance( )->get( mo_repo->get_key( ) ).
|
|
|
|
lo_news = zcl_abapgit_news=>create( mo_repo ).
|
|
|
|
CREATE OBJECT ri_html TYPE zcl_abapgit_html.
|
|
ri_html->add( |<div class="repo" id="repo{ mv_key }">| ).
|
|
ri_html->add( zcl_abapgit_gui_chunk_lib=>render_repo_top(
|
|
io_repo = mo_repo
|
|
io_news = lo_news
|
|
iv_interactive_branch = abap_true ) ).
|
|
|
|
ri_html->add( zcl_abapgit_gui_chunk_lib=>render_news( io_news = lo_news ) ).
|
|
|
|
TRY.
|
|
lv_render_transports = zcl_abapgit_factory=>get_cts_api(
|
|
)->is_chrec_possible_for_package( mo_repo->get_package( ) ).
|
|
|
|
CREATE OBJECT lo_browser
|
|
EXPORTING
|
|
io_repo = mo_repo.
|
|
|
|
lt_repo_items = lo_browser->list( iv_path = mv_cur_dir
|
|
iv_by_folders = mv_show_folders
|
|
iv_changes_only = mv_changes_only ).
|
|
|
|
IF mv_show_order_by = abap_true.
|
|
apply_order_by( CHANGING ct_repo_items = lt_repo_items ).
|
|
ENDIF.
|
|
|
|
LOOP AT lt_repo_items ASSIGNING <ls_item>.
|
|
zcl_abapgit_state=>reduce( EXPORTING iv_cur = <ls_item>-lstate
|
|
CHANGING cv_prev = lv_lstate ).
|
|
zcl_abapgit_state=>reduce( EXPORTING iv_cur = <ls_item>-rstate
|
|
CHANGING cv_prev = lv_rstate ).
|
|
ENDLOOP.
|
|
|
|
ri_html->add( render_head_line( iv_lstate = lv_lstate
|
|
iv_rstate = lv_rstate ) ).
|
|
|
|
li_log = lo_browser->get_log( ).
|
|
IF mo_repo->is_offline( ) = abap_false AND li_log->count( ) > 0.
|
|
ri_html->add( '<div class="log">' ).
|
|
ri_html->add( zcl_abapgit_log_viewer=>to_html( li_log ) ). " shows eg. list of unsupported objects
|
|
ri_html->add( '</div>' ).
|
|
ENDIF.
|
|
|
|
ri_html->add( '<div class="repo_container">' ).
|
|
|
|
" Offline match banner
|
|
IF mo_repo->is_offline( ) = abap_true
|
|
AND mo_repo->has_remote_source( ) = abap_true
|
|
AND lv_lstate IS INITIAL AND lv_rstate IS INITIAL.
|
|
ri_html->add(
|
|
|<div class="panel success repo_banner">|
|
|
&& |ZIP source is attached and completely <b>matches</b> to the local state|
|
|
&& |</div>| ).
|
|
ENDIF.
|
|
|
|
" Repo content table
|
|
ri_html->add( '<table class="repo_tab">' ).
|
|
|
|
IF zcl_abapgit_path=>is_root( mv_cur_dir ) = abap_false.
|
|
ri_html->add( render_parent_dir( ) ).
|
|
ENDIF.
|
|
|
|
IF mv_show_order_by = abap_true.
|
|
ri_html->add( render_order_by( ) ).
|
|
ENDIF.
|
|
|
|
IF lines( lt_repo_items ) = 0.
|
|
ri_html->add( render_empty_package( ) ).
|
|
ELSE.
|
|
LOOP AT lt_repo_items ASSIGNING <ls_item>.
|
|
IF mv_max_lines > 0 AND sy-tabix > mv_max_lines.
|
|
lv_max = abap_true.
|
|
EXIT. " current loop
|
|
ENDIF.
|
|
ri_html->add( render_item( is_item = <ls_item>
|
|
iv_render_transports = lv_render_transports ) ).
|
|
ENDLOOP.
|
|
ENDIF.
|
|
|
|
ri_html->add( '</table>' ).
|
|
|
|
IF lv_max = abap_true.
|
|
ri_html->add( '<div class = "dummydiv">' ).
|
|
IF mv_max_lines = 1.
|
|
lv_max_str = '1 object'.
|
|
ELSE.
|
|
lv_max_str = |first { mv_max_lines } objects|.
|
|
ENDIF.
|
|
lv_add_str = |+{ mv_max_setting }|.
|
|
ri_html->add( |Only { lv_max_str } shown in list. Display {
|
|
zcl_abapgit_html=>a( iv_txt = lv_add_str
|
|
iv_act = c_actions-display_more )
|
|
} more. (Set in Advanced > {
|
|
zcl_abapgit_html=>a( iv_txt = 'Settings'
|
|
iv_act = zif_abapgit_definitions=>c_action-go_settings )
|
|
} )| ).
|
|
ri_html->add( '</div>' ).
|
|
ENDIF.
|
|
|
|
ri_html->add( '</div>' ).
|
|
ri_html->add( '</div>' ).
|
|
CATCH zcx_abapgit_exception INTO lx_error.
|
|
ri_html->add(
|
|
render_head_line(
|
|
iv_lstate = lv_lstate
|
|
iv_rstate = lv_rstate ) ).
|
|
ri_html->add( zcl_abapgit_gui_chunk_lib=>render_error(
|
|
iv_extra_style = 'repo_banner'
|
|
ix_error = lx_error ) ).
|
|
ENDTRY.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD render_empty_package.
|
|
|
|
DATA: lv_text TYPE string.
|
|
|
|
IF mv_changes_only = abap_true.
|
|
lv_text = |No changes|.
|
|
ELSE.
|
|
lv_text = |Empty package|.
|
|
ENDIF.
|
|
|
|
rv_html = |<tr class="unsupported"><td class="paddings">|
|
|
&& | <center>{ lv_text }</center>|
|
|
&& |</td></tr>|.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD render_head_line.
|
|
|
|
DATA lo_toolbar TYPE REF TO zcl_abapgit_html_toolbar.
|
|
|
|
CREATE OBJECT ri_html TYPE zcl_abapgit_html.
|
|
lo_toolbar = build_head_menu( iv_lstate = iv_lstate
|
|
iv_rstate = iv_rstate ).
|
|
|
|
ri_html->add( '<div class="paddings">' ).
|
|
ri_html->add( '<table class="w100"><tr>' ).
|
|
|
|
IF mv_show_folders = abap_true.
|
|
ri_html->add( |<td class="current_dir">{ mv_cur_dir }</td>| ).
|
|
ENDIF.
|
|
|
|
ri_html->add( '<td class="right">' ).
|
|
ri_html->add( lo_toolbar->render( iv_right = abap_true ) ).
|
|
ri_html->add( '</td>' ).
|
|
ri_html->add( '</tr></table>' ).
|
|
ri_html->add( '</div>' ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD render_item.
|
|
|
|
DATA: lv_link TYPE string,
|
|
lv_colspan TYPE i.
|
|
|
|
CREATE OBJECT ri_html TYPE zcl_abapgit_html.
|
|
|
|
IF iv_render_transports = abap_false.
|
|
lv_colspan = 2.
|
|
ELSE.
|
|
lv_colspan = 3.
|
|
ENDIF.
|
|
|
|
ri_html->add( |<tr{ get_item_class( is_item ) }>| ).
|
|
|
|
IF is_item-obj_name IS INITIAL AND is_item-is_dir = abap_false.
|
|
ri_html->add( |<td colspan="{ lv_colspan }"></td>|
|
|
&& '<td class="object">'
|
|
&& '<i class="grey">non-code and meta files</i>'
|
|
&& '</td>' ).
|
|
ELSE.
|
|
ri_html->add( |<td class="icon">{ get_item_icon( is_item ) }</td>| ).
|
|
IF iv_render_transports = abap_true.
|
|
ri_html->add( render_item_lock_column( is_item ) ).
|
|
ENDIF.
|
|
|
|
IF is_item-is_dir = abap_true. " Subdir
|
|
lv_link = build_dir_jump_link( is_item-path ).
|
|
ri_html->add( |<td class="dir" colspan="2">{ lv_link }</td>| ).
|
|
ELSE.
|
|
lv_link = build_obj_jump_link( is_item ).
|
|
ri_html->add( |<td class="type">{ is_item-obj_type }</td>| ).
|
|
ri_html->add( |<td class="object">{ lv_link } { build_inactive_object_code( is_item ) }</td>| ).
|
|
ENDIF.
|
|
ENDIF.
|
|
|
|
" Files
|
|
ri_html->add( '<td class="files">' ).
|
|
ri_html->add( render_item_files( is_item ) ).
|
|
ri_html->add( '</td>' ).
|
|
|
|
" Command
|
|
IF mo_repo->has_remote_source( ) = abap_true.
|
|
ri_html->add( '<td class="cmd">' ).
|
|
ri_html->add( render_item_command( is_item ) ).
|
|
ri_html->add( '</td>' ).
|
|
ENDIF.
|
|
|
|
ri_html->add( '</tr>' ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD render_item_command.
|
|
|
|
DATA: lv_difflink TYPE string,
|
|
ls_file LIKE LINE OF is_item-files.
|
|
|
|
CREATE OBJECT ri_html TYPE zcl_abapgit_html.
|
|
|
|
IF is_item-is_dir = abap_true. " Directory
|
|
|
|
ri_html->add( '<div>' ).
|
|
ri_html->add( |<span class="grey">{ is_item-changes } changes</span>| ).
|
|
ri_html->add( zcl_abapgit_gui_chunk_lib=>render_item_state(
|
|
iv_lstate = is_item-lstate
|
|
iv_rstate = is_item-rstate ) ).
|
|
ri_html->add( '</div>' ).
|
|
|
|
ELSEIF is_item-changes > 0.
|
|
|
|
IF mv_hide_files = abap_true AND is_item-obj_name IS NOT INITIAL.
|
|
|
|
lv_difflink = zcl_abapgit_html_action_utils=>obj_encode(
|
|
iv_key = mo_repo->get_key( )
|
|
ig_object = is_item ).
|
|
|
|
ri_html->add( '<div>' ).
|
|
ri_html->add_a( iv_txt = |diff ({ is_item-changes })|
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-go_diff }?{ lv_difflink }| ).
|
|
ri_html->add( zcl_abapgit_gui_chunk_lib=>render_item_state( iv_lstate = is_item-lstate
|
|
iv_rstate = is_item-rstate ) ).
|
|
ri_html->add( '</div>' ).
|
|
|
|
ELSE.
|
|
LOOP AT is_item-files INTO ls_file.
|
|
|
|
ri_html->add( '<div>' ).
|
|
IF ls_file-is_changed = abap_true.
|
|
lv_difflink = zcl_abapgit_html_action_utils=>file_encode(
|
|
iv_key = mo_repo->get_key( )
|
|
ig_file = ls_file ).
|
|
ri_html->add_a( iv_txt = 'diff'
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-go_diff }?{ lv_difflink }| ).
|
|
ri_html->add( zcl_abapgit_gui_chunk_lib=>render_item_state( iv_lstate = ls_file-lstate
|
|
iv_rstate = ls_file-rstate ) ).
|
|
ELSE.
|
|
ri_html->add( ' ' ).
|
|
ENDIF.
|
|
ri_html->add( '</div>' ).
|
|
|
|
ENDLOOP.
|
|
ENDIF.
|
|
|
|
ENDIF.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD render_item_files.
|
|
|
|
DATA: ls_file LIKE LINE OF is_item-files.
|
|
|
|
CREATE OBJECT ri_html TYPE zcl_abapgit_html.
|
|
|
|
IF mv_hide_files = abap_true AND is_item-obj_type IS NOT INITIAL.
|
|
RETURN.
|
|
ENDIF.
|
|
|
|
LOOP AT is_item-files INTO ls_file.
|
|
ri_html->add( |<div>{ ls_file-path && ls_file-filename }</div>| ).
|
|
ENDLOOP.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD render_item_lock_column.
|
|
DATA: li_cts_api TYPE REF TO zif_abapgit_cts_api,
|
|
lv_transport TYPE trkorr,
|
|
lv_transport_string TYPE string,
|
|
lv_icon_html TYPE string.
|
|
|
|
li_cts_api = zcl_abapgit_factory=>get_cts_api( ).
|
|
|
|
TRY.
|
|
IF is_item-obj_type IS INITIAL OR is_item-obj_name IS INITIAL OR
|
|
li_cts_api->is_object_type_lockable( is_item-obj_type ) = abap_false OR
|
|
li_cts_api->is_object_locked_in_transport( iv_object_type = is_item-obj_type
|
|
iv_object_name = is_item-obj_name ) = abap_false.
|
|
rv_html = |<td class="icon"></td>|.
|
|
ELSE.
|
|
lv_transport = li_cts_api->get_current_transport_for_obj( iv_object_type = is_item-obj_type
|
|
iv_object_name = is_item-obj_name
|
|
iv_resolve_task_to_request = abap_false ).
|
|
lv_transport_string = lv_transport.
|
|
lv_icon_html = zcl_abapgit_html=>a( iv_txt = zcl_abapgit_html=>icon( iv_name = 'briefcase/darkgrey'
|
|
iv_hint = lv_transport_string )
|
|
iv_act = |{ zif_abapgit_definitions=>c_action-jump_transport }?| &&
|
|
lv_transport ).
|
|
rv_html = |<td class="icon">| &&
|
|
|{ lv_icon_html }| &&
|
|
|</td>|.
|
|
ENDIF.
|
|
CATCH zcx_abapgit_exception.
|
|
ASSERT 1 = 2.
|
|
ENDTRY.
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD render_order_by.
|
|
|
|
DATA:
|
|
lv_icon TYPE string,
|
|
lv_html TYPE string.
|
|
|
|
CREATE OBJECT ro_html.
|
|
|
|
CLEAR mt_col_spec.
|
|
_add_col( '' ). " all empty
|
|
IF mv_are_changes_recorded_in_tr = abap_true.
|
|
_add_col( '' ). " all empty
|
|
ENDIF.
|
|
" technical name /display name /css class /add timezone /title
|
|
_add_col( 'OBJ_TYPE /Type' ).
|
|
_add_col( 'OBJ_NAME /Name' ).
|
|
_add_col( 'PATH /Path' ).
|
|
|
|
ro_html->add( |<thead>| ).
|
|
ro_html->add( |<tr>| ).
|
|
|
|
ro_html->add( zcl_abapgit_gui_chunk_lib=>render_order_by_header_cells(
|
|
it_col_spec = mt_col_spec
|
|
iv_order_by = mv_order_by
|
|
iv_order_descending = mv_order_descending ) ).
|
|
|
|
IF mv_diff_first = abap_true.
|
|
lv_icon = 'check/blue'.
|
|
ELSE.
|
|
lv_icon = 'check/grey'.
|
|
ENDIF.
|
|
|
|
lv_html = |<th class="cmd">| &&
|
|
zcl_abapgit_html=>icon( lv_icon ) &&
|
|
zcl_abapgit_html=>a(
|
|
iv_txt = |diffs first|
|
|
iv_act = c_actions-toggle_diff_first ) && |</th>|.
|
|
ro_html->add( lv_html ).
|
|
|
|
ro_html->add( '</tr>' ).
|
|
ro_html->add( '</thead>' ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD render_parent_dir.
|
|
|
|
CREATE OBJECT ri_html TYPE zcl_abapgit_html.
|
|
|
|
ri_html->add( '<tr class="folder">' ).
|
|
ri_html->add( |<td class="icon">{ zcl_abapgit_html=>icon( 'folder' ) }</td>| ).
|
|
ri_html->add( |<td class="object" colspan="4">{ build_dir_jump_link( '..' ) }</td>| ).
|
|
IF mo_repo->has_remote_source( ) = abap_true.
|
|
ri_html->add( |<td colspan="1"></td>| ). " Dummy for online
|
|
ENDIF.
|
|
ri_html->add( '</tr>' ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_gui_event_handler~on_event.
|
|
|
|
DATA: lv_path TYPE string.
|
|
|
|
CASE iv_action.
|
|
WHEN zif_abapgit_definitions=>c_action-go_repo. " Switch to another repo
|
|
CREATE OBJECT ei_page TYPE zcl_abapgit_gui_page_view_repo
|
|
EXPORTING
|
|
iv_key = |{ iv_getdata }|.
|
|
ev_state = zcl_abapgit_gui=>c_event_state-new_page_replacing.
|
|
|
|
WHEN c_actions-toggle_hide_files. " Toggle file diplay
|
|
mv_hide_files = zcl_abapgit_persistence_user=>get_instance( )->toggle_hide_files( ).
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN c_actions-change_dir. " Change dir
|
|
lv_path = zcl_abapgit_html_action_utils=>dir_decode( iv_getdata ).
|
|
mv_cur_dir = zcl_abapgit_path=>change_dir( iv_cur_dir = mv_cur_dir
|
|
iv_cd = lv_path ).
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN c_actions-toggle_folders. " Toggle folder view
|
|
mv_show_folders = boolc( mv_show_folders <> abap_true ).
|
|
mv_cur_dir = '/'. " Root
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN c_actions-toggle_changes. " Toggle changes only view
|
|
mv_changes_only = zcl_abapgit_persistence_user=>get_instance( )->toggle_changes_only( ).
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN c_actions-toggle_order_by.
|
|
mv_show_order_by = zcl_abapgit_persistence_user=>get_instance( )->toggle_show_order_by( ).
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN c_actions-toggle_diff_first.
|
|
mv_diff_first = boolc( mv_diff_first = abap_false ).
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN c_actions-display_more. " Increase MAX lines limit
|
|
mv_max_lines = mv_max_lines + mv_max_setting.
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN zif_abapgit_definitions=>c_action-change_order_by.
|
|
mv_order_by = zcl_abapgit_gui_chunk_lib=>parse_change_order_by( iv_getdata ).
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN zif_abapgit_definitions=>c_action-direction.
|
|
mv_order_descending = zcl_abapgit_gui_chunk_lib=>parse_direction( iv_getdata ).
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN zif_abapgit_definitions=>c_action-repo_open_in_master_lang.
|
|
open_in_master_language( ).
|
|
ev_state = zcl_abapgit_gui=>c_event_state-re_render.
|
|
|
|
WHEN OTHERS.
|
|
|
|
super->zif_abapgit_gui_event_handler~on_event(
|
|
EXPORTING
|
|
iv_action = iv_action
|
|
iv_getdata = iv_getdata
|
|
it_postdata = it_postdata
|
|
IMPORTING
|
|
ei_page = ei_page
|
|
ev_state = ev_state ).
|
|
|
|
ENDCASE.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_gui_hotkeys~get_hotkey_actions.
|
|
|
|
DATA: ls_hotkey_action LIKE LINE OF rt_hotkey_actions.
|
|
ls_hotkey_action-ui_component = 'Repo'.
|
|
|
|
ls_hotkey_action-description = |Stage changes|.
|
|
ls_hotkey_action-action = zif_abapgit_definitions=>c_action-go_stage.
|
|
ls_hotkey_action-hotkey = |s|.
|
|
INSERT ls_hotkey_action INTO TABLE rt_hotkey_actions.
|
|
|
|
ls_hotkey_action-description = |Switch branch|.
|
|
ls_hotkey_action-action = zif_abapgit_definitions=>c_action-git_branch_switch.
|
|
ls_hotkey_action-hotkey = |b|.
|
|
INSERT ls_hotkey_action INTO TABLE rt_hotkey_actions.
|
|
|
|
ls_hotkey_action-description = |Installed repo list|.
|
|
ls_hotkey_action-action = zif_abapgit_definitions=>c_action-abapgit_home.
|
|
ls_hotkey_action-hotkey = |o|.
|
|
INSERT ls_hotkey_action INTO TABLE rt_hotkey_actions.
|
|
|
|
ls_hotkey_action-description = |Refresh repository|.
|
|
ls_hotkey_action-action = zif_abapgit_definitions=>c_action-repo_refresh.
|
|
ls_hotkey_action-hotkey = |r|.
|
|
INSERT ls_hotkey_action INTO TABLE rt_hotkey_actions.
|
|
|
|
ls_hotkey_action-description = |Pull|.
|
|
ls_hotkey_action-action = zif_abapgit_definitions=>c_action-git_pull.
|
|
ls_hotkey_action-hotkey = |p|.
|
|
INSERT ls_hotkey_action INTO TABLE rt_hotkey_actions.
|
|
|
|
ls_hotkey_action-description = |Diff|.
|
|
ls_hotkey_action-action = zif_abapgit_definitions=>c_action-go_diff.
|
|
ls_hotkey_action-hotkey = |d|.
|
|
INSERT ls_hotkey_action INTO TABLE rt_hotkey_actions.
|
|
|
|
ls_hotkey_action-description = |Uninstall repository|.
|
|
ls_hotkey_action-action = zif_abapgit_definitions=>c_action-repo_purge.
|
|
ls_hotkey_action-hotkey = |u|.
|
|
INSERT ls_hotkey_action INTO TABLE rt_hotkey_actions.
|
|
|
|
ls_hotkey_action-description = |Run code inspector|.
|
|
ls_hotkey_action-action = zif_abapgit_definitions=>c_action-repo_code_inspector.
|
|
ls_hotkey_action-hotkey = |i|.
|
|
INSERT ls_hotkey_action INTO TABLE rt_hotkey_actions.
|
|
|
|
ls_hotkey_action-description = |Show log|.
|
|
ls_hotkey_action-action = zif_abapgit_definitions=>c_action-repo_log.
|
|
ls_hotkey_action-hotkey = |l|.
|
|
INSERT ls_hotkey_action INTO TABLE rt_hotkey_actions.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD _add_col.
|
|
FIELD-SYMBOLS <ls_col> LIKE LINE OF mt_col_spec.
|
|
APPEND INITIAL LINE TO mt_col_spec ASSIGNING <ls_col>.
|
|
SPLIT iv_str AT '/' INTO
|
|
<ls_col>-tech_name
|
|
<ls_col>-display_name
|
|
<ls_col>-css_class
|
|
<ls_col>-add_tz
|
|
<ls_col>-title.
|
|
CONDENSE <ls_col>-tech_name.
|
|
CONDENSE <ls_col>-display_name.
|
|
CONDENSE <ls_col>-css_class.
|
|
CONDENSE <ls_col>-add_tz.
|
|
CONDENSE <ls_col>-title.
|
|
ENDMETHOD.
|
|
ENDCLASS.
|