使用ng2-dragula。我希望使用新删除的订单更新数据库中每个项目的orderNumber。
dragulaService.dropModel.subscribe((value) => {
var drake = dragulaService.find('bag-orders').drake
var models = drake.models
console.log(models)
})
它返回的新模型订单并不反映行李中的订单。
TL; DR:有没有人使用ng2-dragula在数据库onDrop中实现重新排序?
答案 0 :(得分:9)
如果您希望能够拖动项目(不会消失)并触发dropModel事件:
将[dragula]和[dragulaModel]指令放在父元素中。 (例如,与将其放在<li>
中的当前文档相反,您必须将它们放入<ul>
注入dragularService,并在组件的构造函数中:
调用bag的dragulaService.setOptions(您可以传递一个空字典)。 如果你没有打电话,dropModel
回拨不会被解雇
订阅dropModel
结果:
<!--thecomponent.html-->
<h2>Playlists</h2>
<ul [dragula]='"first-bag"' [dragulaModel]='playlists'>
<li *ngFor="let playlist of playlists">
//Inside the component.ts
playlists: Playlist[];
constructor(private youtubeService: YoutubeService, private dragulaService: DragulaService) {
dragulaService.setOptions('first-bag', {})
dragulaService.dropModel.subscribe((value) => {
this.onDropModel(value);
});
}
private onDropModel(args) {
//Here, this.playlists contains the elements reordered
}
答案 1 :(得分:7)
我使用的是ng2-dragula,对于我注意到的事情,它很奇怪。我遇到的问题是一样的。服务器调用未根据拖动的顺序更新数据对象。
我在ngDoCheck生命周期钩子中使用了if子句来解决问题。
它在控制台中的打印对象中排序。深入挖掘后,可以在网络中发现使用更新服务器调用发送的对象是未更新的对象。
因此,它是因为服务器调用是在数据对象更新之前进行的。
我所做的只是添加一个全局变量,可以跟踪拖动已更新数据对象。
$ hexdump -C dat/newdates.bin
00000000 03 00 00 00 30 35 30 35 31 34 30 31 32 35 31 34 |....050514012514|
00000010 30 37 33 31 31 34 |073114|
00000016
然后,在ngDoCheck生命周期钩子中,
private dropModelUpdated = false;
ngAfterViewInit() {
// this method only changes a variable to execute a method in ngDoCheck
this.dragulaService.drop.subscribe((value) => {
this.dropModelUpdated = true;
});
}
答案 2 :(得分:4)
我终于找到了解决方案。
我有一个水平列表。前两个元素是我想忽略的元素,并且都有ignore
CSS类。并且所有元素都具有item
类。所以标记:
<ul [dragula]='"foo-list"' class="list">
<li class="list ignore">a</li>
<li class="list ignore">b</li>
<li class="list" *ngFor="let item of getList()" [attr.data-id]="item.id">{{ item.name }}</li>
</ul>
然后是TypeScript:
constructor(private dragulaService: DragulaService) {
let dragIndex: number, dropIndex: number;
dragulaService.setOptions('foo-list', {
moves: (el, source, handle, sibling) => !el.classList.contains('ignore'),
accepts: (el, target, source, sibling) => sibling === null || !sibling.classList.contains('ignore'),
direction: 'horizontal'
});
dragulaService.drag.subscribe((value) => {
// HACK
let id = Number(value[1].dataset.id);
if (!!id) {
dragIndex = _.findIndex(this.getList(), {id: id});
}
});
dragulaService.drop.subscribe((value:any[]) => {
// HACK
let elementNode = value[2].querySelectorAll('.item:not(.ignore)').item(dragIndex);
if (elementNode) {
let id = Number(elementNode.dataset.id);
if (!!id) {
dropIndex = _.findIndex(this.getList(), {id: id});
}
}
if (value[2] === value[3]) { // target === source
if (dragIndex >= 0 && dropIndex >= 0 && dragIndex !== dropIndex) {
let temp: any = this.list[dragIndex];
this.list[dragIndex] = this.list[dropIndex];
this.list[dropIndex] = temp;
}
}
// Custom code here
});
}
getList(): any[] {
return this.list;
}
答案 3 :(得分:2)
我发现Marçal的答案非常有帮助,甚至还扩展了一点,以便在我的数据库中发布更新,以更新列表中每个项目(在我的案例中的联系人)的序列值:
HTML(容器是联系人的组织。在我的情况下,联系人不能在组织之间移动):
<div class="container" [dragula]="'org-' + org.id" [dragulaModel]="org.contacts">
<nested-contact *ngFor="let contact of org.contacts" [user]="contact" class="contact" [attr.data-id]="contact.id"></nested-contact>
</div>
JS(在我的联系服务中,一个PUT函数,用于更新与我的每个联系人关联的存储序列值,以便他们的命令保持不变):
contactsIdPut (id, body) {
let url = '/api/v3/contacts/' + id + '?access_token=' + localStorage.getItem('access_token');
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
return this.http.put(url, body, options)
.map((response: Response) => {
return response.json();
});
}
JS(在我的组织视图组件中,分别概述了拖放时要采取的操作):
export class nestedOrganizationComponent {
orgs = [];
thisOrg: any;
thisContact: any;
constructor (private _contactService: ContactService, private dragulaService: DragulaService) {
this._contactService = _contactService;
let dragIndex: any;
let dropIndex: any;
let elementNode: any;
dragulaService.drag.subscribe((value) => {
let id = Number(value[1].dataset.id);
let orgId: Number = value[0].split('-')[1];
elementNode = value[2].querySelectorAll('.contact:not(.ignore)').item(dragIndex);
if (!!id) {
// this renderedOrgs is just an array to hold the org options that render in this particular view
this._organizationService.renderedOrgs.push(this.org);
this.thisOrg = this._organizationService.renderedOrgs.filter(org => { return org.id == orgId; })[0];
this.thisContact = this.thisOrg.contacts.filter(contact => { return contact.id == id; })[0];
let arr = this.thisOrg.contacts.map(x => { return x.id; });
dragIndex = arr.indexOf(id);
}
});
dragulaService.drop.subscribe((value: any[]) => {
if (elementNode) {
let id = Number(elementNode.dataset.id);
if (!!id) {
let arr = this.thisOrg.contacts.map(x => { return x.id; });
dropIndex = arr.indexOf(id);
}
}
if (value[2] === value[3]) { // target container === source container
if (dragIndex >= 0 && dropIndex >= 0 && dragIndex !== dropIndex) {
this.thisOrg.contacts.forEach((contact, index) => {
contact.sequence = index;
this.updateSequence(contact.id, index);
});
}
}
});
}
updateSequence (id: Number, index: Number) {
let contactBody = {
avatar: {
sequence: index,
}
};
return this._contactService.contactsIdPut(id, contactBody)
.subscribe(
(data: any) => {
// nothing is needed, the same view can apply because the contact has already been moved.
},
(error: any) => {
console.error(error);
}
);
}
}
希望这可以让我在今天与其他人相似的地方更清楚地了解此事。