Package Exports
- @theopenweb/multi-clipboard
- @theopenweb/multi-clipboard/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@theopenweb/multi-clipboard) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Description
Class for handling multi copy and paste features. This library contains no dependencies. Dependencies MAY be added later.
Features
- Utility class for easily handling the clipboard with additional features.
- Copy multiple from text. See "Usage" for examples.
- Sync current clipboard data with utility class.
- Pop or shift from multiple clipboard data on each paste.
Installation
npm install @theopenweb/multi-clipboardUsage
import MultiClipboard from '@theopenweb/multi-clipboard'
const clipboard = new MultiClipboard()
// Sets data
clipboard.set('ANY DATA')
// CTRL + V => 'ANY DATA'
clipboard.get() // Gets data: returns 'ANY DATA'.
clipboard.clear() // Delete clipboard data.
// Sets from text using comma delimited format
clipboard.setText('a,b,c').startWatching({ shift: true })
// CTRL + V => a, CTRL + V => b, CTRL + V => c
clipboard.stopWatching() // stop watching events.
clipboard.setText('a,b,c') // Set items to clipboard.
const a = clipboard.shift() // Get first and remove.
const c = clipboard.pop() // Get last and remove.
Examples
Examples can be checked by performing the below.
- Execute below:
npx http-server ./- Open following changing 8080 with actual port number http://localhost:8080/example/index.html in browser.
Roadmap
- Testing
- Linting
- Further options in examples
- Paste by number