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
|
2016-07-19 13:17:14 -04:00
|
|
|
gon.shortcuts_path = help_page_path('shortcuts')
|
2016-04-13 01:39:18 -04:00
|
|
|
gon.user_color_scheme = Gitlab::ColorSchemes.for_user(current_user).css_class
|
2016-12-08 19:15:08 -05:00
|
|
|
gon.katex_css_url = ActionController::Base.helpers.asset_path('katex.css')
|
|
|
|
gon.katex_js_url = ActionController::Base.helpers.asset_path('katex.js')
|
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
|
2017-05-21 08:38:03 -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
|
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
|