Commit 93f37223 authored by Andrew Fontaine's avatar Andrew Fontaine

Merge branch 'integrations-page-cleanup' into 'master'

Use GitLab UI styles on Integrations page

See merge request gitlab-org/gitlab!47478
parents f30a6c16 dfdd9cbc
...@@ -80,9 +80,9 @@ module IconsHelper ...@@ -80,9 +80,9 @@ module IconsHelper
def boolean_to_icon(value) def boolean_to_icon(value)
if value if value
sprite_icon('check', css_class: 'cgreen') sprite_icon('check', css_class: 'gl-text-green-500')
else else
sprite_icon('power', css_class: 'clgray') sprite_icon('power', css_class: 'gl-text-gray-500')
end end
end end
......
%table.table.b-table.gl-table.mt-3{ role: 'table', 'aria-busy': false, 'aria-colcount': 4 } %table.table.b-table.gl-table{ role: 'table', 'aria-busy': false, 'aria-colcount': 4 }
%colgroup %colgroup
%col %col
%col %col
...@@ -15,11 +15,10 @@ ...@@ -15,11 +15,10 @@
- integrations.each do |integration| - integrations.each do |integration|
- activated_label = (integration.activated? ? s_("ProjectService|%{service_title}: status on") : s_("ProjectService|%{service_title}: status off")) % { service_title: integration.title } - activated_label = (integration.activated? ? s_("ProjectService|%{service_title}: status on") : s_("ProjectService|%{service_title}: status off")) % { service_title: integration.title }
%tr{ role: 'row' } %tr{ role: 'row' }
%td{ role: 'cell', 'aria-colindex': 1, 'aria-label': activated_label } %td{ role: 'cell', 'aria-colindex': 1, 'aria-label': activated_label, title: activated_label }
= boolean_to_icon integration.operating? = boolean_to_icon integration.operating?
%td{ role: 'cell', 'aria-colindex': 2 } %td{ role: 'cell', 'aria-colindex': 2 }
= link_to scoped_edit_integration_path(integration), { data: { qa_selector: "#{integration.to_param}_link" } } do = link_to integration.title, scoped_edit_integration_path(integration), class: 'gl-font-weight-bold', data: { qa_selector: "#{integration.to_param}_link" }
%strong= integration.title
%td.d-none.d-sm-table-cell{ role: 'cell', 'aria-colindex': 3 } %td.d-none.d-sm-table-cell{ role: 'cell', 'aria-colindex': 3 }
= integration.description = integration.description
%td{ role: 'cell', 'aria-colindex': 4 } %td{ role: 'cell', 'aria-colindex': 4 }
......
---
title: Use GitLab UI styles on Integrations page
merge_request: 47478
author:
type: changed
...@@ -11,7 +11,7 @@ module QA ...@@ -11,7 +11,7 @@ module QA
def self.prepended(base) def self.prepended(base)
base.class_eval do base.class_eval do
view 'app/views/shared/integrations/_index.html.haml' do view 'app/views/shared/integrations/_index.html.haml' do
element :jenkins_link, '{ data: { qa_selector: "#{integration.to_param' # rubocop:disable QA/ElementWithPattern element :jenkins_link, 'data: { qa_selector: "#{integration.to_param' # rubocop:disable QA/ElementWithPattern
end end
end end
end end
......
...@@ -6,8 +6,8 @@ module QA ...@@ -6,8 +6,8 @@ module QA
module Settings module Settings
class Integrations < QA::Page::Base class Integrations < QA::Page::Base
view 'app/views/shared/integrations/_index.html.haml' do view 'app/views/shared/integrations/_index.html.haml' do
element :prometheus_link, '{ data: { qa_selector: "#{integration.to_param' # rubocop:disable QA/ElementWithPattern element :prometheus_link, 'data: { qa_selector: "#{integration.to_param' # rubocop:disable QA/ElementWithPattern
element :jira_link, '{ data: { qa_selector: "#{integration.to_param' # rubocop:disable QA/ElementWithPattern element :jira_link, 'data: { qa_selector: "#{integration.to_param' # rubocop:disable QA/ElementWithPattern
end end
def click_on_prometheus_integration def click_on_prometheus_integration
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment