Angular Dragula - 不在Drop上更新Firebase

时间:2018-05-02 21:57:00

标签: angular firebase angular5 dragula ng2-dragula

我有一个项目的AngularFireList。

我将项目拆分成数组并根据每个项目的位置值(对应于div的ID)使用这些项目为一个拖曳袋填充几个div。

在将一个项目放入另一个div时,拖动项目的位置值将更新为新div的id。所有这些都按预期工作,但项目位置值的更新未保存到Firebase,因此当我检查项目时,我会看到更新的值,但如果我刷新页面则没有保存任何内容。

关于我出错的地方的任何指示都将不胜感激!

HTML:

<div 
    [dragula]='"bag-equipment"' 
    [dragulaModel]="equipmentArmor"
    id="armor"
>
    <mat-card *ngFor="let item of equipmentArmor">
        {{ item.name }}
    </mat-card>
</div>

<div 
    [dragula]='"bag-equipment"'
    [dragulaModel]="equipmentBagOfHolding"
    id="bagOfHolding"
>
    <mat-card *ngFor="let item of equipmentBagOfHolding">
        {{ item.name }} 
    </mat-card>
</div>

TS:

    ngOnInit() {

    this.dragula.drop.subscribe(value => {

        // Get location item is dragged to
        let destination = value[2]['id'];

        // Get item's name and clean it up
        let itemName = value[1]['innerText'];
        itemName = value[1]['innerText'].trim();
        itemName = itemName.slice(0, -5);

        // Update the FireList's itemList
        this.itemList.find(item => item.name == itemName).location = destination;

    });

    let data = this.itemService.getData();

    data.snapshotChanges().subscribe(item => {

        this.itemList = [];
        item.forEach(element => {
            let json = element.payload.toJSON();
            json["$key"] = element.key;
            this.itemList.push(json as Item);
        });

        this.itemList = this.itemList.filter(item => item.equippable == true);
        this.equipmentArmor = this.itemList.filter(item => item.location == 'armor');
        this.equipmentBagOfHolding = this.itemList.filter(item => item.location == 'bagOfHolding');
        this.equipmentMisc = this.itemList.filter(item => item.location == 'misc');
        this.equipmentWeapons = this.itemList.filter(item => item.location == 'weapons');

    });
}

2 个答案:

答案 0 :(得分:1)

我猜想,equipmentBagOfHolding / this.itemList与从itemService.getData()返回的数组不是同一个数组。由于您的UI与这些数组相关联,因此当它们更新时会更新,但是来自itemService.getData()的数组不是。

答案 1 :(得分:0)

所以我终于意识到更新模型并没有将更新推回到firebase;我已经习惯了Angular插值,我完全忘记了Firebase不会自动更新。所以我只是将更新的对象推回去,一切都按预期工作。只是表明99%的时间是最愚蠢的事情。

HTML片段:

this.itemList.find(item => item.name == itemName).location = destination;
this.itemService.updateItem(this.itemList.find(item => item.name == itemName));