debian-mirror-gitlab/app/controllers/concerns/preview_markdown.rb

37 lines
1.1 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module PreviewMarkdown
extend ActiveSupport::Concern
# rubocop:disable Gitlab/ModuleWithInstanceVariables
def preview_markdown
result = PreviewMarkdownService.new(@project, current_user, params).execute
markdown_params =
case controller_name
when 'wikis' then { pipeline: :wiki, project_wiki: @project_wiki, page_slug: params[:id] }
when 'snippets' then { skip_project_check: true }
when 'groups' then { group: group }
2019-02-15 15:39:39 +05:30
when 'projects' then projects_filter_params
2018-03-17 18:26:18 +05:30
else {}
end
render json: {
body: view_context.markdown(result[:text], markdown_params),
references: {
users: result[:users],
2019-07-07 11:18:12 +05:30
suggestions: SuggestionSerializer.new.represent_diff(result[:suggestions]),
2018-03-17 18:26:18 +05:30
commands: view_context.markdown(result[:commands])
}
}
end
2019-02-15 15:39:39 +05:30
def projects_filter_params
{
issuable_state_filter_enabled: true,
suggestions_filter_enabled: params[:preview_suggestions].present?
}
end
2018-03-17 18:26:18 +05:30
# rubocop:enable Gitlab/ModuleWithInstanceVariables
end