Socket
Socket
Sign inDemoInstall

@yuion/svg-viewer

Package Overview
Dependencies
4
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @yuion/svg-viewer

This library is a Typescript for interacting with SVG files


Version published
Weekly downloads
0
Maintainers
1
Install size
464 kB
Created
Weekly downloads
 

Readme

Source

TypeScript SVG Viewer

This library is a Typescript for interacting with SVG files

Compilation

You can build the library from source after installing the dependencies with the command

npm run build

Usage

API docs can be found here

You can install the library with the npm command

npm install --save-dev @yuion/svg-viewer

Before using the SVG you'll need to add the global styles it will need to be initialised.

import { applyGlobalStyles } from '@yuion/svg-viewer';

applyGlobalStyles();

To create a new viewer use the create method. A DOM element and URL are required to create. Available options are the fields defined in the Viewer class.

import { createViewer } from '@yuion/svg-viewer';

const element = document.querySelector('#my-svg-container');
const url = `https://my.domain/path/to/file.svg`;

const view_id = createViewer({
    element,
    url
});

To update the state of the viewer you can use the update method. Available options are the fields defined in the Viewer class.

import { updateViewer } from '@yuion/svg-viewer';

const view_id = 'id-of-my-viewer';
const zoom = 2; // 200% zoom
const center = { x: .75, y: .25 }; // 200% zoom

updateViewer(view_id, {
    zoom,
    center
});

When you are finished with the viewer you can cleanup using the remove method.

import { removeViewer } from '@yuion/svg-viewer';

const view_id = 'id-of-my-viewer';

removeViewer(view_id);

You can change the styles of the SVG by passing them to the update method.

import { updateViewer } from '@yuion/svg-viewer';

const view_id = 'id-of-my-viewer';
const style = {
    'my-css-seletor': {
        'background-color': 'white'
    }
};

updateViewer(view_id, { styles });

You can also listen to user events on the SVG by passing them to the update method.

import { updateViewer } from '@yuion/svg-viewer';

const view_id = 'id-of-my-viewer';
const actions = [
    { id: 'my-element-id', action: 'click', callback: (e) => doSomething() }
];

updateViewer(view_id, { actions });

You can also focus on points and elements in the SVG by passing them to the update method.

import { updateViewer } from '@yuion/svg-viewer';

const view_id = 'id-of-my-viewer';
let focus = { 
    location: { x: .6, y: .2 } 
};

updateViewer(view_id, { focus });

focus = { 
    location: 'my-element-id',
    zoom_level: 1.5
};

updateViewer(view_id, { focus });

Finally, you can also render HTML element over the SVG by passing them to the update method.

import { updateViewer } from '@yuion/svg-viewer';

const view_id = 'id-of-my-viewer';
const element = document.querySelector('#my-element-id');
const features = [
    { location: 'svg-element-id', content: element }
];

updateViewer(view_id, { features });

FAQs

Last updated on 22 Jan 2021

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc