debian-mirror-gitlab/lib/gitlab/gon_helper.rb

52 lines
2.4 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
# rubocop:disable Metrics/AbcSize
2016-06-02 11:05:42 +05:30
module Gitlab
module GonHelper
2017-09-10 17:25:29 +05:30
include WebpackHelper
2016-06-02 11:05:42 +05:30
def add_gon_variables
2017-08-17 22:00:37 +05:30
gon.api_version = 'v4'
2019-01-03 12:48:30 +05:30
gon.default_avatar_url = URI.join(Gitlab.config.gitlab.url, ActionController::Base.helpers.image_path('no_avatar.png')).to_s
2018-03-17 18:26:18 +05:30
gon.max_file_size = Gitlab::CurrentSettings.max_attachment_size
2017-08-17 22:00:37 +05:30
gon.asset_host = ActionController::Base.asset_host
2017-09-10 17:25:29 +05:30
gon.webpack_public_path = webpack_public_path
2016-06-02 11:05:42 +05:30
gon.relative_url_root = Gitlab.config.gitlab.relative_url_root
2018-11-08 19:23:39 +05:30
gon.shortcuts_path = Gitlab::Routing.url_helpers.help_page_path('shortcuts')
2016-06-02 11:05:42 +05:30
gon.user_color_scheme = Gitlab::ColorSchemes.for_user(current_user).css_class
2018-03-17 18:26:18 +05:30
gon.sentry_dsn = Gitlab::CurrentSettings.clientside_sentry_dsn if Gitlab::CurrentSettings.clientside_sentry_enabled
2017-08-17 22:00:37 +05:30
gon.gitlab_url = Gitlab.config.gitlab.url
2018-10-15 14:42:47 +05:30
gon.revision = Gitlab.revision
2017-08-17 22:00:37 +05:30
gon.gitlab_logo = ActionController::Base.helpers.asset_path('gitlab_logo.png')
2018-03-17 18:26:18 +05:30
gon.sprite_icons = IconsHelper.sprite_icon_path
gon.sprite_file_icons = IconsHelper.sprite_file_icons_path
2018-10-15 14:42:47 +05:30
gon.emoji_sprites_css_path = ActionController::Base.helpers.stylesheet_path('emoji_sprites')
2018-03-27 19:54:05 +05:30
gon.test_env = Rails.env.test?
gon.suggested_label_colors = LabelsHelper.suggested_colors
2016-06-02 11:05:42 +05:30
if current_user
gon.current_user_id = current_user.id
2017-08-17 22:00:37 +05:30
gon.current_username = current_user.username
gon.current_user_fullname = current_user.name
2017-09-10 17:25:29 +05:30
gon.current_user_avatar_url = current_user.avatar_url
2016-06-02 11:05:42 +05:30
end
end
2018-12-13 13:39:08 +05:30
# Exposes the state of a feature flag to the frontend code.
#
# name - The name of the feature flag, e.g. `my_feature`.
# args - Any additional arguments to pass to `Feature.enabled?`. This allows
# you to check if a flag is enabled for a particular user.
def push_frontend_feature_flag(name, *args)
var_name = name.to_s.camelize(:lower)
enabled = Feature.enabled?(name, *args)
# Here the `true` argument signals gon that the value should be merged
# into any existing ones, instead of overwriting them. This allows you to
# use this method to push multiple feature flags.
gon.push({ features: { var_name => enabled } }, true)
end
2016-06-02 11:05:42 +05:30
end
end