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

@umutcakir/image-zoom

v1.0.4

Published

Image Zoom is a versatile JavaScript library that enables users to zoom in and out on images, as well as pan around them with ease. Designed with a focus on modern design patterns, this library supports advanced interaction methods, including double-tap z

Downloads

56

Readme

Image Zoom Library

Image Zoom is a versatile JavaScript library that enables users to zoom in and out on images, as well as pan around them with ease. Designed with a focus on modern design patterns, this library supports advanced interaction methods, including double-tap zooming for MacOS trackpads and custom key bindings for a seamless user experience.

Features

  • Zoom In/Out: Allows users to zoom in and out on images up to 5x magnification (default), which can be customized.
  • Panning: Users can pan around the image effortlessly when zoomed in.
  • Trackpad Support: Double-tap zoom functionality for MacOS trackpad users.
  • Custom Key Bindings: Users can assign a key that, when held, allows mouse wheel zooming. Releasing the key enables panning. Default keys are Meta and Control.
  • State Management: Implements a robust state management system with three states: IdleState, KeyPressState, and PanningState.
  • DOM Interaction: Utilizes the Strategy pattern for DOM interaction, providing a default ContainerViewStrategy while allowing custom strategies.
  • Command Pattern: For handling zoom and pan commands efficiently.
  • Observer Pattern: Real-time updates to the DOM during interactions, ensuring smooth user experience.

Demo

You can try the live demo of the library at the following address:

https://umutdeveloper.github.io/image-zoom/.

Design Patterns

Image Zoom was developed with clean code principles in mind, utilizing various design patterns:

  • Facade Pattern: The ImageZoom class serves as the main interface, hiding the complexity of underlying subsystems like view strategies, state management, and notifications.
  • Strategy Pattern: The ViewStrategy class handles DOM interaction, allowing for easy customization. The default strategy provided is ContainerViewStrategy, but users can extend ViewStrategy to implement their own.
  • State Pattern: Three states (IdleState, KeyPressState, PanningState) extend the base State class, each implementing methods like wheel, keyUp, keyDown, mouseUp, mouseDown, mouseMove, and mouseLeave.
  • Chain of Responsibility Pattern: Used within state classes to manage events such as wheel, with handlers like DoubleTapForMac, MoveWithTouchpad, and Zoom.
  • Command Pattern: Each handler within the Chain of Responsibility creates and executes command objects (e.g., ZoomCommand), ensuring clear and maintainable code.
  • Observer Pattern: The ViewNotifier class, designed with the Observer pattern, notifies ViewObserver of changes in zoom levels and offsets, triggering updates to the DOM via the strategy’s update method.

Installation

You can install Image Zoom via npm:

npm install @umutcakir/image-zoom

Usage

Here’s a simple example of how to use the Image Zoom library:

<div id="zoom-container">
    <img src="/image-1.jpg" />
</div>
import { ImageZoom, ContainerViewStrategy } from '@umutcakir/image-zoom';

const containerElement = document.getElementById('zoom-container');
const viewStrategy = new ContainerViewStrategy(containerElement as HTMLDivElement);
const imageZoom = new ImageZoom(viewStrategy);

// You can manage the zoom manually. 1x for each call
imageZoom.zoomIn();
imageZoom.zoomOut();

// Removes the event listeners in the view strategy.
// You should call this whenever you destroy the component
imageZoom.destroy();

For detailed examples and advanced usage, please refer to the documentation.

Contributing

Contributions are welcome! Please fork the repository and submit a pull request with your improvements.

Repository

For more detailed information, visit the GitHub repository.