
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
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 2,803 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.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.