-
- Downloads
Migrate admin runner list from HAML to Vue
This change introduces feature flag: `runner_list_view_vue_ui`. To migrate the implementation of the runner admin section to Vue. This is an incomplete implementation, as some more features will be added gradually behind this feature flag.
Showing
- app/assets/javascripts/pages/admin/runners/index/index.js 5 additions, 0 deletionsapp/assets/javascripts/pages/admin/runners/index/index.js
- app/assets/javascripts/runner/components/cells/runner_name_cell.vue 44 additions, 0 deletions.../javascripts/runner/components/cells/runner_name_cell.vue
- app/assets/javascripts/runner/components/cells/runner_type_cell.vue 42 additions, 0 deletions.../javascripts/runner/components/cells/runner_type_cell.vue
- app/assets/javascripts/runner/components/runner_list.vue 142 additions, 0 deletionsapp/assets/javascripts/runner/components/runner_list.vue
- app/assets/javascripts/runner/components/runner_manual_setup_help.vue 76 additions, 0 deletions...avascripts/runner/components/runner_manual_setup_help.vue
- app/assets/javascripts/runner/components/runner_tags.vue 33 additions, 0 deletionsapp/assets/javascripts/runner/components/runner_tags.vue
- app/assets/javascripts/runner/components/runner_type_help.vue 60 additions, 0 deletions...assets/javascripts/runner/components/runner_type_help.vue
- app/assets/javascripts/runner/graphql/get_runners.query.graphql 17 additions, 0 deletions...sets/javascripts/runner/graphql/get_runners.query.graphql
- app/assets/javascripts/runner/runner_list/index.js 42 additions, 0 deletionsapp/assets/javascripts/runner/runner_list/index.js
- app/assets/javascripts/runner/runner_list/runner_list_app.vue 82 additions, 0 deletions...assets/javascripts/runner/runner_list/runner_list_app.vue
- app/controllers/admin/runners_controller.rb 3 additions, 0 deletionsapp/controllers/admin/runners_controller.rb
- app/views/admin/runners/_runner.html.haml 1 addition, 1 deletionapp/views/admin/runners/_runner.html.haml
- app/views/admin/runners/index.html.haml 122 additions, 120 deletionsapp/views/admin/runners/index.html.haml
- app/views/ci/runner/_how_to_setup_runner.html.haml 1 addition, 1 deletionapp/views/ci/runner/_how_to_setup_runner.html.haml
- config/feature_flags/development/runner_list_view_vue_ui.yml 8 additions, 0 deletionsconfig/feature_flags/development/runner_list_view_vue_ui.yml
- spec/controllers/admin/runners_controller_spec.rb 4 additions, 0 deletionsspec/controllers/admin/runners_controller_spec.rb
- spec/features/admin/admin_runners_spec.rb 31 additions, 27 deletionsspec/features/admin/admin_runners_spec.rb
- spec/frontend/runner/components/cells/runner_name_cell_spec.js 42 additions, 0 deletions...frontend/runner/components/cells/runner_name_cell_spec.js
- spec/frontend/runner/components/cells/runner_type_cell_spec.js 48 additions, 0 deletions...frontend/runner/components/cells/runner_type_cell_spec.js
- spec/frontend/runner/components/runner_list_spec.js 115 additions, 0 deletionsspec/frontend/runner/components/runner_list_spec.js
Please register or sign in to comment