angular 2 clipboard
npm install @tabuckner/ngx-clipboardFrom 6.0.0, there is no other JS dependency anymore. Just Angular.
It works with angular version 2.0.0 and up
To make more sense with the future versioning scheme of Angular, the directive selector is now rename to ngxClipboard
- ngx-progressive-image-loader: it can lazy load img/picture, prevent reflow and seo friendly.
- Angular >=6.0.0
If you need to use it on 2.x, please use version 7.x.x.
If you need to use it on 4.x, please use version 8.x.x.
If you need to use it on 5.x, please use version 10.x.x.
The code are pretty much the same, in 8.0.0 it uses InjectionToken which requires angular4 and above.
You can get it on npm.
``bat`
npm install ngx-clipboard --save
Open your module file e.g app.module.ts and update imports array
`ts`
import { ClipboardModule } from 'ngx-clipboard';
...
imports: [
...
ClipboardModule,
...
]
If you use SystemJS to load your files, you might have to update your config:
`js`
System.config({
map: {
'ngx-clipboard': 'node_modules/ngx-clipboard'
}
});
This library support multiple kinds of copy source.
- Setting cbContent attribute
`html`
You can assign the parent container to avoid focus trapper issue, #145
`html`
- Setting an input target
`html
....
`
- Using copyFromContent from ClipboardService to copy any text you dynamically created.
`ts
import { ClipboardService } from 'ngx-clipboard'
...
constructor(private _clipboardService: ClipboardService){
...
}
copy(text: string){
this._clipboardService.copyFromContent(text)
}
`
- cbOnSuccess callback attribute is triggered after copy was successful with $event: {isSuccess: true, content: string}
`html`
Or updating parameters directly like so
`html`
- cbOnError callback attribute is triggered when there's failure in copying with $event:{isSuccess: false}
You can also use the structural directive \*ngxClipboardIfSupported to conditionally render the host element
`html`
_Special thanks to @surajpoddar16 for implementing this feature_
To handle copy response globally, you can subscribe to copyResponse$ exposed by the ClipboardService
`
export class ClipboardResponseService {
constructor(
private _clipboardService: ClipboardService,
private _toasterService: ToasterService
) {
this.handleClipboardResponse();
}
handleClipboardResponse() {
this._clipboardService.copyObservable$.subscribe((res: IClipboardResponse) => {
if (res.isSuccess) {
this._toasterService.pop('success', undefined, res.successMessage);
}
});
}
}
`
_Special thanks to @surajpoddar16 for implementing this feature_
This library creates a textarea element at the root of the body for its internal use. By default it only destroys it when the directive is destroyed. If you'd like it to be destroyed after each copy to clipboard, provide root level module configuration like this:
`ts`
ClipboardService.configure({ cleanUpAfterCopy: true });
Special thanks to @DmitryEfimenko for implementing this feature
`
1. npm i
2. npm run build
`
To run demo code locally
npm run start`
- Your commits conform to the conventions established here
Please ask your general questions at https://stackoverflow.com/questions/tagged/ngx-clipboard
Kudos to
Thierry Templier This project is inspired by his answer on StackOverflow.
The core function is ported from clipboard.js by @zenorocha.
This project was generated with Angular CLI version 7.

Big thanks to BrowserStack for letting the maintainers use their service to debug browser issues.
This project exists thanks to all the people who contribute. [Contribute].
Become a financial contributor and help us sustain our community. [Contribute]
#### Individuals
#### Organizations
Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]