2017-05-26 16:37:29 -04:00
|
|
|
# rubocop:disable Metrics/AbcSize
|
|
|
|
|
2016-04-13 01:39:18 -04:00
|
|
|
module Gitlab
|
|
|
|
module GonHelper
|
2017-06-28 22:57:35 -04:00
|
|
|
include WebpackHelper
|
|
|
|
|
2016-04-13 01:39:18 -04:00
|
|
|
def add_gon_variables
|
2017-03-06 00:03:21 -05:00
|
|
|
gon.api_version = 'v4'
|
2017-02-21 19:51:36 -05:00
|
|
|
gon.default_avatar_url = URI.join(Gitlab.config.gitlab.url, ActionController::Base.helpers.image_path('no_avatar.png')).to_s
|
2018-02-02 13:39:55 -05:00
|
|
|
gon.max_file_size = Gitlab::CurrentSettings.max_attachment_size
|
2017-03-03 12:56:02 -05:00
|
|
|
gon.asset_host = ActionController::Base.asset_host
|
2017-06-28 22:57:35 -04:00
|
|
|
gon.webpack_public_path = webpack_public_path
|
2016-04-13 01:39:18 -04:00
|
|
|
gon.relative_url_root = Gitlab.config.gitlab.relative_url_root
|
2018-05-29 09:03:14 -04:00
|
|
|
gon.shortcuts_path = Gitlab::Routing.url_helpers.help_page_path('shortcuts')
|
2016-04-13 01:39:18 -04:00
|
|
|
gon.user_color_scheme = Gitlab::ColorSchemes.for_user(current_user).css_class
|
2018-02-02 13:39:55 -05:00
|
|
|
gon.sentry_dsn = Gitlab::CurrentSettings.clientside_sentry_dsn if Gitlab::CurrentSettings.clientside_sentry_enabled
|
2016-10-09 18:40:58 -04:00
|
|
|
gon.gitlab_url = Gitlab.config.gitlab.url
|
2018-05-24 03:57:54 -04:00
|
|
|
gon.revision = Gitlab.revision
|
2017-05-26 10:26:06 -04:00
|
|
|
gon.gitlab_logo = ActionController::Base.helpers.asset_path('gitlab_logo.png')
|
2017-11-09 04:38:00 -05:00
|
|
|
gon.sprite_icons = IconsHelper.sprite_icon_path
|
2018-01-03 05:08:14 -05:00
|
|
|
gon.sprite_file_icons = IconsHelper.sprite_file_icons_path
|
2018-05-02 14:23:17 -04:00
|
|
|
gon.emoji_sprites_css_path = ActionController::Base.helpers.stylesheet_path('emoji_sprites')
|
2018-03-01 13:13:50 -05:00
|
|
|
gon.test_env = Rails.env.test?
|
2018-03-05 07:33:25 -05:00
|
|
|
gon.suggested_label_colors = LabelsHelper.suggested_colors
|
2016-04-13 01:39:18 -04:00
|
|
|
|
|
|
|
if current_user
|
|
|
|
gon.current_user_id = current_user.id
|
2016-11-11 12:56:47 -05:00
|
|
|
gon.current_username = current_user.username
|
2017-02-22 02:26:32 -05:00
|
|
|
gon.current_user_fullname = current_user.name
|
2017-05-18 04:40:35 -04:00
|
|
|
gon.current_user_avatar_url = current_user.avatar_url
|
2016-04-13 01:39:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|