debian-mirror-gitlab/app/views/shared/snippets/_form.html.haml

54 lines
2.8 KiB
Text
Raw Normal View History

2016-09-13 17:45:13 +05:30
- content_for :page_specific_javascripts do
= page_specific_javascript_tag('lib/ace.js')
2014-09-02 18:07:02 +05:30
.snippet-form-holder
2018-11-08 19:23:39 +05:30
= form_for @snippet, url: url,
2019-03-02 22:35:43 +05:30
html: { class: "snippet-form js-requires-input js-quick-submit common-note-form" } do |f|
2016-06-02 11:05:42 +05:30
= form_errors(@snippet)
2014-09-02 18:07:02 +05:30
2020-03-13 15:44:24 +05:30
.form-group
= f.label :title, class: 'label-bold'
= f.text_field :title, class: 'form-control qa-snippet-title', required: true, autofocus: true
.form-group.js-description-input
- description_placeholder = s_('Snippets|Optionally add a description about what your snippet does or how to use it...')
- is_expanded = @snippet.description && !@snippet.description.empty?
= f.label :description, s_("Snippets|Description (optional)"), class: 'label-bold'
.js-collapsible-input
.js-collapsed{ class: ('d-none' if is_expanded) }
= text_field_tag nil, nil, class: 'form-control', placeholder: description_placeholder, data: { qa_selector: 'description_placeholder' }
.js-expanded{ class: ('d-none' if !is_expanded) }
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do
= render 'projects/zen', f: f, attr: :description, classes: 'note-textarea', placeholder: description_placeholder, qa_selector: 'description_field'
= render 'shared/notes/hints'
.form-group.file-editor
= f.label :file_name, s_('Snippets|File')
.file-holder.snippet
.js-file-title.file-title-flex-parent
2020-04-08 14:13:33 +05:30
= f.text_field :file_name, placeholder: s_("Snippets|Give your file a name to add code highlighting, e.g. example.rb for Ruby"), class: 'form-control js-snippet-file-name qa-snippet-file-name'
2020-03-13 15:44:24 +05:30
.file-content.code
2020-04-08 14:13:33 +05:30
%pre#editor{ data: { 'editor-loading': true } }= @snippet.content
2020-03-13 15:44:24 +05:30
= f.hidden_field :content, class: 'snippet-file-content'
.form-group
.font-weight-bold
= _('Visibility level')
= link_to icon('question-circle'), help_page_path("public_access/public_access"), target: '_blank'
= render 'shared/visibility_level', f: f, visibility_level: @snippet.visibility_level, can_change_visibility_level: true, form_model: @snippet, with_label: false
2017-09-10 17:25:29 +05:30
- if params[:files]
- params[:files].each_with_index do |file, index|
= hidden_field_tag "files[]", file, id: "files_#{index}"
2014-09-02 18:07:02 +05:30
.form-actions
- if @snippet.new_record?
2019-07-07 11:18:12 +05:30
= f.submit 'Create snippet', class: "btn-success btn qa-create-snippet-button"
2014-09-02 18:07:02 +05:30
- else
2018-12-05 23:21:45 +05:30
= f.submit 'Save changes', class: "btn-success btn"
2014-09-02 18:07:02 +05:30
2015-09-11 14:41:01 +05:30
- if @snippet.project_id
2017-09-10 17:25:29 +05:30
= link_to "Cancel", project_snippets_path(@project), class: "btn btn-cancel"
2014-09-02 18:07:02 +05:30
- else
= link_to "Cancel", snippets_path(@project), class: "btn btn-cancel"