/sites/web/bower_components/localforage-backbone/examples/simple.html

https://bitbucket.org/aswinvk28/smartpan-stock-drupal · HTML · 82 lines · 73 code · 9 blank · 0 comment · 0 complexity · e7c18cd5cbc390e72caf256e72699157 MD5 · raw file

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf8" />
  5. <title>Simple Backbone.localForage example</title>
  6. <script src="../bower_components/jquery/dist/jquery.js"></script>
  7. <script src="../bower_components/underscore/underscore.js"></script>
  8. <script src="../bower_components/backbone/backbone.js"></script>
  9. <script src="../bower_components/localforage/dist/localforage.js"></script>
  10. <script src="../dist/localforage.backbone.js"></script>
  11. </head>
  12. <body>
  13. <script type="template/form" id="formtpl">
  14. <form>
  15. <input type="text" name="content" />
  16. <input type="submit" value="Create" />
  17. </form>
  18. </script>
  19. <script>
  20. (function (Backbone, _) {
  21. 'use strict';
  22. // Set driver (optional, but we use localforage here so developers
  23. // can more easily inspect it).
  24. localforage.setDriver('localStorageWrapper');
  25. // We store offline data inside a collection. This is how we tell
  26. // a model/collection to store data offline with localForage.
  27. var MyCollection = Backbone.Collection.extend({
  28. sync: Backbone.localforage.sync('MyCollection'),
  29. model: Backbone.Model.extend({
  30. sync: Backbone.localforage.sync('ModelNamespace')
  31. })
  32. });
  33. // A view with a form and the collection contents
  34. var MyFormView = Backbone.View.extend({
  35. events: {
  36. 'submit form': 'handleSaveModel'
  37. },
  38. initialize: function (options) {
  39. // For the sake of the example, this is very bad
  40. // performance-wise :)
  41. this.listenTo(this.collection, 'add remove change sync', this.render);
  42. },
  43. createModel: function (model) {
  44. return $("<div>", {
  45. 'class': 'saved-data',
  46. text: model.get('content')
  47. });
  48. },
  49. handleSaveModel: function (event) {
  50. event.preventDefault();
  51. // It'll write on the localforage offline store
  52. this.collection.create({content: this.$('[name="content"]').val()});
  53. },
  54. render: function () {
  55. // Render the form template on this.$el and append the
  56. // collection content
  57. this.$el
  58. .html(_.template($('#formtpl').html()))
  59. .append(this.collection.map(this.createModel));
  60. }
  61. });
  62. // Instancing the collection and the view
  63. var collectionInstance = new MyCollection();
  64. var myFormView = new MyFormView({
  65. el: $('<div>', {'class': 'content'}).appendTo(document.body),
  66. collection: collectionInstance
  67. });
  68. myFormView.render();
  69. collectionInstance.fetch();
  70. }(this.Backbone, this._));
  71. </script>
  72. </body>
  73. </html>