/rave-portal-resources/src/main/webapp/static/script/portal/rave_backbone.js

https://gitlab.com/kidaa/rave · JavaScript · 84 lines · 41 code · 9 blank · 34 comment · 0 complexity · c37b6077c2f23062246c02372d6ed538 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. define(["underscore", "backbone"], function(_, Backbone){
  20. /*
  21. Extend backbone's standard model and collection with some
  22. */
  23. var Model = Backbone.Model.extend({
  24. get: function(attr){
  25. //tweak model get so that array / object members are passed by value instead of reference
  26. //needed for managing deep objects
  27. return _.clone(this.attributes[attr]);
  28. },
  29. /*
  30. Overridable function that models can implement for serializing themselves for view rendering,
  31. since often a handlebars template needs explicit keys or booleans that don't make sense
  32. in a normal json representation of the model. By default will just return toJSON().
  33. */
  34. toViewModel: function () {
  35. return this.toJSON();
  36. }
  37. });
  38. var Collection = Backbone.Collection.extend({
  39. toViewModel: function () {
  40. return this.map(function (model) {
  41. return model.toViewModel();
  42. });
  43. }
  44. })
  45. /*
  46. rave.View is an extension of Backbone's view with some scaffolding put in place. The expectation is that a view
  47. will be declared with a hash of models (models or collections) that will be merged and fed to the view at render
  48. time. By default on any change to the models the view will be re-rendered. Also provides an implementation of
  49. render that probably will not need to be overrridden.
  50. */
  51. var View = Backbone.View.extend({
  52. initialize: function () {
  53. var self = this;
  54. _.bindAll(this);
  55. _.each(this.models, function (model) {
  56. model.on('change', self.render);
  57. model.on('reset', self.render);
  58. });
  59. },
  60. render: function () {
  61. var template = this.template;
  62. var viewData = {};
  63. _.each(this.models, function (model, key) {
  64. viewData[key] = model.toViewModel();
  65. });
  66. this.$el.html(template(viewData));
  67. return this;
  68. }
  69. });
  70. return{
  71. Model:Model,
  72. Collection:Collection,
  73. View:View
  74. }
  75. })