mirror of https://github.com/AMT-Cheif/drift.git
73 lines
1.9 KiB
Dart
73 lines
1.9 KiB
Dart
import 'package:sally_flutter/sally_flutter.dart';
|
|
|
|
part 'database.g.dart';
|
|
|
|
@DataClassName('TodoEntry')
|
|
class Todos extends Table {
|
|
IntColumn get id => integer().autoIncrement()();
|
|
|
|
TextColumn get title => text().withLength(min: 4, max: 16).nullable()();
|
|
|
|
TextColumn get content => text()();
|
|
|
|
DateTimeColumn get targetDate => dateTime().nullable()();
|
|
|
|
IntColumn get category => integer().nullable()();
|
|
}
|
|
|
|
@DataClassName('Category')
|
|
class Categories extends Table {
|
|
IntColumn get id => integer().autoIncrement()();
|
|
|
|
TextColumn get description => text().named('desc')();
|
|
}
|
|
|
|
@UseSally(tables: [Todos, Categories])
|
|
class Database extends _$Database {
|
|
Database()
|
|
: super(FlutterQueryExecutor.inDatabaseFolder(
|
|
path: 'db.sqlite', logStatements: true));
|
|
|
|
@override
|
|
int get schemaVersion => 1;
|
|
|
|
@override
|
|
MigrationStrategy get migration => MigrationStrategy(
|
|
onCreate: (Migrator m) {
|
|
return m.createAllTables();
|
|
},
|
|
onUpgrade: (Migrator m, int from, int to) async {
|
|
if (from == 1) {
|
|
await m.addColumn(todos, todos.targetDate);
|
|
}
|
|
}
|
|
);
|
|
|
|
Stream<List<Category>> get definedCategories => select(categories).watch();
|
|
|
|
Stream<List<TodoEntry>> todosInCategories(List<Category> categories) {
|
|
final ids = categories.map((c) => c.id);
|
|
|
|
return (select(todos)..where((t) => isIn(t.category, ids))).watch();
|
|
}
|
|
|
|
Future<void> deleteOldEntries() {
|
|
return (delete(todos)..where((t) => year(t.targetDate).equals(2017))).go();
|
|
}
|
|
|
|
Stream<List<TodoEntry>> watchEntriesInCategory(Category c) {
|
|
return (select(todos)..where((t) => t.category.equals(c.id))).watch();
|
|
}
|
|
|
|
Stream<List<TodoEntry>> get todosWithoutCategories =>
|
|
(select(todos)..where((t) => isNull(t.category))).watch();
|
|
|
|
Future test() {
|
|
(delete(todos)..limit(10)).go();
|
|
}
|
|
|
|
Future addTodoEntry(TodoEntry entry) {
|
|
return into(todos).insert(entry);
|
|
}
|
|
}
|