我正在尝试遵循Android架构原则,并希望您在我的FireStore数据库上实现它们。
目前,我有一个存储库class
,它处理所有带有底层数据的查询。我有一个fragment
,它需要一个set
文档中字段中的键,我想知道检索此数据的最佳方法是什么。在我的前一个问题中,Alex Mamo建议使用接口
与OnCompleteListener
结合使用,因为从Firestore检索数据是异步
。
这种方法似乎是可行的,但我不确定如何将这个接口
中的数据提取到我的片段
的本地变量。如果我希望使用这个数据,我的代码必须在abstract
方法的定义之内吗?
如果要将数据从Firestore获取到我的Fragment
我必须将一个在片段中定义的interface
对象作为参数传递到我的存储库,那么我是否仍然遵循MVVM原则?
这是使用存储库查询Firestore数据库的推荐方法吗?
下面是我的接口
和调用ViewModel
检索数据的方法:
public interface FirestoreCallBack{
void onCallBack(Set<String> keySet);
}
public void testMethod(){
Log.i(TAG,"Inside testMethod.");
mData.getGroups(new FirestoreCallBack() {
//Do I have to define what I want to use the data for here (e.g. display the contents of the set in a textview)?
@Override
public void onCallBack(Set<String> keySet) {
Log.i(TAG,"Inside testMethod of our Fragment and retrieved: " + keySet);
myKeySet = keySet;
Toast.makeText(getContext(),"Retrieved from interface: "+ myKeySet,Toast.LENGTH_SHORT).show();
}
});
}
要对存储库调用的viewmodel
方法:
private FirebaseRepository mRepository;
public void getGroups(TestGroupGetFragment.FirestoreCallBack firestoreCallBack){
Log.i(TAG,"Inside getGroups method of FirebaseUserViewModel");
mRepository.getGroups(firestoreCallBack);
}
最后是查询
我的FireStore数据库的存储库方法:
public void getGroups(final TestGroupGetFragment.FirestoreCallBack firestoreCallBack){
Log.i(TAG,"Attempting to retrieve a user's groups.");
userCollection.document(currentUser.getUid()).get().addOnCompleteListener(
new OnCompleteListener<DocumentSnapshot>() {
@Override
public void onComplete(@NonNull Task<DocumentSnapshot> task) {
if (task.isSuccessful()){
DocumentSnapshot document = task.getResult();
Log.i(TAG,"Success inside the onComplete method of our document .get() and retrieved: "+ document.getData().keySet());
firestoreCallBack.onCallBack(document.getData().keySet());
} else {
Log.d(TAG,"The .get() failed for document: " + currentUser.getUid(), task.getException());
}
}
});
Log.i(TAG, "Added onCompleteListener to our document.");
}
已编辑
public void testMethod(){
Log.i(TAG,"Inside testMethod.");
mData.getGroups(new FirestoreCallBack() {
@Override
public void onCallBack(Set<String> keySet) {
Log.i(TAG,"Inside testMethod of our Fragment and retrieved: " + keySet);
myKeySet = keySet;
someOtherMethod(myKeySet); //I know I can simply pass keySet.
Toast.makeText(getContext(),"GOT THESE FOR YOU: "+ myKeySet,Toast.LENGTH_SHORT).show();
}
});
Log.i(TAG,"In testMethod, retrieving the keySet returned: "+ myKeySet);
}
例如,我只使用livedata
将数据带到recyclerview中,而不是interface
。
首先,我们必须创建firestore查询
。在本例中,我列出了集合中的所有文档。
public class FirestoreLiveData<T> extends LiveData<T> {
public static final String TAG = "debinf firestore";
private ListenerRegistration registration;
private CollectionReference colRef;
private Class clazz;
public FirestoreLiveData(CollectionReference colRef, Class clazz) {
this.colRef = colRef;
this.clazz = clazz;
}
EventListener<QuerySnapshot> eventListener = new EventListener<QuerySnapshot>() {
@Override
public void onEvent(@Nullable QuerySnapshot queryDocumentSnapshots, @Nullable FirebaseFirestoreException e) {
if (e != null) {
Log.i(TAG, "Listen failed.", e);
return;
}
if (queryDocumentSnapshots != null && !queryDocumentSnapshots.isEmpty()) {
List<T> itemList = new ArrayList<>();
for (DocumentSnapshot snapshot : queryDocumentSnapshots.getDocuments()) {
T item = (T) snapshot.toObject(clazz);
itemList.add(item);
Log.i(TAG, "snapshot is "+snapshot.getId());
}
setValue((T) itemList);
}
}
};
@Override
protected void onActive() {
super.onActive();
registration = colRef.addSnapshotListener(eventListener);
}
@Override
protected void onInactive() {
super.onInactive();
if (!hasActiveObservers()) {
registration.remove();
registration = null;
}
}
}
接下来,我们在存储库
中创建一个链接
public class Repository {
public Repository() {
}
public LiveData<List<ProductsObject>> productListening(GroupObject group) {
return new FirestoreLiveData<>(DatabaseRouter.getCollectionRef(group.getGroupCreator()).document(group.getGroupKey()).collection("ProductList"), ProductsObject.class);
}
}
之后,我们创建viewmodel
:
public class MyViewModel extends ViewModel {
Repository repository = new Repository();
public LiveData<List<ProductsObject>> getProductList(GroupObject groupObject) {
return repository.productListening(groupObject);
}
}
最后,在我们的mainactivity
或fragment
中,我们观察到包含在ou FireStore中的数据:
viewModel = ViewModelProviders.of(this).get(MyViewModel.class);
viewModel.getProductList(groupObject).observe(this, new Observer<List<ProductsObject>>() {
@Override
public void onChanged(@Nullable List<ProductsObject> productsObjects) {
//Log.i(TAG, "viewModel: productsObjects is "+productsObjects.get(0).getCode());
adapter.submitList(productsObjects);
}
});
希望有帮助。