Issues
- Allow stripes-core's menu items to point elsewhere than module routeSTRIPES-151Resolved issue: STRIPES-151Mike Taylor
- Allow "path" in stripes-connect manifest to be a callback functionSTRIPES-150Resolved issue: STRIPES-150Mike Taylor
- Interaction of Active/Inactive filters is wrongSTRIPES-145Resolved issue: STRIPES-145Mike Taylor
- Interplay between UI URL and stateSTRIPES-144Resolved issue: STRIPES-144Mike Taylor
- Extend multi-column record list to include indication of whether user is activeSTRIPES-143Resolved issue: STRIPES-143Mike Taylor
- Make Users UI module robust to non-existent sub-recordsSTRIPES-141Resolved issue: STRIPES-141Mike Taylor
- Creating a record can put Stripes in a weird stateSTRIPES-139Resolved issue: STRIPES-139Mike Taylor
- Upgrade Users UI module to use new version of schemaSTRIPES-138Resolved issue: STRIPES-138Mike Taylor
- Make redux state-change logging optionalSTRIPES-137Resolved issue: STRIPES-137Mike Taylor
- Warning: setState(...): Cannot update during an existing state transitionSTRIPES-135Resolved issue: STRIPES-135Mike Taylor
- Sort does not work when not following a searchSTRIPES-134Resolved issue: STRIPES-134Mike Taylor
- Support different sort-orders in the Users UI module, by clicking on column headingsSTRIPES-131Resolved issue: STRIPES-131Mike Taylor
- Substitution syntax in manifest template stringsSTRIPES-130Resolved issue: STRIPES-130Mike Taylor
- Make local state available for use in the stripes-connect manifestSTRIPES-123Resolved issue: STRIPES-123Jason Skomorowski
- Update ui-okapi-console package.jsonSTRIPES-120Resolved issue: STRIPES-120John Malconian
- handle JWT-token in the UI clientSTRIPES-113Resolved issue: STRIPES-113Niels Erik Nielsen
- Integrate the use of okapi-stripes to generate UI bundlesSTRIPES-76Resolved issue: STRIPES-76
- Initialize modulesOKAPI-232Resolved issue: OKAPI-232Heikki Levanto
- Upgrade inventory storage to RAML-module-builder 3.0.0METADATA-23Resolved issue: METADATA-23Marc Johnson
- Introduce paging for all items and instancesMETADATA-20Resolved issue: METADATA-20Marc Johnson
- Change instanceId to instance_id for the Item APIMETADATA-19Resolved issue: METADATA-19Marc Johnson
- Add identifiers to instances in the inventory moduleMETADATA-12Resolved issue: METADATA-12Marc Johnson
- View User List - Sort by Last NameLIBAPP-70Resolved issue: LIBAPP-70Mike Taylor
- Search Users v3 - Search by First Name, Last Name and UsernameLIBAPP-68Resolved issue: LIBAPP-68Mike Taylor
- Filter User List by StatusLIBAPP-54Resolved issue: LIBAPP-54Mike Taylor
- Assign User Permissions v1LIBAPP-50Resolved issue: LIBAPP-50Jeremy Huff
- View Selected User v2LIBAPP-23Resolved issue: LIBAPP-23Matt Connolly
- Create/Edit User v2LIBAPP-12Resolved issue: LIBAPP-12Niels Erik Nielsen
- Log In UserLIBAPP-10Resolved issue: LIBAPP-10Niels Erik Nielsen
- Log Out UserLIBAPP-9Resolved issue: LIBAPP-9Niels Erik Nielsen
- Improve README for ui-users and mod-usersFOLIO-443Resolved issue: FOLIO-443
- Extend Vagrant "blackbox" demo to AWSFOLIO-438Resolved issue: FOLIO-438John Malconian
- Standardize module deployment options/configFOLIO-437Resolved issue: FOLIO-437Jakub Skoczen
- CQL2PgJSON: check index field nameFOLIO-420Resolved issue: FOLIO-420frances.webb@cornell.edu
- Add mod-metadata into FOLIO demo and blackboxFOLIO-416Resolved issue: FOLIO-416Wayne Schneider
- mod-permissions persistent storage needs to be migrated to PostgresFOLIO-407Resolved issue: FOLIO-407Kurt Nordstrom
- Design module life cycleFOLIO-406Resolved issue: FOLIO-406Heikki Levanto
- Integrate Stripes components into CI/JenkinsFOLIO-401Resolved issue: FOLIO-401John Malconian
- Add mod-auth into demo FOLIO Vagrant boxFOLIO-391Resolved issue: FOLIO-391Wayne Schneider
- Identify and implement FOLIO software release processFOLIO-317Jakub Skoczen
Allow stripes-core's menu items to point elsewhere than module route
Description
Environment
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 TaylorJanuary 23, 2017 at 11:11 PM
Remember we have two filter (presently): show active and show inactive; either or both may be enabled – Or indeed neither. So the states are:
http://localhost:3000/users [both unset, by default]
http://localhost:3000/users?filterActive=true&filterInactive=true
Now you want to invert the sense of filterActive, so that http://localhost:3000/users can be the home URL. But you don't want to invert the sense of filterInctive, because we don't want that to be on by default. So our four states are as follows (in the same order as before):
http://localhost:3000/users [both unset, by default]
http://localhost:3000/users?dontFilterActive=true&filterInactive=true
That third URL is surely a recipe of total confusion. Let's no go that route. Honesty in URLs.
Jason SkomorowskiJanuary 23, 2017 at 10:59 PMEdited
/users?showInactive=true
...I dunno, that seems fairly sensible to me?
Is it your intent that if it COULD be read from the URL it ought always be present there? And so the default users page will be something like: /users?query=&&sortBy=surname&&perPage=20&&filterActive=true&&staffOnly=false&&probablyMore=many
Mike TaylorJanuary 23, 2017 at 10:11 PM
Consider whether or not to set the filter that lets you see "active" users. If that is on by default (which it is) but the URL does not indicate that, then there no way to see a URL change when it is turned off. You be reduced to introducing negative-sense URL parameters such as /users?doNotFilterOnActive=true
. No-one wants that. Much better just to say the URL expresses the state, and that's an end of it.
Jason SkomorowskiJanuary 23, 2017 at 9:50 PM
I think it is honest (and a common idiom) for unspecified parameters to fall back to defaults. Especially in URLs!
While I'd prefer we avoid doing this, if we must, I would prefer we did so in the module's routing via a redirect rather than be introducing an additional configuration key.
Mike TaylorJanuary 23, 2017 at 1:59 PM
Well, the alternative is to have the URL lie about the state. Then when you change the state, what do you want to happen? What if there is a default filter state and a default sort state, and you change one of them in the UI: do you want the URL to reflect the changed one but have the other default to its unspecified state?
Better to be honest.
At present, the links to applications that stripes-core generates in the top menu bar are taken from those module's
route
property as specified in their `package.json`. This means that applications always start from their route – if you like, their route and root are the same. (This joke works much better with the British pronunciation of "route".)But in order to resolve STRIPES-144 (interplay between UI URL and state) we need to be able to start modules at somewhere other than their route – specifically, for the UI module, at
/users?filterActive=true
. We'll need to modify stripes-core, and maybe stripes-loader, to support a newhome
property.