# primo-explore-custom-library-card-menu

> ExLibris Primo New UI plugin for creating a custom library card menu in place of the default options

Latest version **1.1.12** (published 2022-08-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install primo-explore-custom-library-card-menu
pnpm add primo-explore-custom-library-card-menu
yarn add primo-explore-custom-library-card-menu
bun add primo-explore-custom-library-card-menu
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.12 |
| Published | 2022-08-08 |
| First published | 2017-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 16.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Barnaby Alter |
| Maintainers | barnaby.alter, etgrieco, eric.griffis |
| Keywords | primo-explore |

## Links

- npm: https://www.npmjs.com/package/primo-explore-custom-library-card-menu
- Repository: https://github.com/nyulibraries/primo-explore-custom-library-card-menu
- Homepage: https://github.com/nyulibraries/primo-explore-custom-library-card-menu#readme
- Issues: https://github.com/nyulibraries/primo-explore-custom-library-card-menu/issues
- npm.io page: https://npm.io/package/primo-explore-custom-library-card-menu

## Recent versions

- 1.1.12 (latest) — 2022-08-08
- 1.1.11 — 2022-06-07
- 1.1.10 — 2021-09-10
- 1.1.9 — 2021-05-03
- 1.1.8 — 2020-10-27
- 1.1.7 — 2019-07-25
- 1.1.6 — 2018-07-26
- 1.1.5 — 2018-06-19
- 1.1.2 — 2018-04-16
- 1.1.1 — 2018-03-28
- 1.1.0 — 2017-09-15
- 1.0.0 — 2017-08-25

## README

# primo-explore-custom-library-card-menu

[![CircleCI](https://circleci.com/gh/NYULibraries/primo-explore-custom-library-card-menu.svg?style=svg)](https://circleci.com/gh/NYULibraries/primo-explore-custom-library-card-menu)
[![npm version](https://img.shields.io/npm/v/primo-explore-custom-library-card-menu.svg)](https://www.npmjs.com/package/primo-explore-custom-library-card-menu)
[![Coverage Status](https://coveralls.io/repos/github/NYULibraries/primo-explore-custom-library-card-menu/badge.svg?branch=master)](https://coveralls.io/github/NYULibraries/primo-explore-custom-library-card-menu?branch=master)

## Description

Append buttons to the library card menu for the primo-explore UI.

### Screenshot

![screenshot](screenshot.png)

## Installation

1. Assuming you've installed and are using [primo-explore-devenv](https://github.com/ExLibrisGroup/primo-explore-devenv).

2. Navigate to your template/central package root directory. For example:
    ```
    cd primo-explore/custom/MY_VIEW_ID
    ```
3. If you do not already have a package.json file in this directory, create one:
    ```
    npm init -y
    ```
4. Install this package:
    ```
    npm install primo-explore-custom-library-card-menu --save-dev
    ```

## Usage

Once installed, inject `customLibraryCardMenu` as a dependency:

```js
let app = angular.module('viewCustom', ['customLibraryCardMenu'])
```

**Note:** If you're using the --browserify build option, you will need to first import the module with:

```js
import 'primo-explore-custom-library-card-menu';
```

You'll need to configure the module by passing it an array of objects as an angular `constant`:

| name | type | usage |
|------|-------------|--------|
| `name` | string | the text that will appear as the button link |
| `description` | string | for the aria label |
| `action` | string | url for the link. always opens in a new window. |
| `icon` | object | defines the icon for the link. must be chosen from <https://material.io/icons/>. you need to specify both the name of the action "set" (see link) and the icon itself, in the form "ic_person_outline_24px". note that all icons do not work so you may have to experiment some |

### Translations

You can use translations to access back office text by wrapping the value in curly braces, e.g. `{nui.menu.librarycard}`. Anything that works in the primo templates link this `<span translate="nyu.menu.librarycard"></span>` will work if it's available in the current scope.

### Example

```js
app.constant('customLibraryCardMenuItems',
  [
    {
      name: "{nui.menu.librarycard}",
      description: "Go to {nui.menu.librarycard}",
      action: "{urls.eshelf}/account",
      icon: {
        set: 'social',
        icon: 'ic_person_outline_24px'
      }
    },
    {
      name: "E-Z Borrow",
      description: "Go to E-Z Borrow",
      action: "{urls.ezborrow}",
      icon: {
        set: 'social',
        icon: 'ic_share_24px'
      }
    },
    {
      name: "Interlibrary Loan",
      description: "Go to Interlibrary Loan (ILL)",
      action: "{urls.ill}",
      icon: {
        set: 'content',
        icon: 'ic_send_24px'
      }
    }
  ]
)
```

## Styles

To completely hide the default options use the following CSS:

```css
prm-library-card-menu > button {
  display: none !important;
}
```

## Acknowledgements

Thanks to https://github.com/Alliance-PCJWG/primo-explore-custom-actions
for the idea

---
_Source: https://npm.io/package/primo-explore-custom-library-card-menu · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
