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
|
2019-12-26 22:10:19 +05:30
|
|
|
result = PreviewMarkdownService.new(@project, current_user, markdown_service_params).execute
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
render json: {
|
2019-12-26 22:10:19 +05:30
|
|
|
body: view_context.markdown(result[:text], markdown_context_params),
|
2018-03-17 18:26:18 +05:30
|
|
|
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
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
private
|
|
|
|
|
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
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
def markdown_service_params
|
|
|
|
params
|
|
|
|
end
|
|
|
|
|
|
|
|
def markdown_context_params
|
|
|
|
case controller_name
|
2020-06-23 00:09:42 +05:30
|
|
|
when 'wikis' then { pipeline: :wiki, wiki: wiki, page_slug: params[:id] }
|
2019-12-26 22:10:19 +05:30
|
|
|
when 'snippets' then { skip_project_check: true }
|
|
|
|
when 'groups' then { group: group }
|
|
|
|
when 'projects' then projects_filter_params
|
|
|
|
else {}
|
2020-05-24 23:13:21 +05:30
|
|
|
end.merge(requested_path: params[:path], ref: params[:ref])
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
# rubocop:enable Gitlab/ModuleWithInstanceVariables
|
|
|
|
end
|