Created
March 13, 2019 13:08
-
-
Save slightfoot/bfaaf6338d85e27b2acfe1b265ee5f27 to your computer and use it in GitHub Desktop.
Basic Reorderable list from Firestore Documents using only inbuilt Widgets. 13th March 2019
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:cloud_firestore/cloud_firestore.dart'; | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
debugShowCheckedModeBanner: false, | |
theme: ThemeData( | |
primaryColor: Colors.indigo, | |
accentColor: Colors.pinkAccent, | |
), | |
home: ExampleScreen(), | |
), | |
); | |
} | |
class ExampleScreen extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Material( | |
child: SafeArea( | |
child: ReorderableFirebaseList( | |
collection: Firestore.instance.collection('items'), | |
indexKey: 'pos', | |
itemBuilder: (BuildContext context, int index, DocumentSnapshot doc) { | |
return ListTile( | |
key: Key(doc.documentID), | |
title: Text(doc.data['title']), | |
); | |
}, | |
), | |
), | |
); | |
} | |
} | |
typedef ReorderableWidgetBuilder = Widget Function(BuildContext context, int index, DocumentSnapshot doc); | |
class ReorderableFirebaseList extends StatefulWidget { | |
const ReorderableFirebaseList({ | |
Key key, | |
@required this.collection, | |
@required this.indexKey, | |
@required this.itemBuilder, | |
this.descending = false, | |
}) : super(key: key); | |
final CollectionReference collection; | |
final String indexKey; | |
final bool descending; | |
final ReorderableWidgetBuilder itemBuilder; | |
@override | |
_ReorderableFirebaseListState createState() => _ReorderableFirebaseListState(); | |
} | |
class _ReorderableFirebaseListState extends State<ReorderableFirebaseList> { | |
List<DocumentSnapshot> _docs; | |
Future _saving; | |
@override | |
Widget build(BuildContext context) { | |
return FutureBuilder( | |
future: _saving, | |
builder: (BuildContext context, AsyncSnapshot snapshot) { | |
if (snapshot.connectionState == ConnectionState.none || snapshot.connectionState == ConnectionState.done) { | |
return StreamBuilder<QuerySnapshot>( | |
stream: widget.collection.orderBy(widget.indexKey, descending: widget.descending).snapshots(), | |
builder: (BuildContext context, AsyncSnapshot<QuerySnapshot> snapshot) { | |
if (snapshot.hasData) { | |
_docs = snapshot.data.documents; | |
return ReorderableListView( | |
onReorder: _onReorder, | |
children: List.generate(_docs.length, (int index) { | |
return widget.itemBuilder(context, index, _docs[index]); | |
}), | |
); | |
} else { | |
return const Center( | |
child: CircularProgressIndicator(), | |
); | |
} | |
}, | |
); | |
} else { | |
return const Center( | |
child: CircularProgressIndicator(), | |
); | |
} | |
}, | |
); | |
} | |
void _onReorder(int oldIndex, int newIndex) { | |
if (oldIndex < newIndex) newIndex -= 1; | |
_docs.insert(newIndex, _docs.removeAt(oldIndex)); | |
final futures = <Future>[]; | |
for (int pos = 0; pos < _docs.length; pos++) { | |
futures.add(_docs[pos].reference.updateData({widget.indexKey: pos})); | |
} | |
setState(() { | |
_saving = Future.wait(futures); | |
}); | |
} | |
} |
Thanks a lot, you have saved me a lot of days. God bless ❤️. I just had to rewrite it to null safety and update firestore functions but still thanks alot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example needs access to a Google Firebase - Cloud Firestore
The data collection looks something like: