/client/galaxy/scripts/mvc/ui/ui-select-library.js

https://bitbucket.org/galaxy/galaxy-central/ · JavaScript · 127 lines · 93 code · 16 blank · 18 comment · 4 complexity · 3f53273b4b0f49f7de35a2929225ac77 MD5 · raw file

  1. // dependencies
  2. define(['utils/utils', 'mvc/ui/ui-misc', 'mvc/ui/ui-table', 'mvc/ui/ui-list'],
  3. function(Utils, Ui, Table, List) {
  4. // collection of libraries
  5. var Libraries = Backbone.Collection.extend({
  6. url: Galaxy.root + 'api/libraries?deleted=false'
  7. });
  8. // collection of dataset
  9. var LibraryDatasets = Backbone.Collection.extend({
  10. initialize: function() {
  11. var self = this;
  12. this.config = new Backbone.Model({ library_id: null });
  13. this.config.on('change', function() {
  14. self.fetch({ reset: true });
  15. });
  16. },
  17. url: function() {
  18. return Galaxy.root + 'api/libraries/' + this.config.get('library_id') + '/contents';
  19. }
  20. });
  21. // hda/hdca content selector ui element
  22. var View = Backbone.View.extend({
  23. // initialize
  24. initialize : function(options) {
  25. // link this
  26. var self = this;
  27. // collections
  28. this.libraries = new Libraries();
  29. this.datasets = new LibraryDatasets();
  30. // link app and options
  31. this.options = options;
  32. // select field for the library
  33. // TODO: Remove this once the library API supports searching for library datasets
  34. this.library_select = new Ui.Select.View({
  35. onchange : function(value) {
  36. self.datasets.config.set('library_id', value);
  37. }
  38. });
  39. // create ui-list view to keep track of selected data libraries
  40. this.dataset_list = new List.View({
  41. name : 'dataset',
  42. optional : options.optional,
  43. multiple : options.multiple,
  44. onchange : function() {
  45. self.trigger('change');
  46. }
  47. });
  48. // add reset handler for fetched libraries
  49. this.libraries.on('reset', function() {
  50. var data = [];
  51. self.libraries.each(function(model) {
  52. data.push({
  53. value : model.id,
  54. label : model.get('name')
  55. });
  56. });
  57. self.library_select.update(data);
  58. });
  59. // add reset handler for fetched library datasets
  60. this.datasets.on('reset', function() {
  61. var data = [];
  62. var library_current = self.library_select.text();
  63. if (library_current !== null) {
  64. self.datasets.each(function(model) {
  65. if (model.get('type') === 'file') {
  66. data.push({
  67. value : model.id,
  68. label : model.get('name')
  69. });
  70. }
  71. });
  72. }
  73. self.dataset_list.update(data);
  74. });
  75. // add change event. fires on trigger
  76. this.on('change', function() {
  77. options.onchange && options.onchange(self.value());
  78. });
  79. // create elements
  80. this.setElement(this._template());
  81. this.$('.library-select').append(this.library_select.$el);
  82. this.$el.append(this.dataset_list.$el);
  83. // initial fetch of libraries
  84. this.libraries.fetch({
  85. reset: true,
  86. success: function() {
  87. self.library_select.trigger('change');
  88. if (self.options.value !== undefined) {
  89. self.value(self.options.value);
  90. }
  91. }
  92. });
  93. },
  94. /** Return/Set currently selected library datasets */
  95. value: function(val) {
  96. return this.dataset_list.value(val);
  97. },
  98. /** Template */
  99. _template: function() {
  100. return '<div class="ui-select-library">' +
  101. '<div class="library ui-margin-bottom">' +
  102. '<span class="library-title">Select Library</span>' +
  103. '<span class="library-select"/>' +
  104. '</div>' +
  105. '</div>';
  106. }
  107. });
  108. return {
  109. View: View
  110. }
  111. });