2018-09-14 01:42:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-11 05:03:19 -04:00
|
|
|
module PreviewMarkdown
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2017-11-22 02:50:36 -05:00
|
|
|
# rubocop:disable Gitlab/ModuleWithInstanceVariables
|
2017-10-11 05:03:19 -04:00
|
|
|
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 }
|
2017-11-22 08:20:35 -05:00
|
|
|
when 'groups' then { group: group }
|
2018-12-13 14:17:19 -05:00
|
|
|
when 'projects' then projects_filter_params
|
2017-10-11 05:03:19 -04:00
|
|
|
else {}
|
|
|
|
end
|
|
|
|
|
2018-07-06 14:49:33 -04:00
|
|
|
markdown_params[:markdown_engine] = result[:markdown_engine]
|
|
|
|
|
2017-10-11 05:03:19 -04:00
|
|
|
render json: {
|
|
|
|
body: view_context.markdown(result[:text], markdown_params),
|
|
|
|
references: {
|
|
|
|
users: result[:users],
|
2018-12-13 14:17:19 -05:00
|
|
|
suggestions: result[:suggestions],
|
2017-10-11 05:03:19 -04:00
|
|
|
commands: view_context.markdown(result[:commands])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2018-12-13 14:17:19 -05:00
|
|
|
|
|
|
|
def projects_filter_params
|
|
|
|
{
|
|
|
|
issuable_state_filter_enabled: true,
|
|
|
|
suggestions_filter_enabled: params[:preview_suggestions].present?
|
|
|
|
}
|
|
|
|
end
|
2017-11-22 02:50:36 -05:00
|
|
|
# rubocop:enable Gitlab/ModuleWithInstanceVariables
|
2017-10-11 05:03:19 -04:00
|
|
|
end
|