Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
angular-sortablejs
Advanced tools
This package is an Angular 2 binding for awesome Sortable.js library which supports both Webpack and SystemJS.
If you are not rc5 compliant yet, keep using the version 0.1.1.
npm install --save angular-sortablejs
Note: you do not need to install Sortable.js! It will be installed automatically.
First, import SortablejsModule
into the angular module where you want to use it:
imports: [
...
SortablejsModule,
...
]
Then the you can use it in your component:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<h2>Drag / drop the item</h2>
<div [sortablejs]="items">
<div *ngFor="let item of items">{{ item }}</div>
</div>
<hr>
<h2>See the result</h2>
<div>
<div *ngFor="let item of items">{{ item }}</div>
</div>
`
})
export class AppComponent {
items = [1, 2, 3, 4, 5];
}
We use sortablejs
property on a container HTML element to tell Angular that this is a sortable container. We also pass the items
array to both *ngFor
and [sortablejs] to register the changes automatically (this is done inside of original Sortable.js onEnd
event).
That's just it... if you use the Webpack. If you use original Angular shipping with SystemJS you would need to follow the step below.
Adapt your systemjs.config.js
(or another place where you configure SystemJS) file with the following:
...
var map = {
...
'angular-sortablejs': 'node_modules/angular-sortablejs',
'sortablejs': 'node_modules/sortablejs/Sortable.js',
...
};
...
var packages = {
...
'angular-sortablejs': { main: 'index.js', defaultExtension: 'js' },
...
};
...
var config = {
map: map,
packages: packages
};
System.config(config);
This is important to let SystemJS know everything it needs about the dependencies it needs to load.
The array is automatically updated because you pass the items
as <div [sortablejs]="items">
. The items
variable can be either a JavaScript array or Angular rc2+ forms FormArray
. If you won't pass anything, e.g. <div sortablejs>
, the items won't be automatically updated, thus you should take care of updating the array on your own.
Pass the options with sortablejsOptions
property. If we extend the example above with the options it will look like the following:
import { Component } from '@angular/core';
import { SortablejsOptions } from 'angular-sortablejs';
@Component({
selector: 'my-app',
template: `
<h2>Drag / drop the item</h2>
<div [sortablejs]="items" [sortablejsOptions]="options">
<div *ngFor="let item of items">{{ item }}</div>
</div>
<hr>
<h2>See the result</h2>
<div>
<div *ngFor="let item of items">{{ item }}</div>
</div>
`,
directives: [ SORTABLEJS_DIRECTIVES ]
})
export class AppComponent {
items = [1, 2, 3, 4, 5];
options: SortablejsOptions = {
animation: 150
};
}
If you want to use the same sortable options across different places of your application you might want to set up global configuration. Add the following to your main module to enable e.g. animation: 150
everywhere:
imports: [
...
// any properties and events available on original library work here as well
SortablejsModule.forRoot({
animation: 150
}),
...
]
This value will be used as a default one, but it can be overriden by sortablejsOptions
property.
FAQs
SortableJS for Angular
The npm package angular-sortablejs receives a total of 1,770 weekly downloads. As such, angular-sortablejs popularity was classified as popular.
We found that angular-sortablejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.