New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ftw.showroom

Package Overview
Dependencies
Maintainers
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ftw.showroom

Javascript library to make gallery overlays

  • 1.5.1
  • PyPI
  • Socket score

Maintainers
8

Introduction

.. contents:: Table of Contents

This package provides a javascript library to make gallery overlays such as Lightbox <http://www.jacklmoore.com/colorbox/example1/>_. But the main difference is that you have full control over the rendering and fetching of gallery items.

The gallery is able to notify if the user has reached the first or last item. This can be useful when more items should be loaded as a batch.

The items of the gallery can be extended or reset.

The gallery always tracks the active item.

An API provides a way to control the gallery from outside.

Installation

Add the package as dependency to your setup.py:

.. code:: python

setup(... install_requires=[ 'ftw.showroom', ])

or to your buildout configuration:

.. code:: ini

[instance] eggs += ftw.showroom

and rerun buildout.

Install the Generic Setup profile.

Compatibility

Plone 4.3

.. image:: https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Plone-logo.svg/2000px-Plone-logo.svg.png :target: https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Plone-logo.svg/2000px-Plone-logo.svg.png :height: 50px

JavaScript development

Building

Rebuilding the library (resources/javascript.js):

.. code-block:: bash

grunt build

Watching for changes and rebuild the bundle automatically:

.. code-block:: bash

grunt watch

or the default task

.. code-block:: bash

grunt watch

Testing

Running all test:

.. code-block:: bash

npm test

or

.. code-block:: bash

grunt test

Running a specific test:

.. code-block:: bash

grunt test --grep="Name of your test"

This package is copyright by 4teamwork <http://www.4teamwork.ch/>_.

ftw.showroom is licensed under GNU General Public License, version 2.

Client library

Getting Started

The client library depends on Grunt <http://gruntjs.com/>_. Assuming you already have Node.js installed on your system, run the following command:

.. code:: bash

sudo npm install -g grunt

To install the dependencies, run the following command:

.. code:: bash

npm install

And with npm you get the following packages:

  • Grunt <http://gruntjs.com/>_ - JavaScript task runner.
  • Babel <https://babeljs.io/>_ - ES6 Transpiler.
  • Browserify <http://browserify.org/>_ - Dependency Bundler
  • Karma <http://karma-runner.github.io/>_ - JavaScript test runner.
  • Jasmine <http://jasmine.github.io/>_ - JavaScript test suite.
  • Chai <http://chaijs.com/>_ - JavaScript Assertion Library.

Usage

Run the following command to re-build the library:

.. code:: bash

grunt build

Run the following command to watch for changes which trigger a rebuild:

.. code:: bash

grunt

Build options

See https://github.com/substack/browserify-handbook for more information about browserify.

Source Maps

Browserify comes with a built-in support to generate source maps. It is already enabled by default, but feel free to disable source maps. Refer to this article <https://developers.google.com/chrome-developer-tools/docs/javascript-debugging#source-maps>_ to enable source maps in Google Chrome, if you haven't already done so.

Tests

Run all tests

.. code:: bash

grunt test

Run a specific test

.. code:: bash

grunt test --grep="Name of your test"

Initialization

Creates an empty showroom instance with default options

.. code:: javascript

let showroom = Showroom();

The showroom constructor accepts a NodeList <https://developer.mozilla.org/en/docs/Web/API/NodeList>_ or a jQuery <http://api.jquery.com/jquery/>_. The items can provide a target as an HTML data attribute (data-showroom-target) to define the endpoint where the item will fetch its content from. To make a title visible in the overlay provide a title as an HTML data attribute (data-showroom-title).

.. code:: HTML

.. code:: javascript

let items = document.querySelectorAll(".item"); let showroom = Showroom(items);

or

.. code:: javascript

let items = $(".item"); let showroom = Showroom(items);

Configuration

The showrooms provide the following options.

+---------------+--------------------------+--------------------------------------------------------------------------+ | Option | Default | Description | +===============+==========================+==========================================================================+ | cssClass | "ftw-showroom" | Class attribute on the root element of the gallery | +---------------+--------------------------+--------------------------------------------------------------------------+ | render | See rendering_. section | Override the default render behavior | +---------------+--------------------------+--------------------------------------------------------------------------+ | tail | Empty function | Called when the user reaches the last element of the gallery | +---------------+--------------------------+--------------------------------------------------------------------------+ | head | Empty function | Is getting called when the user reaches the first element of the gallery | +---------------+--------------------------+--------------------------------------------------------------------------+ | fetch | See fetching_. section | Override the default fetch behavior | +---------------+--------------------------+--------------------------------------------------------------------------+ | beforeRender | noop | Hook to augment the item for example | +---------------+--------------------------+--------------------------------------------------------------------------+ | template | See template section | Override the default gallery template | +---------------+--------------------------+--------------------------------------------------------------------------+ | target | body Element | Define a selector where the gallery will be attached | +---------------+--------------------------+--------------------------------------------------------------------------+ | offset | 0 | Offset for the current item counter, useful for batches | +---------------+--------------------------+--------------------------------------------------------------------------+

.. _events:

Events

ftw.showroom fires the following events on document:

+---------------------+----------+-----------------------------------------------------------------------------------------------------------+ | Event | Params | Description | +=====================+==========+===========================================================================================================+ | showroom:item:shown | showroom | Invoked every time an item is shown, so if showroom opens, every time the selected showroom item changes. | +---------------------+----------+-----------------------------------------------------------------------------------------------------------+

To listen to an event use the following code:

.. code:: javascript

$(document).on('showroom:item:shown', function (showroom) { // do something with the showroom/item })

.. _fetching:

Fetching

The default fetching function uses the target provided by each item to make an AJAX call to retrieve its content.

.. code:: javascript

function fetch(item) { return $.get(item.target); };

This function can be overridden, see Configuration_.

.. code:: javascript

let showroom = Showroom(items, { fetch: (item) => { return "

Some other content

"; } } );

.. _rendering:

Rendering

The default rendering function returns an HTML string using the default Handlebars <http://handlebarsjs.com/>_ template padding the internal showroom data, the prefeteched content and the active item.

.. code:: javascript

function render(content) { return $.when(content).pipe((content) => { return $(template({ showroom: data, content: content, item: register.current })); }); }

This function can be overridden, see Configuration_.

.. code:: javascript

let showroom = Showroom(items, { render: (content) => { return $(template()); } } );

References

References are useful if you want to open a showroom item that is referenced by more than one element on the same page. You just have to add the showroom-reference class and the data-showroom-target-item attribute to make the connection. The data-showroom-target-item attribute contains an id which references a showroom item on the page. You have to set the data-showroom-id by manually on the showroom item to make the connection with the reference.

There is currently no interface to make the connection manually. But you have to call showroom.refresh() to refresh the references.

.. code:: html

Example

API

Showroom.open

Opens a specific item. If no item is specified the showroom tries to show the first in the store otherwise it does nothing.

.. code:: javascript

showroom.open();

or

.. code:: javascript

showroom.open(item);


Showroom.close

Closes the overlay by hiding the element.

.. code:: javascript

showroom.close();


Showroom.next

Opens the next item in the item queue. When the pointer reaches the last item the showroom does nothing.

.. code:: javascript

showroom.next();


Showroom.prev

Opens the previous item in the item queue. When the pointer reaches the first item the showroom does nothing.

.. code:: javascript

showroom.prev();


Showroom.append

Extend the current item queue with new items. The items are appended at the end of the queue. The pointer remains unaffected. The append method accepts a NodeList <https://developer.mozilla.org/en/docs/Web/API/NodeList>_ or a jQuery <http://api.jquery.com/jquery/>_

.. code:: javascript

let newItems = document.querySelectorAll(".newItems"); showroom.append(newItems);

or

.. code:: javascript

let newItems = $(".newItems"); showroom.append(newItems);


Showroom.prepend

Extend the current item queue with new items, similar to the append method, but the items are prepended at the beginning of the queue. The pointer remains unaffected. The prepend method accepts a NodeList <https://developer.mozilla.org/en/docs/Web/API/NodeList>_ or a jQuery <http://api.jquery.com/jquery/>_

.. code:: javascript

let newItems = document.querySelectorAll(".newItems"); showroom.prepend(newItems);

or

.. code:: javascript

let newItems = $(".newItems"); showroom.prepend(newItems);


Showroom.reset

Reset the current item store with new items. The overlay will be closed and the pointer set to 0. To empty the item store reset with no arguments.

.. code:: javascript

let newItems = document.querySelectorAll(".newItems"); showroom.reset(newItems);

or

.. code:: javascript

let newItems = document.querySelectorAll(".newItems"); showroom.reset();


Showroom.destroy

After destroying the showroom is no longer able to open any items. The store will be reset and the marker class removed. The overlay will be closed as well. All items will loose their data-showroom-id.

.. code:: javascript

showroom.destroy();


Showroom.setTotal

Updates the total value and rerenders the opened overlay. The method does only allow numeric values.

.. code:: javascript

showroom.setTotal(34);


Showroom.setOffset

Updates the offset. Prevents negative offsets. The method does only allow numeric values.

.. code:: javascript

showroom.setOffset(42);


Showroom.refresh

Refreshes the showroom references.

.. code:: javascript

showroom.refresh();

Changelog

1.5.1 (2018-03-12)

  • 1.5.0 Did not work properly, since the dist command was not executed. [mathias.leimgruber]

1.5.0 (2018-03-08)

  • Introduce "showroom:item:shown" event

1.4.0 (2017-07-11)

  • Introduce before render hook. [Kevin Bieri]

1.3.1 (2016-11-02)

  • Introduce uninstall profile [Kevin Bieri]

  • Introduce upgrade steps [Kevin Bieri]

  • Cleanup version pinnings [Kevin Bieri]

1.3.0 (2016-10-18)

  • Refactor event binding using event delegation. Since these changes all the showroom items must have showroom-item class Therefore manually refreshing events is no longer necessary [Kevin Bieri]

1.2.1 (2016-08-29)

  • Prevent register#set from calling tail twice [Kevin Bieri]

1.2.0 (2016-08-23)

  • Make template configurable [Kevin Bieri]

  • Introduce showroom references [Kevin Bieri]

  • Provide offset option for showroom. The offset is added to the current number and allows to display correct item number for batched items. [deiferni]

1.1.1 (2016-07-04)

  • Fix unordered list styles. [Kevin Bieri]

1.1.0 (2016-06-27)

  • Provide option to prepend items to the showroom queue. [phgross]

1.0.0 (2016-05-24)

  • Nothing changed yet

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc