11

我目前有一个项目,其中包含一个列表MyItem,并使用 Firebase/LiveData。它分为组,每个组都有项目。

如果发生以下任何情况,我希望能够更新此列表:

  1. 更新项目(通过 Firebase 在后端)
  2. 更改了过滤器(Firebase 上每个用户的单独表格)
  3. 已为项目添加书签(Firebase 上每个用户的单独表格)

要获取内容列表,我有一个类似这样的函数来返回 LiveData,该函数将在更新项目时更新(#1)。

数据库

getList(id: String): LiveData<List<MyItem>> {
    val data = MutableLiveData<List<MyItem>>()

    firestore
        .collection("groups")
        .document(id)
        .collection("items")
            .addSnapshotListener { snapshot, exception ->
                val items = snapshot?.toObjects(MyItem::class.java) ?: emptyList()

                // filter items 

                data.postValue(items)
        }

    return data
}

在我的 ViewModel 中,我有处理这种情况的逻辑。

视图模型

private val result = MediatorLiveData<Resource<List<MyItem>>>()

private var source: LiveData<List<MyItem>>? = null
val contents: LiveData<Resource<List<MyItem>>>
    get() {
        val group = database.group

        // if the selected group is changed.
        return Transformations.switchMap(group) { id ->
            // showing loading indicator
            result.value = Resource.loading(null)

            if (id != null) {
                // only 1 source for the current group
                source?.let {
                    result.removeSource(it)
                }

                source = database.getList(id).also {
                    result.addSource(it) {
                        result.value = Resource.success(it)
                    }
                }

                // how to add in source of filter changes?

            } else {
                result.value = Resource.init(null)
            }
            return@switchMap result
        }
    }

逻辑很复杂,很难理解。有没有更好的方法来构建它来处理多个不同的变化?存储用户当前过滤器的最佳方式是什么?

谢谢。

4

2 回答 2

3

我不知道我是否正确地回答了您的问题,但如果您有一个适用于一个列表(类似于MyItemList)的视图,并且该列表在多种情况下更新或更改,您必须使用MediatorLiveData.

我的意思是你必须有三个LiveData,每个负责一种情况,一个 MediatorLiveData 通知它们是否每个都发生了变化。

见下文:

数据库

fun getListFromServer(id: String): LiveData<List<MyItem>> {
    val dataFromServer = MutableLiveData<List<MyItem>>()

    firestore
      .collection("groups")
      .document(id)
      .collection("items")
          .addSnapshotListener { snapshot, exception ->
              val items = snapshot?.toObjects(MyItem::class.java) ?: emptyList()
              dataFromServer.postValue(items)
      }

    return dataFromServer
}

fun getFilteredData(id: String): LiveData<FilterData> {
    return DAO.user.getFilteredData(id)
}

fun getBookmarkedList(id: String): LiveData<BookmarkData> {
    return DAO.user.getBookmarkedData(id)
}

并且在viewModel您有一个MediatorLiveData观察这些liveDatas 直到是否有任何数据已更改通知视图。

视图模型

private val result = MediatorLiveData<<List<MyItem>>()

fun observeOnData(id: String, owner: LifeCycleOwner, observer: Observer<List<MyItem>>) {
   result.observe(owner, observer);

   result.addSource(Database.getListFromServer(id), MyItemList -> {
        if(MyItemList != null)
            result.setValue(MyItemList)
   });
   result.addSource(Database.getFilteredData(id), filterData -> {
        if(filterData != null) {
            val myItemList = result.getValue()
            if (myItemList == null) return

            //here add logic for update myItemList depend On filterData

            result.setValue(myItemList)
        }
   });
   result.addSource(Database.getBookmarkedList(id), bookmarkData -> {
        if(MyItemList != null) {
            val myItemList = result.getValue()
            if (myItemList == null) return

            //here add logic for update myItemList depend On bookmarkData

            result.setValue(myItemList)
        }
   });

}
于 2019-04-16T04:21:37.183 回答
1

您的实现contents包括对外部变量的多个引用,这使得很难跟踪和跟踪状态。我只是将参考资料尽可能地保留在本地,并相信switchMap(liveData)可以做适当的工作。以下代码应该与您的代码相同:

val contents = Transformations.switchMap(database.group) { id ->
    val data = MediatorLiveData<Resource<List<MyItem>>()

    if (id == null) {
        data.value = Resource.init(null)
    } else {
        data.value = Resource.loading(null)
        data.addSource(database.getList(id)) {
            data.value = Resource.success(it)
        }
    }

    return liveData
}

关于getList(id)您可能还想exception妥善处理。

于 2019-04-21T23:28:48.293 回答