_form.html.haml 1.92 KB
.snippet-form-holder
  = form_for @snippet, url: url, html: { class: "form-horizontal snippet-form" } do |f|
    - if @snippet.errors.any?
      .alert.alert-danger
        %ul
          - @snippet.errors.full_messages.each do |msg|
            %li= msg

    .form-group
      = f.label :title, class: 'control-label'
      .col-sm-10= f.text_field :title, placeholder: "Example Snippet", class: 'form-control', required: true

    - unless @snippet.respond_to?(:project)
      .form-group
        = f.label "Access", class: 'control-label'
        .col-sm-10
          = f.label :private_true, class: 'radio-label' do
            = f.radio_button :private, true
            %span
              %strong Private
              (only you can see this snippet)
          %br
          = f.label :private_false, class: 'radio-label' do
            = f.radio_button :private, false
            %span
              %strong Public
              (GitLab users can see this snippet)

    .form-group
      .file-editor
        = f.label :file_name, "File", class: 'control-label'
        .col-sm-10
          .file-holder.snippet
            .file-title
              = f.text_field :file_name, placeholder: "example.rb", class: 'form-control snippet-file-name', required: true
            .file-content.code
              %pre#editor= @snippet.content
              = f.hidden_field :content, class: 'snippet-file-content'

    .form-actions
      - if @snippet.new_record?
        = f.submit 'Create snippet', class: "btn-create btn"
      - else
        = f.submit 'Save', class: "btn-save btn"

      - if @snippet.respond_to?(:project)
        = link_to "Cancel", project_snippets_path(@project), class: "btn btn-cancel"
      - else
        = link_to "Cancel", snippets_path(@project), class: "btn btn-cancel"

:javascript
  var editor = ace.edit("editor");
  $(".snippet-form-holder form").submit(function(){
    $(".snippet-file-content").val(editor.getValue());
  });