Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

daily-glry

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

daily-glry

Daily comic strip gallery with mobile/touch support.

  • 0.8.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

daily-glry

Daily comic strip gallery with mobile/touch support.

Intended for daily comic strips and based on the current date. Specify a start date for the earliest comic, and browse through all strips up to current day.

Supports touch gestures (swipe & shake) and the following keyboard shortcuts:

previous date next date R random comic T today's comic

daily-glry is based on glry, and requires Moment.js.

Install

$ npm install daily-glry --save

Usage

Place some basic HTML on your page:

<figure id="figure">
	<div class="loading">LOADING</div>
	<div class="error">STRIP MISSING</div>

	<nav class="navigation">
		<button class="prev"></button>
		<button class="rand">Random</button>
		<button class="next"></button>
		<button class="today">Today</button>
		<button class="share">Share</button>
	</nav>
</figure>

Initialize the gallery with a minimal set of options like this:

import DailyGlry from 'daily-glry';

const dailyGlry = new DailyGlry({
    dateMin: [2014, 1, 22],
    host: 'http://mycomic.com/archive/',
    extension: '.png',
    onOutOfRange: function () {
        alert('No more comics until tomorrow.');
    }
});

The only required option is host which should be the base domain and folder of your comics. This will be used to load the daily comic file. The current year and date will be appended to host like this:

http://mycomic.com/archive/2014/20140204.png

Options

The available options and their defaults are as follows:

{
    target: '#figure',
    host: null,
    hashFormat: 'YYYY-MM-DD',
    nameFormat: 'YYYY/YYYYMMDD',
    extension: '.png',
    onOutOfRange: false
}

You can change the filename and hash format with nameFormat/hashFormat using the moment format syntax.

If a date outside the specified range is called, you can call custom logic by passing a function to onOutOfRange.

All the options available in glry can also be used.

Shake support (optional)

If you include the great plugin shake.js, shaking your device will load a random comic same as pressing R.

Just install the plugin and include it:

$ npm install shake.js --save
import Shake from 'shake.js';

const myShakeEvent = new Shake({
    threshold: 15, // optional shake strength threshold
    timeout: 1000 // optional, determines the frequency of event generation
});

myShakeEvent.start();

Keywords

FAQs

Package last updated on 25 Jan 2019

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