2.1.1 • Published 5 years ago

@orbis-cascade/primo-explore-favorites-warning v2.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Login Warning for Permanent Favorites List

Developer

Jeremiah Kellogg (Eastern Oregon University)

Code Repository

https://github.com/alliance-pcsg/primo-explore-favorites-warning

Description

Favorites lists can be created by guest users, but once they end their session that list goes away. In order to make a favorites list permanent the user needs to login, but Primo has no built in warning to let guest users know this. This development offers two warnings letting guest users know they need to login if they want to save a favorites list permanently.

The first is similar to the login for complete results warning bar that appears in search results list. The favorites warning has the same functionality but appears on the My Favorites page when users aren't logged in:

warning bar

The second warning is a button that appears over the add-to-favorites button when a user isn't logged in or if the warning has been dismissed. When this overlay button is clicked a pop-up window appears to warn the user they must be logged in to save favorites lists permanently. This window also gives the option of logging in or dismissing the warning:

Brief record pin icon

Modal display

System Components

PBO, Package Manager

Skillset Requirements

PBO, JavaScript, CSS

Accessibility

Has not been tested for accessibility

Browser Support

Tested on Chrome, Firefox, Edge, and Safari

Mobile Support

Tested on iPhone

Implementation

Steps

  1. In the PBO, make sure you have the "Inherit Central Package" box checked.
  2. In your local package, in the custom.js file, include the module 'showFavoritesWarning' in your app definition. For example:
var app = angular.module('viewCustom', ['showFavoritesWarning']);

If you are using other angular modules, include them in your app definition as well. For example:

var app = angular.module('viewCustom', ['toggleInstitutions', 'showFavoritesWarning']);
  1. Also in the custom.js file, add the following lines of code within the anonymous function (that is, before the closing brackets at the end of the file).

For the warning bar that appears on the My Favorites page:

app.component('prmFavoritesToolBarAfter', {template: '\<show-favorites-warning /\>' });

For the button overlay that calls the favorites warning modal window when clicked:

app.component('prmSaveToFavoritesButtonAfter', {template:'\<fav-overlay /\>'});

By adding those lines you are effectively enabling both warnings. If you'd like to enable one and not the other, simply omit the one you don't want from the custom.js file.

  1. If you want to customize text associated with warning or to disable a warning, add the following block of code within the anonymous function and edit the values.
app.value('globalFavVars', {

        favWarnBarTxt:'Sign in to make your favorites list permanent',

        favWarnModalTitleText: 'Sign in to make your favorites list permanent',

        favWarnModalHoverText:'Add to my favorites',

        favWarnModalContentText:'You can create a favorites list as a Guest, but to save a list permanently you must be signed in',

});
  1. In your local package, in the custom1.css file, add the following CSS if you want to customize colors, padding, or text styles:
/\* id for customizing the alert bar on favorites page \*/

#fav-bar {

        /\*background-color: tomato;\*/

}

/\* id for customizing the text in the fav warning bar on favorites page\*/

#fav-bar-text {

}

/\* id for customizing the header box of the fav warning pop-up modal\*/

#fav-modal-header{

        /\*background-color: tomato;\*/

}

/\* id for customizing text and font attributes in fav warning pop-up modal header\*/

#fav-modal-header-text {

        /\*padding-top: 10px;\*/

}

/\* id for customizing modal content box below modal header \*/

#fav-modal-content {

        /\*background-color: tomato;\*/

}

/\* id for customizing modal content text below header\*/

#fav-modal-content-text {

        /\*font-size: 10px;\*/

}
  1. Zip and upload your package in the PBO.
  2. Deploy your view.