Giter Club home page Giter Club logo

Comments (8)

michelson avatar michelson commented on September 15, 2024

Hi @vephinx ,
what would be the use case for that need ?
maybe you can accomplish that using the callbacks around the store function, like

      xhr: before_handler() 
      data_storage: success_handler(result)
      xhr: success_handler(result)
      xhr: failure_handler(error)

regards

from dante2.

sebastian-ruiz avatar sebastian-ruiz commented on September 15, 2024

@michelson I'm using Meteor and I would like to set the content to a document in my collection and let Meteor handle passing it to the server.

from dante2.

michelson avatar michelson commented on September 15, 2024

@vephinx what you mean by set the content to a document in my collection ?
why you don't let the server handle that ?

from dante2.

sebastian-ruiz avatar sebastian-ruiz commented on September 15, 2024

@michelson So on the client I subscribe to a collection called notes. I would like to call the function saveContent (see below), instead of calling a URL. This automatically pushes the changes to the server using Meteor magic.

saveContent = function(json) {
  note = notes.findOne({ _id: noteId});
  note.content = json;
};

from dante2.

michelson avatar michelson commented on September 15, 2024

sorry , I don't use meteor so don't know which is the magic it does.
in Meteor is possible to update the note on memory ? without touch the server?, let's say when D2 hits the server it will return the contents and then you could update the model, using the callbacks so you could keep the model in sync.

Anyway you could check the save_content.coffee and see how it works maybe it could be a good idea to make this configurable in order to use another solution or extend the same class.

from dante2.

sebastian-ruiz avatar sebastian-ruiz commented on September 15, 2024

@michelson I made these changes to save_content.coffee
Line 15 I commented out:

# return unless @config.data_storage.url

And on line 47 I added:

@config.data_storage.save_handler(JSON.stringify(content)) if @config.data_storage.save_handler
return unless @config.data_storage.url

Now I can do:

          data_storage: {
            interval: 1500,
            save_handler: saveContent
          }

from dante2.

michelson avatar michelson commented on September 15, 2024

Hi @vephinx, cool! that should be enough to make it work , are you going to make a PR for this ? if not I could update the source un the next days in order to close this issue

happy holidays!

from dante2.

michelson avatar michelson commented on September 15, 2024

hi @vephinx , version 0.3.2 implements the save_handler in data_storage to override the ajax

cheers

from dante2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.