Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot observe changes to nested properties on array using @each #541

Closed
robharper opened this issue Feb 27, 2012 · 75 comments
Closed

Cannot observe changes to nested properties on array using @each #541

robharper opened this issue Feb 27, 2012 · 75 comments
Labels

Comments

@robharper
Copy link
Contributor

Adding an observer on a nested property of objects within a collection does not reliably fire. I've created a test case that could be added to ember-runtime/tests/mixins/array_test.js that illustrates this. Observing a nested property on the EachProxy itself appears to work fine. However, observing the property using @each.nest.isDone does not.

In the following test, count1 is incremented to 1, count2 is not:

test('modifying nested contents of an object in an array should call @each observers', function() {
  var ary = new TestArray([
      Em.Object.create({ nest: Em.Object.create({ isDone: false}) }),
      Em.Object.create({ nest: Em.Object.create({ isDone: false}) }),
      Em.Object.create({ nest: Em.Object.create({ isDone: false}) }),
      Em.Object.create({ nest: Em.Object.create({ isDone: false}) })
    ]);

  var get = Ember.get, set = Ember.set;
  var count1 = 0, count2 = 0;

  // Works
  var each = get(ary, '@each');
  Ember.addObserver(each, 'nest.isDone', function() { count1++; });

  // Doesn't work
  Ember.addObserver(ary, '@each.nest.isDone', function() { count2++; });

  count1 = count2 = 0;
  var item = ary.objectAt(2);
  get(item, 'nest').set('isDone', true);

  equal(count1, 1, '@each.nest.isDone should have notified - observing @each array');
  equal(count2, 1, '@each.nest.isDone should have notified - observing chain containing @each');
});
@wagenet
Copy link
Member

wagenet commented Feb 27, 2012

@each is only supported one level deep. It would be nice to allow more, but I don't know how difficult this would be technically. I'll let @wycats or @tomdale chime in on this.

@wycats
Copy link
Member

wycats commented Feb 27, 2012

I don't think that's actually true... It uses the normal chain infrastructure and should work arbitrarily many levels deep.

@wagenet
Copy link
Member

wagenet commented Feb 27, 2012

@wycats This sounds like a bug then. I've never seen it work more than one level deep.

@tomdale
Copy link
Member

tomdale commented Feb 27, 2012

Agreed, this sounds like a bug. I believe this was working at some point. Thank you for the unit test.

@endash
Copy link
Contributor

endash commented Apr 4, 2012

So I've been puzzling through this. It seems to boil down to EachProxy handling setting up the observers internally when you call addObserver with itself as the root. When as part of a chained path, however, the ChainNode plucks the top-level keyname off of the EachProxy, and goes on its merry way, and the EachProxy never gets involved. Basically, there are two levels of arrays at play.

watching '@each.nest.@each.isDone' DOES work, in this instance.

@endash
Copy link
Contributor

endash commented Apr 4, 2012

Forgot to clarify that when the ChainNode plucks the keyname off the EachProxy, it's getting an EachArray, hence the need for nesting the @ each observers.

@krisselden
Copy link
Contributor

The way chains work is each chain node has a corresponding chainWatcher that watches the key on the node's parent's value(), in order for this to work the chain needs to stop at @each and setup the chainWatcher with the remaining path.

I'm considering special casing @ character to just mean this.

@wagenet
Copy link
Member

wagenet commented Jul 9, 2012

@kselden, does your simplify-properties branch touch on this at all?

@wagenet
Copy link
Member

wagenet commented Jul 21, 2012

Looks like this is still an issue.

@krisselden
Copy link
Contributor

chains do not chain through properties that produce arrays, this requires some changes I stated above, no I haven't done any work on it. It also is problematic @each itself changes when the array does.

@tpitale
Copy link
Contributor

tpitale commented Aug 11, 2012

I've hacked around this, for anyone that is facing this issue (especially when using ember-data associations), by adding a property on one side of the association that checks the property in the other end of the association (in my case, isLoaded) and then using that after the @each. As I said, this is a hack. But until 1.1, it works for me.

@drogus
Copy link
Contributor

drogus commented Aug 24, 2012

@tpitale: could you show an example of such hack? I'm not sure what you mean by adding a property on other side of association.

@kselden @wagenet: I encountered something similar recently, but frankly I'm not sure if this is the same bug, could you take a look at this fiddle: http://jsfiddle.net/uErrd/4/ ?

@tpitale
Copy link
Contributor

tpitale commented Aug 24, 2012

@drogus given the original example, there would be a nestIsDone property for the path nest.isDone. So you could observe @each.nestIsDone.

@mspisars
Copy link
Contributor

would really love to see this in 1.0 not 1.1 👍

@wagenet
Copy link
Member

wagenet commented Oct 22, 2012

@mspisars Me too, but I don't want to block 1.0 on things that are difficult to fix and non-essential.

@darthdeus
Copy link
Member

last activity 4 months ago ... 👍

@wagenet
Copy link
Member

wagenet commented Feb 19, 2013

@mspisars, @darthdeus I would love to see it in 1.0 too. The issue is not about desire, it's about ability.

@phammer
Copy link

phammer commented Feb 20, 2013

👍 for 1.0: would be really useful to have this working.

@pdwinkel
Copy link

pdwinkel commented Mar 2, 2013

👍 for 1.0

@wagenet
Copy link
Member

wagenet commented Mar 5, 2013

Public Service Announcement: +1s do not provide development resources where they are lacking.

We've already agreed that we'd love to have this feature but it's very much non-trivial to support. It's certainly not something we'll block 1.0 on.

@endash
Copy link
Contributor

endash commented Mar 5, 2013

Agreed with @wagenet these are non-trivial code paths that touch mission critical parts of ember.

@HWest
Copy link

HWest commented May 15, 2013

Any updates on this? We have been trying to use this for a web app that's about to be used by a major Hotel chain and none of the workarounds seem to work. The only workable solution at this point is to redesign this part of the interface to make it simpler which is a shame.
Any information would be greatly appreciated and thanks for all your great work.

@joliss
Copy link
Contributor

joliss commented May 15, 2013

It's a surprisingly hard problem. Part of the issue is that even if you implemented it or worked around it, updating a dependent array (which seems to be be the most common use case) would take O(n*2) time, which is a big problem even for fairly small datasets. To get it to be O(n), we'd need smarter array primitives to compose dependent arrays. There has been *some work on this by Peter and others, and people are definitely interested in pushing it forward, but I wouldn't hold my breath.

Related: #1288, #2711.

For now I'd recommend generating the dependent arrays on the server, basically as "computed relationships".

@tim-evans
Copy link
Contributor

Here's another fiddle demonstrating this issue: http://jsfiddle.net/3bGN4/268.

@meelash
Copy link

meelash commented Jun 14, 2013

Example workaround, demonstrating nested @each:

https://gist.github.com/meelash/5785328

@dandehavilland
Copy link

If this is on the backburner, it would be helpful to note this behaviour in the API docs (maybe I missed it?) as it took me a while to find this ticket.

@luxzeitlos
Copy link
Contributor

@dandehavilland Exactly! It should definitly be noted here: 'http://emberjs.com/guides/object-model/computed-properties-and-aggregate-data/'. "@each.goo.bar" is still not working, i've needed days to find this out.

@joliss
Copy link
Contributor

joliss commented Aug 27, 2013

Good idea. emberjs/website#653

@alexspeller
Copy link
Contributor

@rwwagner90 the approach definitely works, I suspect there is another issue in your code causing this problem. Try posting a jsbin showing the problem to figure out what it is

@kingpin2k
Copy link
Contributor

I might understand what you are getting at, could you modify my example to clarify though?

@alexspeller
Copy link
Contributor

@rwwagner90 regarding observers, my take on it is that using observers in cases when you're not interacting with non-ember code is a big code smell. So using observers to e.g. trigger a d3 graph rendering when your app data changes is totally legit, but using observers to set one ember property when another changes is almost always more easily accomplished with a different approach

@RobbieTheWagner
Copy link
Member

@alexspeller @kingpin2k I have two properties, and one must change when the other changes. This is not possible though because properties don't evaluate, so the second property never updates.

@alexspeller
Copy link
Contributor

@rwwagner90 having one property that changes when another changes is a core feature of computed properties, so I'm not sure what you're describing - if you show the code you're using it's likely that someone can help.

@RobbieTheWagner
Copy link
Member

@alexspeller I converted it all to using observes, but let me attempt to put it back and show you.

let extendedObject = Ember.Object.extend({
          valueLength: function() {
            return this.get('value').length;
          }.property('value.@each')
        });

Then I have a property that should update when valueLength does:

}.property('model.data.@each', 'model.data.@each.valueLength'),

However, this never fires, so I was forced to change my valueLength property to an observer that sets valueLength instead like so:

let extendedObject = Ember.Object.extend({
          valueLengthUpdater: function() {
            this.set('valueLength', this.get('value').length);
          }.observes('value.@each')
        });

@krisselden
Copy link
Contributor

@rwwagner90 your dependency keys don't match what you are getting, your dependency key should be model.data.length

@krisselden
Copy link
Contributor

Also, model.data.@each.valueLength is ok, by you should then actually get('valueLength') when computing a value. In a CP, generally speaking, if you are doing ending a dependency with just '@each' you aren't going to have a good time, and dependencies need to be consumed as part of the CP calculation. You cannot assume things about stuff changing together (stuff is invalidated synchronously and if there are observers that consume the property it can lead to race conditions), dependencies should align with what you actually consume as part of making the calculated value.

Generally, observers are low level, and hard to get right, you shouldn't actually do work in them (it can lead to race conditions, overly frequent recalculations, etc) they should only schedule work once per event frame.

@kingpin2k
Copy link
Contributor

Ditto @krisselden. Also, I'm assuming your model on some controller has a property data which is a collection of extendedObject and in the controller you have the computed property, and your extendedObject has a length property on it (which sounds like it should be an array, and not an object, but ignoring that:

Controller
something: function(){
   // inside of here you should actually fetch `valueLength` off of each item, or else it isn't really a dependecy
  // assuming data returns an array
  var lengths = this.get('model.data').getEach('valueLength');
}.property('model.data.length', 'model.data.@each.valueLength'),

@alexspeller
Copy link
Contributor

Edit:

You can replace valueLength property with valueLength: Ember.computed.alias('value.length').

Your dependent key then becomes:

}.property('model.data.@each.valueLength')

See @krisselden's explanation below on why what I wrote previously won't work.

@rwwagner90 valueLength is not necessary there - you can just use the value.length property. The property's dependent key can be simplified to:

}.property('model.data.@each.value.length')

@each shouldn't be used without a further property on the end. If you just want to observe when items are added or removed use somearray.[] instead. If you observe foo.@each.something then you don't need to also observer foo.[]

@krisselden
Copy link
Contributor

@alexspeller Actually you can't

@krisselden
Copy link
Contributor

@alexspeller get('@each.value') unfortunately returns an array of the values instead of returning an EachProxy which kills further chaining. I don't know why that was done that way but I don't know if I can change it given semver, and to be honest, I'm nervous about enabling this.

@kingpin2k
Copy link
Contributor

The squeaky wheel gets the oil, until it's affecting a larger portion of the ember community it won't get prioritized up, there is plenty of other low hanging fruit that helps 90% of the community.

@RobbieTheWagner
Copy link
Member

@alexspeller Ember.computed.alias worked. Thanks! 👍

@RobbieTheWagner
Copy link
Member

@krisselden Chaining @each would be awesome, but no one has tackled it in the past few years, so it doesn't seem likely that it ever will be.

@vothai-son
Copy link

I hope this issue is still on cause I don't know where to post this issue.
I am using Ember 2.1.0+45f524a3

I got the observer FIRED with this:

var o = Ember.Object.create({
    a: [{ b: 1 }, {b: 2} ]
})

Ember.addObserver(o, 'a.@each.b', o, function () {
    console.log("FIRE")
});

Ember.set(o.a[0], 'b', 3)

But with this, nothing happens

var o = Ember.Object.create({
    A: [{ b: 1 }, {b: 2} ]
})

Ember.addObserver(o, 'A.@each.b', o, function () {
    console.log("FIRE")
});

Ember.set(o.A[0], 'b', 3)

(The difference is the case of property name "a" and "A")

So, anyone recognizes this issue, please help me explain. Thanks.

@alexspeller
Copy link
Contributor

@vothai-son
Copy link

Thanks. But I have it triggering with the lowercase "a".

var o = Ember.Object.create({
    a: [{ b: 1 }, {b: 2} ]
})

Ember.addObserver(o, 'a.@each.b', o, function () {
    console.log("FIRE")
});

Ember.set(o.a[0], 'b', 3)

And no computed property here.

@alexspeller
Copy link
Contributor

Oh, the upper case a is not supported. Use property names that start with lower case letters.

@vothai-son
Copy link

Thanks,
This happens with an uppercase name and ".@each."
It's fine with simple property. Like this:

var o = Ember.Object.create({
    A: 1
})

Ember.addObserver(o, 'A', o, function () {
    console.log("FIRE")
});

Ember.set(o, 'A', 3)

I can't find documentation for that anywhere.
I think I will endup with a bunch of lowercase aliases for those uppercase named properties.

@rwjblue
Copy link
Member

rwjblue commented Oct 3, 2016

Historically (pre-2.0), capitalized paths indicated a global (so in your case it would be observing window.A). This issue is talking about nested paths with @each, which your comment is not discussing.

Most (hopefully all) of the special casing of capitalized paths should be removed. We should test against 2.8.1. If it still isnt working on 2.8, please open a new issue with a twiddle/jsbin reproduction.

@timothyerwin
Copy link

timothyerwin commented Jan 8, 2018

This is extremely basically functionality which is sadly missing. It would be helpful to focus on getting the basics right before going off adding all these bells and whistles to the framework.

@luxzeitlos
Copy link
Contributor

@timothyerwin actually it's pretty easy to work around this. Also I think right now is a bad moment to change this. Things like '@Tracked' im glimmer show, that we need to re-think the entire CP-thing in the long term. Also don't get me wrong, I would love to have this sometimes!

@lukemelia
Copy link
Member

This is the Ember issue I encounter most frequently lately, often because it is hidden behind something else, like a filter or sort CP macro where it's easy to forget you effectively creating a dependent key that is an @each with nested properties.

@jacobq
Copy link
Contributor

jacobq commented Mar 2, 2018

@luxferresum Would you mind posting a link to more information about how to work around this? Admittedly, I repeatedly get stumped by this, and I know I've been given some hints via community slack help channel, but I can't remember them nor can I seem to find a good post from searching the web. I think perhaps the trick was to break out each level as its own computed property somehow.

So if I have an array like traces: [{ x: [...], y: [...]}, ...], and I want to trigger an external charting library to update based on the (not allowed) key traces.@each.{x,y}.[] would I flatten it like this?

// Not only is this ugly, but it doesn't work since `_oneBigMess` won't get
// called again when something in one of its nested arrays changes,
// e.g. Changing traces[0].x[0] does not trigger 'traces.[]'
_oneBigMess: computed('traces.[]', function() {
  return this.get('traces').reduce(function(result, item, i, a) {
    return {
      x: result.x.concat(item.x),
      y: result.x.concat(item.y)
    };
  }, { x: [], y: []})
}),
_somethingChanged: observer('_oneBigMess.x.[]', '_oneBigMess.y.[]', function() {
  // update chart
})

I'm sure the above code is idiotic to someone more experienced and familiar with the tools available, but I am grasping at straws here.

but none seem to have a work-around for the situation I described 😢

Update: Someone please correct me if I'm wrong, but after fighting with this for a while tonight, it seems that the problem here isn't merely about providing more syntactic sugar but really about a limitation of the current system. If I understand correctly (based on the old comment above and some search results) this functionality isn't provided yet because there is not an efficient / clean way to do it. The advice that I was given was basically to not do this but rather change the design of my code so that I didn't need to. This is probably good advice but sometimes may not be feasible (e.g. insufficient time or requirements outside of one's control). For two-levels, one (pretty horrible & inefficient) work-around is to generate a long (maximum data size your code needs to handle correctly) list of keys, each associated with a single element of the array. For example:

_watchChanges: observer('data.[]', 'data.@each.{name,type}',
  ...(new Array(100).fill(0).map((z,i) => `data.${i}.x.[]`)),
  ...(new Array(100).fill(0).map((z,i) => `data.${i}.y.[]`)), function() {
  // something in one of these arrays has changed --> go do something
})

Another possibility (though I haven't tried it, and it's still not ideal) would be to iterate over the top-level array and use addArrayObserver to watch each nested array (and then removeArrayObserver later to avoid leaking).

@luxzeitlos
Copy link
Contributor

@jacobq

but rather change the design of my code

true. however there are much easer ways to handle this than you suggest.
let me show it to your by your original example, with an array traces: [{ x: [...], y: [...]}, ...], where you basically want to get a list of all x and all y.

the primary trick/workaround here is to convert each trace into an ember object, and then have a CP on the Trace with a dependency key of x.[] and y.[]. This CP will fire whenever something is added/removed in the x/y arrays. Next you can provide a simple CP that has traces.@each.myProp as a dependency key, where traces is the list of ember Trace objects, and myProp is the CP I just talked about.

Or with code:

const Trace = Ember.Object.extend({
  wrapped: Ember.computed('x.[]', 'y.[]', {
    get() {
      return {
        x: this.get('x'),
        y: this.get('y'),
      }
    }
  }),
});

export default Ember.Component.extend({
  traces: null,
  tracesAsEmberObjects('traces.[]', {
    get() {
      this.get('traces').map(t => Trace.create(t));
    }
  }),
  oneBigMess: Ember.computed('tracesAsEmberObjects.@each.wrapped', {
    get() {
      return this.get('tracesAsEmberObjects').reduce((result, item, i, a) => {
        return {
          x: result.x.concat(item.x),
          y: result.x.concat(item.y)
        };
      }, {x:[], y:[]});
    }
  }),
});

actually it doesnt really matter what wrapped returns, as long it has the right dependency keys, you .get() it, and have it as a .@each.wrapped dependency key in the outer CP. However I prefer it to return something useful.

jacobq added a commit to EmberMN/ember-cli-plotly that referenced this issue Mar 6, 2018
@jacobq
Copy link
Contributor

jacobq commented Mar 6, 2018

@luxferresum Thanks for taking the time to reply with a potential solution. However, it seems to have the same problem. Although creating a new EmberObject with a computed property allows one to react to changes of the arrays held by that object, the process of creating that object seems to create a copy of the original data, so changing the original data does not trigger the CP/observer.

For example, in the ember-cli-plotly addon I'm trying to make I have an integration test that changes the data to be plotted, and it works when I use a kludgy work-around where the main component generates a tagless child component for each trace, which then fire an action when data in their set changes.

I will try your method a little more in case I'm just doing something wrong (very possible), but the way it's acting now makes me think that it's not as simple as you suggest.

awesome341 added a commit to awesome341/Ember.js-Plotly.js that referenced this issue Feb 13, 2020
sandstrom pushed a commit to sandstrom/ember.js that referenced this issue Jun 17, 2021
…rn/acorn-5.7.4

[Security] Bump acorn from 5.7.3 to 5.7.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests