summaryrefslogtreecommitdiff
path: root/app/views/snippets/show.html.haml
blob: eb9465a409f6abed2a694a2b89b06b7b59b4fb7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- add_page_startup_graphql_call('snippet/snippet', { ids: [@snippet.to_global_id.uri] })
- add_page_startup_graphql_call('snippet/snippet_blob_content', { ids: [@snippet.to_global_id.uri], rich: false, paths: [@snippet.file_name] })
- if @snippet.project_id?
  - add_page_startup_graphql_call('snippet/project_permissions', { fullPath: @snippet.project_id })
- else
  - add_page_startup_graphql_call('snippet/user_permissions')
- @hide_top_links = true
- add_to_breadcrumbs _("Snippets"), dashboard_snippets_path
- breadcrumb_title @snippet.to_reference
- page_title "#{@snippet.title} (#{@snippet.to_reference})", _("Snippets")
- content_for :prefetch_asset_tags do
  - webpack_preload_asset_tag('monaco', prefetch: true)

#js-snippet-view{ data: { 'snippet-gid': @snippet.to_global_id, 'report-abuse-path': snippet_report_abuse_path(@snippet), 'can-report-spam': @snippet.submittable_as_spam_by?(current_user).to_s } }

.row-content-block.top-block.content-component-block.gl-px-0.gl-py-2
  = render 'award_emoji/awards_block', awardable: @snippet, inline: true

#notes.limited-width-notes= render "shared/notes/notes_with_form", :autocomplete => false