Issues
- Manage Authorization Policy templates centrally within a consortiumUXPROD-4980Dennis Bridges
- Cooperative Collection Development notifications for last copy and subscriptionUXPROD-4825Hkaplanian
- Ability to share publication patterns between tenantsUXPROD-4807Owen Stephens
- Support development of Lists functionality in ECSUXPROD-4751Resolved issue: UXPROD-4751Joseph Reimers
- ECS - Allow user to navigate Inventory holdings and items without changing affiliationUXPROD-4715Ryan Taylor
- Enhanced inventory record suppression for ConsortiaUXPROD-4713Ryan Taylor
- Compare roles and/or users in a consortiumUXPROD-4708Resolved issue: UXPROD-4708Dennis Bridges
- Manage role templates centrally within a consortiumUXPROD-4707Resolved issue: UXPROD-4707Dennis Bridges
- Aggregated central tenant reportingUXPROD-4581Resolved issue: UXPROD-4581Khalilah Gambrell
- DCB FOLIO circulation phase 2UXPROD-4578Resolved issue: UXPROD-4578Tim Auger
- ECS - Allow user to update "ownership" of Inventory Holdings and Items within ECS systemUXPROD-4573Resolved issue: UXPROD-4573Ryan Taylor
- Merge duplicate instances (ECS and non-ECS)UXPROD-4570Ryan Taylor
- ECS with mod-tlr enabled: Requests support (part 1)UXPROD-4559Resolved issue: UXPROD-4559Stephanie Buck
- Allow user to access all locations in system for ordering on behalf of member tenants | manage linking of POL and Inventory records across tenantsUXPROD-4553Resolved issue: UXPROD-4553Dennis Bridges
- Vendor data (address, etc.) should be definable at the consortial level for any member library to referenceUXPROD-4270Dennis Bridges
- Manage list-form type settings for multiple tenants at onceUXPROD-4152Dennis Bridges
- Manage Form type settings for multiple tenants at onceUXPROD-4151Dennis Bridges
Uncaught TypeError: Cannot read property 'length' of null
Description
CSP Request Details
CSP Rejection Details
Potential Workaround
blocks
Checklist
hideTestRail: Results
Details
Assignee
Mike TaylorMike TaylorReporter
Mike TaylorMike TaylorLabels
Priority
P3TestRail: Cases
Open TestRail: CasesTestRail: Runs
Open TestRail: Runs
Details
Details
Assignee
Reporter
Labels
Priority
TestRail: Cases
TestRail: Runs
Activity
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.
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.)