jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
100 lines (85 loc) • 4.22 kB
text/typescript
import { Component, ViewChild } from '@angular/core';
import { jqxKanbanComponent } from 'jqwidgets-ng/jqxkanban';
import { jqxButtonComponent } from 'jqwidgets-ng/jqxbuttons'
({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent {
('myKanban', { static: false }) myKanban: jqxKanbanComponent;
('myRemoveItemBtn', { static: false }) myRemoveItemBtn: jqxButtonComponent;
('myUpdateItemBtn', { static: false }) myUpdateItemBtn: jqxButtonComponent;
newItemsCount: number = 0;
fields: any[] =
[
{ name: 'id', type: 'string' },
{ name: 'status', map: 'state', type: 'string' },
{ name: 'text', map: 'label', type: 'string' },
{ name: 'tags', type: 'string' },
{ name: 'color', map: 'hex', type: 'string' },
{ name: 'resourceId', type: 'number' }
];
getWidth() : any {
if (document.body.offsetWidth < 600) {
return '90%';
}
return 600;
}
source: any =
{
localData: [
{ id: '1161', state: 'new', label: 'Combine Orders', tags: 'orders, combine', hex: '#5dc3f0', resourceId: 3 },
{ id: '1645', state: 'work', label: 'Change Billing Address', tags: 'billing', hex: '#f19b60', resourceId: 1 },
{ id: '9213', state: 'new', label: 'One item added to the cart', tags: 'cart', hex: '#5dc3f0', resourceId: 3 },
{ id: '6546', state: 'done', label: 'Edit Item Price', tags: 'price, edit', hex: '#5dc3f0', resourceId: 4 },
{ id: '9034', state: 'new', label: 'Login 404 issue', tags: 'issue, login', hex: '#6bbd49' }
],
dataType: 'array',
dataFields: this.fields
};
dataAdapter: any = new jqx.dataAdapter(this.source);
resourcesAdapterFunc = (): any => {
let resourcesSource =
{
localData: [
{ id: 0, name: 'No name', image: './../../../jqwidgets/styles/images/common.png', common: true },
{ id: 1, name: 'Andrew Fuller', image: './../../../images/andrew.png' },
{ id: 2, name: 'Janet Leverling', image: './../../../images/janet.png' },
{ id: 3, name: 'Steven Buchanan', image: './../../../images/steven.png' },
{ id: 4, name: 'Nancy Davolio', image: './../../../images/nancy.png' },
{ id: 5, name: 'Michael Buchanan', image: './../../../images/Michael.png' },
{ id: 6, name: 'Margaret Buchanan', image: './../../../images/margaret.png' },
{ id: 7, name: 'Robert Buchanan', image: './../../../images/robert.png' },
{ id: 8, name: 'Laura Buchanan', image: './../../../images/Laura.png' },
{ id: 9, name: 'Laura Buchanan', image: './../../../images/Anne.png' }
],
dataType: 'array',
dataFields: [
{ name: 'id', type: 'number' },
{ name: 'name', type: 'string' },
{ name: 'image', type: 'string' },
{ name: 'common', type: 'boolean' }
]
};
let resourcesDataAdapter = new jqx.dataAdapter(resourcesSource);
return resourcesDataAdapter;
}
columns: any[] =
[
{ text: 'Backlog', dataField: 'new', maxItems: 5 },
{ text: 'In Progress', dataField: 'work', maxItems: 5 },
{ text: 'Done', dataField: 'done', maxItems: 5, collapseDirection: 'right' }
];
addItemBtnOnClick(): void {
this.myKanban.addItem({ status: 'new', text: 'Task' + this.newItemsCount, tags: 'task' + this.newItemsCount, color: '#5dc3f0' });
this.newItemsCount++;
};
removeItemBtnOnClick(): void {
this.myKanban.removeItem('1645');
this.myRemoveItemBtn.disabled(true)
};
updateItemBtnOnClick(): void {
this.myKanban.updateItem('1161', { status: 'new', text: 'Task', tags: 'task', color: '#5dc3f0', resourceId: 3 });
this.myUpdateItemBtn.disabled(true);
};
}