define([ 'jquery', 'underscore', 'backbone', 'common', 'jquery.magnific-popup', 'app/views/starred-file-item', 'app/collections/starred-files', ], function($, _, Backbone, Common, magnificPopup, StarredFileItem, StarredFilesCollection) { 'use strict'; var StarredFileView = Backbone.View.extend({ id: 'starred-file', template: _.template($('#starred-file-tmpl').html()), initialize: function() { this.starredFiles = new StarredFilesCollection(); this.listenTo(this.starredFiles, 'reset', this.reset); this.render(); }, addOne: function(starredFile) { var view = new StarredFileItem({model: starredFile}); this.$tableBody.append(view.render().el); }, reset: function() { this.$tableBody.empty(); this.$loadingTip.hide(); this.starredFiles.each(this.addOne, this); if (this.starredFiles.length) { this.$emptyTip.hide(); this.$table.show(); } else { this.$emptyTip.show(); this.$table.hide(); } }, showStarredFiles: function() { this.$table.hide(); this.$loadingTip.show(); this.starredFiles.fetch({reset: true}); }, render: function() { this.$el.html(this.template()); $("#right-panel").html(this.$el); this.$table = this.$('table'); this.$tableBody = this.$('tbody'); this.$loadingTip = this.$('.loading-tip'); this.$emptyTip = this.$('.empty-tips'); this.$el.magnificPopup({ type: 'image', delegate: '.img-name-link', tClose: gettext("Close (Esc)"), // Alt text on close button tLoading: gettext("Loading..."), // Text that is displayed during loading. Can contain %curr% and %total% keys gallery: { enabled: true, tPrev: gettext("Previous (Left arrow key)"), // Alt text on left arrow tNext: gettext("Next (Right arrow key)"), // Alt text on right arrow tCounter: gettext("%curr% of %total%") // Markup for "1 of 7" counter }, image: { titleSrc: function(item) { var el = item.el; var img_name = el[0].innerHTML; var img_link = '' + gettext("Open in New Tab") + ''; return img_name + '
' + img_link; }, tError: gettext('The image could not be loaded.') // Error message when image could not be loaded } }); }, show: function() { $("#right-panel").html(this.$el); this.showStarredFiles(); }, hide: function() { this.$el.detach(); } }); return StarredFileView; });