npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@sedeh/flexible-preview-box

v3.0.2

Published

Have you ever wanted a preview box that can display anything in different ways on different application flows just by toggling meta-data rules for each flow? Flexible preview box is built with Angular 4+ code and can display images or videos with relative

Downloads

29

Readme

Welcome to flexible preview box!

Have you ever wanted a preview box that can display anything in different ways on different application flows just by toggling meta-data rules for each flow? Flexible preview box is built with Angular 4+ code and can display images or videos with relative data or action links above or below its view port. links or any content display is controlled and formatted by the meta-data rules you provide. You can write your own formatters and achieve what is needed for a specific situation or use existing formatter from into-pipes library. Flexible preview box can display any data for any purpose. For example: product display, user info display, video teaser display, ..., possibilities are endless.

NOTE: If your project still is angular 2, 4, or 5; please luck-down your reference to 1.1.1 version by removing ^ from the version dependency in your package JSON. Otherwise for Angular 6+, please use 1.1.2 version or higher.

NOTE: Starting with version 1.2.1 you need to import this library through @sedeh/flexible-preview-box.

Please send your requests or comments through the link provided below:

Live Demo | NPM | Comments/Requests

DEPENDENCIES: 
    "font-awesome": "^4.7.0",
    "@sedeh/into-pipes": "^4.1.0",
    "@sedeh/wizard-storage": "^3.0.0",

Formatting the preview box display content.

We are using "into-pipes" library. To see available formatting options, please follow what is supported by the library.

Sample Use

<flexible-preview-box
  *ngFor="let preview of myPreviews"
  [item]="preview"
  [viewport]="preview.images"
  [metadata]="presentationKeys"
  [magnificationFactor]="3"
  [enableMobileMagnification]="true"
  [effects]="config"
  (onaction)="onaction($event)"
  (onselect)="onselect($event)"></flexible-preview-box>

In above example the following could be a possible way of previewing the item presented to the box:

config = {
    zoomOnHover: true,
    hovereffect: true,
    fixedHover: false,
    rating: true,
    cart: true,
    favorite: true,
    currency: true,
    inventory: true,
    description: true,
    catalog: true,
    width: "250",
    height: "140"
  }

  presentationKeys = [
    {
      key: 'reviews',
      value: 'Reviews',
      hidelabel: true,
      present: true,
      position: 'above',
      side: 'right',
      rawContent: (item: any) => item.reviews,
      format: 'rating'
    },
    {
      key: 'favorites',
      value: 'Favorites',
      hidelabel: true,
      present: true,
      position: 'above',
      sidebyside: true,
      side: 'right',
      format:'favorite'
    },
    {
      key: 'cart',
      value: 'Add to cart',
      present: true,
      hidelabel: true,
      position: 'above',
      sidebyside: true,
      side: 'right',
      format:'cart'
    },
    {
      key: 'share',
      value: 'Share item',
      present: true,
      hidelabel: true,
      spacing: "5",
      position: 'above',
      sidebyside: true,
      side: 'right',
      rawContent: (item: any) => 'http://myside.com/?ref-id=' + item.id,
      format:'share:facebook:linkedin:google:twitter'
    },
    {
      key: 'price',
      value: 'Price',
      hidelabel: true,
      emphasize: true,
      present: true,
      position: 'below',
      side: 'center',
      format: 'currency'
    },
    {
      key: 'catalog_number',
      value: 'Item #',
      present: true,
      spacing: "10",
      position: 'below',
      side: 'center'
    },
    {
      key: 'description',
      value: 'Description',
      hidelabel: true,
      present: true,
      spacing: "10",
      position: 'below',
      side: 'left'
    },
    {
      key: 'inventory',
      value: 'Remaining Items',
      present: true,
      spacing: "10",
      position: 'below',
      side: 'right',
      format: 'inventory'
    }
  ]

So we need to create three custom formatters "favourite", "cart", and "inventory". favourite custom pipe should display an icon if value is set and toggle it and its value on click and perform saving or removing favourite or fire an event. cart custom pipe should display an icon if value is set and toggle it and its value on click and insert/remove the item in/from a cart or fire an event. inventory custom pipe should display relative information if inventory item is greater or less than zero.

To see how you can create custom formatters, look at into-pipes library.

attributes

| Attribute |Details | |-----------------|---------------------------------------------------------------------------------------| |item | JSON data to be displayed. | |viewport | Place to display image or video. | |metadata | Data that controls which item attribute has to be played and in what form. | |effects | Configuration attributed that controls the box. | |enableMobileMagnification| Allow magnification of images on mobile touch move. default is true. |

viewport

the value passed to view port can be of the following:

{
  type: string, // video
  poster?: string, // for Mobile
  src: {
    egg: string, // URL
    mp4: string, // URL,
    webm: string, // URL,
  }
}

OR

{
  type: string, // image
  src: {
    small: string,
    large: string
  }
}

mtadata

| Attribute |Details | |-----------------|---------------------------------------------------------------------------------------| |key | JSON path to the item to be displayed. | |value | Textual representation of key on the box. | |present | Display the attribute if present is set or skip. | |position | Display the attribute above or below the box view port. | |side | Display the attribute on right, left, or centre of box. | |emphasize | Display in a large and bold fashion. | |spacing | Top margin on the displayed row. | |hidelabel | Do not show the label. | |rawContent | function to generate content for rawContent of pipe directive from item. If not supplied, key attribute will be used to drill down in item attributes to generate the content. | |format | Format the value using into-pipes library. |

effects

the following are type of effects that control the box

| Attribute |Details | |-----------------|---------------------------------------------------------------------------------------| |zoomOnHover | if view port has two small and large images, displays large image on hover if set. | |hovereffect | will give a small zoom out effect on hover if set. | |fixedHover | will pop the image to a larger size on hover. | |rating | will show/hide rating section. | |cart | will show/hide cart section. | |favorite | will show/hide favorite section. | |currency | will show/hide currency section. | |inventory | will show/hide inventory section. | |description | will show/hide description section. | |catalog | will show/hide catalog section. | |width | will control the view-port width. | |height | will control the view-port height. |

Events

You can register to receive the following events:

| Event |Details | |-------------|-------------------------------------------------------------------------------------------| |onselect | published when view port is clicked. will contain {action, type, item} | |onaction | published when clicked or hovered on interactive items. will contain {action, type, item}|

Revision History

| Version | Description | |---------|-----------------------------------------------------------------------------------------------| | 3.0.0 | Upgraded to angular 15 and added more controls over displaying sections of the box. | | 2.0.4 | Added ability to associate an action with any one of the sections above and below the view. | | 2.0.0 | Upgradfed to angular 8. | | 1.2.10 | Fixed the touch move magnification on mobile. Also added flag to disable the touch move if a click action is attached to the view port. | | 1.2.9 | Updated style to display correctly on mobile. added touch move event handling for managing image zoom movement in view port of the preview box. | | 1.2.8 | Resolved problem of displaying video on mobile. | | 1.2.7 | Added keyboard handling for video. | | 1.2.6 | event raised as a result of view port click was not passing correct attributes. | | 1.2.5 | found and fixed an irregularity in events raised. | | 1.2.4 | Unifying format of events issued on cange or on action. | | 1.2.3 | Capturing fullscreenchange event handling on video tag. | | 1.2.2 | Updated dependencies. Added onaction event to allow detection of mouse move and actions performed on piped attributes. Added magnificationFactor to allow for suitable magnification of image on hover depending on application which is using this component. | | 1.2.1 | Updated dependencies. | | 1.2.0 | It was brought to my attention that some users have trouble using my components in their angular 6 environment. Since I had only updated few dependencies when moved to Angular 6, I am thinking dependencies are causing issues. So, for this release, I am updating all dependencies to what Angular 6 applications are expecting to have. Please let me know if this is fixing or not fixing any issues you are facing. | | 1.1.2 | Rolling to angular 6+ after fixing the dependency issue. | | 1.1.1 | Temporary roll-back to angular 5. I forgot to luck-down the dependencies for angular 5 before upgrading to angular 6. this will cause problem if you are still using angular 5. | | 1.1.0 | Updated libraries to become compatible with Angular 6+. | | 1.0.0 | Initial release. |

alt text