2014-07-11 10:16:44 -04:00
|
|
|
module AppearancesHelper
|
2014-07-11 08:05:40 -04:00
|
|
|
def brand_title
|
2017-11-22 08:48:38 -05:00
|
|
|
brand_item&.title.presence || 'GitLab Community Edition'
|
2014-07-11 08:05:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def brand_image
|
2017-11-22 08:48:38 -05:00
|
|
|
image_tag(brand_item.logo) if brand_item&.logo?
|
2014-07-11 08:05:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def brand_text
|
2016-10-06 18:01:42 -04:00
|
|
|
markdown_field(brand_item, :description)
|
2016-02-22 14:49:16 -05:00
|
|
|
end
|
|
|
|
|
2017-11-22 08:48:38 -05:00
|
|
|
def brand_new_project_guidelines
|
|
|
|
markdown_field(brand_item, :new_project_guidelines)
|
|
|
|
end
|
|
|
|
|
2016-02-22 14:49:16 -05:00
|
|
|
def brand_item
|
2017-08-09 10:41:51 -04:00
|
|
|
@appearance ||= Appearance.current
|
2014-07-11 08:05:40 -04:00
|
|
|
end
|
2015-02-25 01:58:47 -05:00
|
|
|
|
|
|
|
def brand_header_logo
|
2017-11-22 08:48:38 -05:00
|
|
|
if brand_item&.header_logo?
|
2016-02-22 14:49:16 -05:00
|
|
|
image_tag brand_item.header_logo
|
|
|
|
else
|
|
|
|
render 'shared/logo.svg'
|
|
|
|
end
|
2015-02-25 01:58:47 -05:00
|
|
|
end
|
2017-11-15 16:31:17 -05:00
|
|
|
|
|
|
|
# Skip the 'GitLab' type logo when custom brand logo is set
|
|
|
|
def brand_header_logo_type
|
2017-11-22 08:48:38 -05:00
|
|
|
unless brand_item&.header_logo?
|
2017-11-15 16:31:17 -05:00
|
|
|
render 'shared/logo_type.svg'
|
|
|
|
end
|
|
|
|
end
|
2014-07-11 08:05:40 -04:00
|
|
|
end
|