* changed user_id type to integer * renamed post_id to item_id * renamed post_type to item_type
148 lines
3.8 KiB
JavaScript
148 lines
3.8 KiB
JavaScript
app.views.Base = Backbone.View.extend({
|
|
|
|
initialize : function(options) {
|
|
this.setupRenderEvents();
|
|
},
|
|
|
|
presenter : function(){
|
|
return this.defaultPresenter()
|
|
},
|
|
|
|
setupRenderEvents : function(){
|
|
// this line is too generic. we usually only want to re-render on
|
|
// feedback changes as the post content, author, and time do not change.
|
|
//
|
|
// this.model.bind('change', this.render, this);
|
|
},
|
|
|
|
defaultPresenter : function(){
|
|
var modelJson = this.model && this.model.attributes ? _.clone(this.model.attributes) : {}
|
|
|
|
return _.extend(modelJson, {
|
|
current_user : app.currentUser.attributes,
|
|
loggedIn : app.currentUser.authenticated()
|
|
});
|
|
},
|
|
|
|
render : function() {
|
|
this.renderTemplate()
|
|
this.renderSubviews()
|
|
this.renderPluginWidgets()
|
|
this.removeTooltips()
|
|
|
|
return this
|
|
},
|
|
|
|
renderTemplate : function(){
|
|
var presenter = _.isFunction(this.presenter) ? this.presenter() : this.presenter
|
|
this.template = JST[this.templateName+"_tpl"]
|
|
if(!this.template) {
|
|
console.log(this.templateName ? ("no template for " + this.templateName) : "no templateName specified")
|
|
}
|
|
|
|
this.$el
|
|
.html(this.template(presenter))
|
|
.attr("data-template", _.last(this.templateName.split("/")));
|
|
this.postRenderTemplate();
|
|
},
|
|
|
|
postRenderTemplate : $.noop, //hella callbax yo
|
|
|
|
renderSubviews : function(){
|
|
var self = this;
|
|
_.each(this.subviews, function(property, selector){
|
|
var view = _.isFunction(self[property]) ? self[property]() : self[property]
|
|
if(view) {
|
|
self.$(selector).html(view.render().el)
|
|
view.delegateEvents();
|
|
}
|
|
})
|
|
},
|
|
|
|
renderPluginWidgets : function() {
|
|
this.$(this.tooltipSelector).tooltip();
|
|
this.$("time").timeago();
|
|
},
|
|
|
|
removeTooltips : function() {
|
|
$(".tooltip").remove();
|
|
},
|
|
|
|
setFormAttrs : function(){
|
|
this.model.set(_.inject(this.formAttrs, _.bind(setValueFromField, this), {}))
|
|
|
|
function setValueFromField(memo, attribute, selector){
|
|
if(attribute.slice("-2") === "[]") {
|
|
memo[attribute.slice(0, attribute.length - 2)] = _.pluck(this.$el.find(selector).serializeArray(), "value")
|
|
} else {
|
|
memo[attribute] = this.$el.find(selector).val() || this.$el.find(selector).text();
|
|
}
|
|
return memo
|
|
}
|
|
},
|
|
|
|
report: function(evt) {
|
|
if(evt) { evt.preventDefault(); }
|
|
var msg = prompt(Diaspora.I18n.t('report.prompt'), Diaspora.I18n.t('report.prompt_default'));
|
|
if (msg == null) {
|
|
return;
|
|
}
|
|
var data = {
|
|
report: {
|
|
item_id: this.model.id,
|
|
item_type: $(evt.currentTarget).data("type"),
|
|
text: msg
|
|
}
|
|
};
|
|
|
|
var report = new app.models.Report();
|
|
report.save(data, {
|
|
success: function(model, response) {
|
|
Diaspora.page.flashMessages.render({
|
|
success: true,
|
|
notice: Diaspora.I18n.t('report.status.created')
|
|
});
|
|
},
|
|
error: function(model, response) {
|
|
Diaspora.page.flashMessages.render({
|
|
success: false,
|
|
notice: Diaspora.I18n.t('report.status.exists')
|
|
});
|
|
}
|
|
});
|
|
},
|
|
|
|
destroyModel: function(evt) {
|
|
evt && evt.preventDefault();
|
|
var self = this;
|
|
var url = this.model.urlRoot + '/' + this.model.id;
|
|
|
|
if (confirm(Diaspora.I18n.t("confirm_dialog"))) {
|
|
this.model.destroy({ url: url })
|
|
.done(function() {
|
|
self.remove();
|
|
})
|
|
.fail(function() {
|
|
var flash = new Diaspora.Widgets.FlashMessages;
|
|
flash.render({
|
|
success: false,
|
|
notice: Diaspora.I18n.t('failed_to_remove')
|
|
});
|
|
});
|
|
}
|
|
},
|
|
});
|
|
|
|
app.views.StaticContentView = app.views.Base.extend({
|
|
|
|
initialize : function(options) {
|
|
this.templateName = options.templateName;
|
|
this.data = options.data;
|
|
|
|
return this;
|
|
},
|
|
|
|
presenter : function(){
|
|
return this.data;
|
|
},
|
|
});
|