Issues

Select view

Select search mode

 
17 of 17

Uncaught TypeError: Cannot read property 'length' of null

Done

Description

Since merging the pull-request (commit e3c7912e3b3fafea104280da365d760597b060a9), clicking on a user does not result in the full user record being displayed. The JavaScript console shows:

(The previous delta, e1d1847e5703a66b39cc2ee405f2e16da4ded59b, does work correctly.)

CSP Request Details

None

CSP Rejection Details

None

Potential Workaround

None

Checklist

hide

TestRail: Results

Details

Assignee

Reporter

Labels

Priority

TestRail: Cases

Open TestRail: Cases

TestRail: Runs

Open TestRail: Runs

Created March 1, 2017 at 11:40 AM
Updated March 1, 2017 at 5:18 PM
Resolved March 1, 2017 at 1:06 PM

Activity

Show:

Mike TaylorMarch 1, 2017 at 5:18 PM

(The related problem is how best to actually run the Users module, and how it should react in the absence of a Permissions module on the back-end. It's in )

Mike TaylorMarch 1, 2017 at 1:06 PM

I've updated the <List> component so that it now emits a helpful warning before exploding – because that warning would have saved me two or three hours last night and today. But it still explodes when given a null list to render, because FEFO.

Meanwhile, I have made the Users module robust against making this call – it passes an empty list if `usersPermissions` is null. So the problem has gone away and we can now once more load full records in the Users module. But this exposes another problem, which I will document separately.

Mike TaylorMarch 1, 2017 at 12:40 PM

With that established, it becomes terribly easy to see what the problem is: line 118 of UserPermissions.js invokes:

But usersPermissions is null.

Two possible fixes: make the <List> component tolerant of begin passed a null list, or fix the Users module to pass an empty one instead. I think I prefer the latter: for the philosophical reason that it's good for <List> to help catch inadvertent invocations will a null list; and for the practical reason that then we don't need to make a new release of stripes-components.

Mike TaylorMarch 1, 2017 at 12:33 PM

Well, in the end I did yarn link @folio/stripes-components in stripes-core as well as stripes-sample-platform, though I didn't think it could be necessary. Then in desperation, I did it in ui-users as well, since that was the module that was directly provoking the problem. No dice. Finally, I panicked and yarn linked it in ui-items as well – and, bizarrely, that's what it took for me to get the "live" version of stripes-components running.

I really, really wish I understood NPM/Yarn; or even really that I was convinced it's even theoretically understandable.

Mike TaylorMarch 1, 2017 at 12:21 PM

List.js itself – the proximate cause of the error – is part of stripes-components, which should mean I can add instrumentation there to better understand what is going on. But for some reason, even though I {{yarn link}}ed stripes-components into my platform, it's using a version from the NPM repository. Still investigating.

TestRail: Cases
TestRail: Runs