Jisho-Study-Tool/lib/main.dart

165 lines
4.2 KiB
Dart
Raw Normal View History

2020-06-28 00:39:45 +02:00
import 'package:flutter/material.dart';
2020-07-14 14:33:21 +02:00
import 'package:flutter_bloc/flutter_bloc.dart';
2021-08-03 22:02:42 +02:00
import 'package:jisho_study_tool/view/screens/loading.dart';
2021-03-03 12:47:35 +01:00
import 'package:mdi/mdi.dart';
2021-07-17 16:11:17 +02:00
import 'package:path_provider/path_provider.dart';
import 'package:path/path.dart';
2021-08-03 22:02:42 +02:00
2021-07-17 16:11:17 +02:00
import 'package:jisho_study_tool/objectbox.g.dart';
2021-03-03 12:47:35 +01:00
2021-07-17 16:11:17 +02:00
import 'package:jisho_study_tool/bloc/database/database_bloc.dart';
2020-07-14 14:33:21 +02:00
import 'package:jisho_study_tool/bloc/kanji/kanji_bloc.dart';
2021-07-26 21:39:17 +02:00
import 'package:jisho_study_tool/bloc/search/search_bloc.dart';
2021-08-03 22:02:42 +02:00
import 'package:jisho_study_tool/bloc/navigation/navigation_bloc.dart';
2021-07-17 16:11:17 +02:00
2021-07-17 12:19:03 +02:00
import 'package:jisho_study_tool/view/screens/kanji/view.dart';
2021-03-02 22:26:59 +01:00
import 'package:jisho_study_tool/view/screens/history.dart';
2021-07-17 12:19:03 +02:00
import 'package:jisho_study_tool/view/screens/search/view.dart';
2020-06-28 00:39:45 +02:00
2020-07-14 14:33:21 +02:00
2020-06-28 00:39:45 +02:00
void main() => runApp(MyApp());
2021-07-17 16:11:17 +02:00
DatabaseBloc _databaseBloc = DatabaseBloc();
2021-08-03 22:02:42 +02:00
class MyApp extends StatefulWidget {
2020-06-28 00:39:45 +02:00
@override
2021-08-03 22:02:42 +02:00
_MyAppState createState() => _MyAppState();
2020-06-28 00:39:45 +02:00
}
2021-08-03 22:02:42 +02:00
class _MyAppState extends State<MyApp> {
2021-07-26 21:39:17 +02:00
late final Store _store;
2021-07-17 16:11:17 +02:00
@override
void initState() {
super.initState();
2021-08-03 22:02:42 +02:00
getApplicationDocumentsDirectory().then((dir) {
_store = Store(
getObjectBoxModel(),
directory: join(dir.path, 'objectbox'),
);
2021-07-17 16:11:17 +02:00
2021-08-03 22:02:42 +02:00
_databaseBloc.add(ConnectedToDatabase(_store));
});
2021-07-17 16:11:17 +02:00
}
@override
void dispose() {
_store.close();
_databaseBloc.add(DisconnectedFromDatabase());
super.dispose();
}
2020-06-28 00:39:45 +02:00
@override
2020-07-09 20:59:00 +02:00
Widget build(BuildContext context) {
2021-08-03 22:02:42 +02:00
return MaterialApp(
title: 'Jisho Study Tool',
2021-07-17 16:11:17 +02:00
2021-08-03 22:02:42 +02:00
// TODO: Add color theme
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MultiBlocProvider(
providers: [
BlocProvider(create: (context) => SearchBloc(_databaseBloc)),
BlocProvider(create: (context) => KanjiBloc(_databaseBloc)),
BlocProvider(create: (context) => _databaseBloc),
BlocProvider(create: (context) => NavigationBloc()),
],
child:
BlocBuilder<DatabaseBloc, DatabaseState>(builder: (context, state) {
if (state is DatabaseDisconnected)
return Container(
child: LoadingScreen(),
decoration: BoxDecoration(color: Colors.white),
);
return Home();
}),
),
);
}
}
class Home extends StatelessWidget {
@override
Widget build(BuildContext context) {
return BlocBuilder<NavigationBloc, NavigationState>(
builder: (context, state) {
int selectedPage = (state as NavigationPage).pageNum;
2021-07-17 16:11:17 +02:00
return Scaffold(
appBar: AppBar(
title: pages[selectedPage].titleBar,
centerTitle: true,
),
body: pages[selectedPage].content,
bottomNavigationBar: BottomNavigationBar(
currentIndex: selectedPage,
2021-08-03 22:02:42 +02:00
onTap: (int index) =>
BlocProvider.of<NavigationBloc>(context).add(ChangePage(index)),
items: pages.map((p) => p.item).toList(),
2021-07-17 16:11:17 +02:00
showSelectedLabels: false,
showUnselectedLabels: false,
unselectedItemColor: Colors.blue,
selectedItemColor: Colors.green,
),
);
},
2020-07-09 20:59:00 +02:00
);
}
2020-06-30 22:51:32 +02:00
}
2021-03-03 00:24:25 +01:00
class _Page {
2021-08-03 22:02:42 +02:00
final Widget content;
final Widget titleBar;
final BottomNavigationBarItem item;
2020-06-30 22:51:32 +02:00
2021-08-03 22:02:42 +02:00
const _Page({
2021-07-26 21:39:17 +02:00
required this.content,
required this.titleBar,
2021-08-03 22:02:42 +02:00
required this.item,
2020-07-14 14:33:21 +02:00
});
2020-06-30 22:51:32 +02:00
}
2021-03-03 00:24:25 +01:00
final List<_Page> pages = [
2021-03-05 22:39:28 +01:00
_Page(
content: SearchView(),
titleBar: Text('Search'),
2021-08-03 22:02:42 +02:00
item: BottomNavigationBarItem(
label: 'Search',
icon: Icon(Icons.search),
),
2021-03-05 22:39:28 +01:00
),
2021-03-03 00:24:25 +01:00
_Page(
2020-07-09 22:17:10 +02:00
content: KanjiView(),
2020-07-14 12:52:48 +02:00
titleBar: KanjiViewBar(),
2021-08-03 22:02:42 +02:00
item: BottomNavigationBarItem(
label: 'Kanji', icon: Icon(Mdi.ideogramCjk, size: 30)),
2020-07-09 20:59:00 +02:00
),
2021-03-03 00:24:25 +01:00
_Page(
2020-07-13 23:41:31 +02:00
content: HistoryView(),
2020-07-14 12:52:48 +02:00
titleBar: Text("History"),
2021-08-03 22:02:42 +02:00
item: BottomNavigationBarItem(
label: 'History',
icon: Icon(Icons.history),
),
2020-06-30 22:51:32 +02:00
),
2021-03-03 00:24:25 +01:00
_Page(
2020-07-09 20:59:00 +02:00
content: Container(),
2021-08-03 22:02:42 +02:00
titleBar: Text("Saved"),
item: BottomNavigationBarItem(
label: 'Saved',
icon: Icon(Icons.bookmark),
),
2020-06-30 22:51:32 +02:00
),
2021-03-03 00:24:25 +01:00
_Page(
2020-07-09 20:59:00 +02:00
content: Container(),
2020-07-14 12:52:48 +02:00
titleBar: Text("Settings"),
2021-08-03 22:02:42 +02:00
item: BottomNavigationBarItem(
label: 'Settings',
icon: Icon(Icons.settings),
),
2020-06-30 22:51:32 +02:00
),
2020-07-09 20:59:00 +02:00
];