Sha256: 0a852039b54798423eca942310bf450a304240f53517bff00adb5ea2ed33b660

Contents?: true

Size: 1.07 KB

Versions: 76

Compression:

Stored size: 1.07 KB

Contents

// Dynamically load the file options into the "Thumbnail" select field.
export default class {
  /*
   * @param {String} url the search endpoint
   * @param {jQuery} the field to add the select to
   */
  constructor(url, field) {
    this.loadThumbnailOptions(url, field)
  }

  // Dynamically load the file options into the "Thumbnail" select field.
  loadThumbnailOptions(url, field) {
      field.select2({
          ajax: { // Use the jQuery.ajax wrapper provided by Select2
              url: url,
              dataType: "json",
              results: function(data, page) {
                return { results: data }
              }
          },
          initSelection: function(element, callback) {
              // the input tag has a value attribute preloaded that points to a preselected repository's id
              // this function resolves that id attribute to an object that select2 can render
              // using its formatResult renderer - that way the repository name is shown preselected
              callback({ text: $(element).data('text') })
          }
      })
  }
}

Version data entries

76 entries across 76 versions & 1 rubygems

Version Path
hyrax-5.0.4 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-5.0.3 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-5.0.2 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-5.0.1 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-5.0.0 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-5.0.0.rc3 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-5.0.0.rc2 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-5.0.0.rc1 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-3.6.0 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-4.0.0 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-4.0.0.rc3 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-4.0.0.rc2 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-4.0.0.rc1 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-3.5.0 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-4.0.0.beta2 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-3.4.2 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-4.0.0.beta1 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-3.4.1 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-3.4.0 app/assets/javascripts/hyrax/thumbnail_select.es6
hyrax-3.3.0 app/assets/javascripts/hyrax/thumbnail_select.es6