
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
angular-sortablejs
Advanced tools
This package is an Angular 2 binding for awesome Sortable.js library which supports both Webpack and SystemJS.
npm install --save angular-sortablejs
Note: you do not need to install Sortable.js! It will be installed automatically.
First, include SORTABLEJS_DIRECTIVES
into your component:
import { Component } from '@angular/core';
import { SORTABLEJS_DIRECTIVES } from 'angular-sortablejs';
@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>
`,
directives: [ SORTABLEJS_DIRECTIVES ]
})
export class AppComponent {
items = [1, 2, 3, 4, 5];
}
Here we are importing SORTABLEJS_DIRECTIVES
and referring them as directives in our metadata. Then 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, SORTABLEJS_DIRECTIVES } 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 file to enable e.g. animation: 150
everywhere:
import { SortablejsConfiguration } from 'angular-sortablejs';
// any properties and events available on original library work here as well
SortablejsConfiguration.defaults.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,663 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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.