Code Monkey home page Code Monkey logo

Comments (6)

notwaldorf avatar notwaldorf commented on July 28, 2024

I think @valdrinkoshi had also looked at this; Valdrin, do you remember why we didn't merge it? Did we just punt on the PR? If so, @shipagency I think your PR sounds great!

from iron-form.

valdrinkoshi avatar valdrinkoshi commented on July 28, 2024

I noticed that in 2.x we don't expose the request property (#226), but I don't know why this was removed in the first place.
The removal was done during the port to 2.0 (#154), maybe the reviewers remember why it was removed (@e111077, @frankiefu) ?

from iron-form.

notwaldorf avatar notwaldorf commented on July 28, 2024

I think I was just trying to be optimal, tbh, and not for any other particular reason

from iron-form.

 avatar commented on July 28, 2024

I really think it's important to allow other elements to tap into the request property -- especially since that's effectively the only way for a UI widget to know what's going on with the form ajax-wise.
We considered for example listening to iron-form-response and iron-form-error but... one very important one is indeed request (to grey out the UI).

I am really puzzled though... The last version of the code with the creation of request in ready() was:

https://github.com/PolymerElements/iron-form/blob/b74e1cc101069910acfc74f0eff809965e305629/iron-form.html

The version STRAIGHT after that:

https://github.com/PolymerElements/iron-form/blob/1a7c1ebda65e7c63121a583ef8c3f48cc7c6b7f5/iron-form.html

And yet the commit is simply "rename ajax to request" (25th of May 2017) -- which DOESN'T seem to have a changeset that affects the ready() call (?!?)

image

Two questions:

  • Are you happy for me to make up a PR to put that back in ready() and documentation?
  • Where is the commit that actually made the change? OK, not crucial but it is driving me bananas...

Right now we "fixed" it with this:

var ironForm = document.createElement('iron-form')
var proto = Object.getPrototypeOf(ironForm)
var orig = proto.attached
proto.attached = function () {
  if (!this.request) {
    this.request = document.createElement('iron-ajax')
    this.request.addEventListener('response', this._handleFormResponse.bind(this))
    this.request.addEventListener('error', this._handleFormError.bind(this))
  }
  orig.call(this)
}

Not exactly award-winning code...!

from iron-form.

 avatar commented on July 28, 2024

I changed completely the way my decorator works, and am no longer look for request. Since this is a case that is as edgy as they come (I think I would be the only user ever wanting this, and in fact i don't even want it anymore), I am closing this. Thanks for answering!

from iron-form.

notwaldorf avatar notwaldorf commented on July 28, 2024

Alright, cool. Then I'm gonna punt on this until someone else needs it in the future, since I don't really have the bandwidth to look into it to begin with 😅

from iron-form.

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.