tpac: conjoined items are not supported

Bug #1097915 reported by Kathy Lussier
16
This bug affects 2 people
Affects Status Importance Assigned to Milestone
Evergreen
Fix Released
Wishlist
Unassigned

Bug Description

From the list of JSPAC Features Missing from TPAC at http://evergreen-ils.org/dokuwiki/doku.php?id=dev:opac:template-toolkit:plan&#jspac_features_missing_from_tpac.

TPAC does not support the display of conjoined items.

Tags: pullrequest
Ben Shum (bshum)
Changed in evergreen:
importance: Undecided → Wishlist
milestone: none → 2.4.0-alpha
status: New → Triaged
Ben Shum (bshum)
Changed in evergreen:
milestone: 2.4.0-alpha1 → 2.4.0-beta
Ben Shum (bshum)
Changed in evergreen:
milestone: 2.4.0-beta → 2.4.0-rc
Ben Shum (bshum)
Changed in evergreen:
milestone: 2.4.0-rc → 2.5.0-alpha
Revision history for this message
Bill Ott (bott) wrote :

I created some initial work, although I'm not certain it's the most efficient approach.

code here:
  http://git.evergreen-ils.org/?p=working/Evergreen.git;a=shortlog;h=refs/heads/user/bott/working_branch

visuals here:
  http://demo.grpl.org/

 HINT: search "nook" or "wicked" There are currently only 4 bibs on this new master install

Dan Wells (dbw2)
Changed in evergreen:
milestone: 2.5.0-m1 → none
Revision history for this message
Ben Shum (bshum) wrote :

Assigning to next 2.5 milestone, let's take a look at including this or similar.

Changed in evergreen:
milestone: none → 2.5.0-alpha1
Revision history for this message
Dan Scott (denials) wrote :

Trying this out with the "concerto" record set, things look okay-ish when displaying record #15, but seem to go off the rails displaying any of the peer bibs. See "peerbibs_okay_display.png" for what looks okay-ish (although I think I would use an unordered list with some sort of title such as "Linked items" to give users a bit more of a clue as to why these titles are appearing underneath this copy).

Revision history for this message
Dan Scott (denials) wrote :

And here's "peer_bib_not_okay_display.png" for what happens when you follow one of those links in the Concerto data set. Not exactly what we're looking for, I think. I hope to dig into this soon...

Revision history for this message
Dan Scott (denials) wrote :

Oh, one other problem as I dig deeper into the code is that the retrieval mechanism is not efficient. With the Concerto data set, for example, the record display for record 97 goes from an average of about 0.75 seconds (via the TPAC timelog) to 2.65 seconds. Here's an example of the timelog with some additional entries:

At 0.0000: New page
At 0.1265: Initial load
At 0.1519: load_record() began
At 0.1583: past added content stage 1
At 0.1584: past staff saved searches
At 0.1584: Loading results
At 0.1585: Getting search parameters
At 0.1585: Tag circed items?
At 0.1585: Got search parameters
At 0.1592: Firing off the multiclass query
At 0.1728: Returned from the multiclass query
At 0.1728: past related search info
At 0.2546: get_records_and_facets(): about to call multisession
At 0.2564: get_records_and_facets(): about to call unapi.bre via json_query (rec_ids has 1
At 0.2571: get_records_and_facets():almost ready to fetch facets
At 0.4519: get_records_and_facets(): got response content
At 0.4529: get_records_and_facets(): parsed xml
At 0.4531: get_records_and_facets(): end of success handler
At 0.4531: get_records_and_facets():past session wait
At 0.4532: past get_records_and_facets()
At 0.4694: past copy note retrieval call
At 0.4995: past peer bib id retrieval
At 0.4996: get_records_and_facets(): about to call multisession
At 0.5007: get_records_and_facets(): about to call unapi.bre via json_query (rec_ids has 1
At 0.5013: get_records_and_facets():almost ready to fetch facets
At 0.6561: get_records_and_facets(): got response content
At 0.6570: get_records_and_facets(): parsed xml
At 0.6571: get_records_and_facets(): end of success handler
At 0.6572: get_records_and_facets():past session wait
At 0.6573: past peer bib record retrieval
At 0.6697: past copy note retrieval call
At 0.6986: past peer bib id retrieval

... peer bib retrieval / facet retrieval repeats for each copy ...

At 2.5865: get_records_and_facets():past session wait
At 2.5866: past peer bib record retrieval
At 2.5866: past store copy retrieval call
At 2.6113: past get_hold_copy_summary()
At 2.6527: past serials holding stuff
At 2.6528: past expandies
At 2.6528: past added content stage 2

So yes, we definitely have to tighten this up before committing it :/

Revision history for this message
Dan Scott (denials) wrote :

Okay, with http://git.evergreen-ils.org/?p=working/Evergreen.git;a=shortlog;h=refs/heads/user/dbs/conjoined_tpac the display time for record #97 is down to an average display time of 0.95 seconds, and record #15 (which has to display the four linked child bibs) is around 1.05 seconds given repeated tests. I restructured the bib retrieval code to cache bibs that we already had retrieved in this page display request and to short-circuit in some cases. I also fixed up whitespace.

Also, I modified the display a fair bit, if you're displaying a child bib (like record #97), the top of the copy table displays the foreign items, as follows (with new CSS):

[Branch name] (foreign item)
  * [Peer type]: [foreign bib title] / [foreign bib author]

I think that before this branch gets pushed, we should probably just squash all of the commits down into one commit; no sense in bringing the churn into mainline repo. Bill, would my branch meet GRPL's needs?

Revision history for this message
Dan Scott (denials) wrote :

Of note, something about foreign item display that might irk people is that foreign items will be displayed no matter what the scope is set to. For example, if the search scope is "System 2", the foreign item for Branch 1 still shows up.

The JSPAC implementation also lacked the concept of search scope, with the only difference being that in JSPAC you had to explicitly ask to see the foreign items by clicking the "Linked titles" tab, then clicking "Copy details" for the linked title.

Revision history for this message
Bill Ott (bott) wrote :

Catching up on this, the caching is a very welcome addition, as efficiency was my initial concern. Because we run a substantially different bit of CSS and TPAC display in general, I had made changes there as well for our production code. Overall, I think it accomplishes what we need.

One thing that I had not included here, but would certainly be worthy in regard to working toward a single commit, is including changes in Search.pm to facilitate search results, instead of just individual record display.

I'd need to parse this out of our local changes, but I believe it's something along the lines of a call to open-ils.search.peer_bibs, in load_rresults. That allows for display in expanded_results, which we use by default.

Revision history for this message
Dan Scott (denials) wrote :

Bill: I would be in favour of getting this in ASAP and working on a separate bug to address display of conjoined items in search results; in theory the right way to do that would be via the unapi database function, rather than issuing separate calls on a per-bib / per-copy basis (where I once again fear performance degradation).

It's different enough that I think this branch (in some sort of squashed fashion) is a win on its own. Glad to hear that it seems to be doing what you need, I think it does what we would need too.

Revision history for this message
Dan Scott (denials) wrote :

Added one more commit to provide saner CSS and markup for the copy table display (given that the "copy library" column may not be insanely wide due to the title / author info).

tags: added: pullrequest
Revision history for this message
Dan Scott (denials) wrote :

I went ahead and put the "pullrequest" tag on this. If someone wants to squash it down, cool. If not, also cool.

Remington Steed (rjs7)
Changed in evergreen:
milestone: 2.5.0-alpha1 → 2.5.0-alpha2
Revision history for this message
Ben Shum (bshum) wrote :

Reviewing this today.

Changed in evergreen:
assignee: nobody → Ben Shum (bshum)
Revision history for this message
Ben Shum (bshum) wrote :

Works for me. Picked to master, thanks Bill and Dan!

Changed in evergreen:
status: Triaged → Fix Committed
assignee: Ben Shum (bshum) → nobody
Ben Shum (bshum)
Changed in evergreen:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Duplicates of this bug

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.