1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-07 15:18:47 +01:00

212 lines
6.2 KiB
Dart
Raw Normal View History

2018-04-18 20:38:28 +08:00
import 'package:flutter/material.dart';
2019-01-22 23:39:44 +08:00
import 'package:flutter/cupertino.dart';
2019-09-15 17:36:09 +08:00
import 'package:git_touch/models/code.dart';
2019-09-27 20:52:38 +08:00
import 'package:git_touch/models/auth.dart';
import 'package:git_touch/models/theme.dart';
2019-09-13 17:45:09 +08:00
import 'package:git_touch/screens/issues.dart';
2019-09-23 18:28:33 +08:00
import 'package:git_touch/screens/repository.dart';
import 'package:git_touch/screens/repositories.dart';
2019-09-13 17:00:45 +08:00
import 'package:git_touch/screens/user.dart';
2019-05-12 15:14:28 +08:00
import 'package:primer/primer.dart';
2019-09-02 20:40:20 +08:00
import 'package:provider/provider.dart';
import 'package:git_touch/models/notification.dart';
2019-02-07 14:35:19 +08:00
import 'screens/news.dart';
import 'screens/notifications.dart';
import 'screens/search.dart';
import 'screens/login.dart';
import 'screens/issue.dart';
2019-03-10 23:34:34 +08:00
import 'screens/organization.dart';
2019-03-02 18:17:46 +08:00
import 'screens/trending.dart';
import 'utils/utils.dart';
2018-04-18 20:38:28 +08:00
class Home extends StatefulWidget {
@override
2019-02-07 14:35:19 +08:00
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
int active = 0;
2019-02-08 23:20:28 +08:00
// String login;
@override
void initState() {
super.initState();
nextTick(() {
// FIXME:
Provider.of<ThemeModel>(context).init();
2019-09-27 20:52:38 +08:00
Provider.of<AuthModel>(context).init();
2019-09-15 17:36:09 +08:00
Provider.of<CodeModel>(context).init();
});
}
2019-09-15 01:43:41 +08:00
Widget _buildNotificationIcon(BuildContext context, bool isActive) {
final iconData = isActive ? Icons.notifications : Icons.notifications_none;
2019-09-02 20:40:20 +08:00
int count = Provider.of<NotificationModel>(context).count;
2019-01-31 22:07:52 +08:00
if (count == 0) {
2019-09-15 01:43:41 +08:00
return Icon(iconData);
2019-01-31 22:07:52 +08:00
}
2019-02-06 21:35:52 +08:00
// String text = count > 99 ? '99+' : count.toString();
return Stack(
children: <Widget>[
2019-09-15 01:43:41 +08:00
Icon(iconData),
Positioned(
2019-09-15 01:43:41 +08:00
right: -2,
top: -2,
2019-09-14 17:19:33 +08:00
child: Icon(Octicons.primitive_dot,
2019-09-15 01:43:41 +08:00
color: PrimerColors.red500, size: 14))
],
);
2019-01-31 22:07:52 +08:00
}
List<BottomNavigationBarItem> _buildNavigationItems() {
return [
BottomNavigationBarItem(
icon: Icon(Icons.rss_feed),
title: Text('News'),
),
BottomNavigationBarItem(
2019-09-15 01:43:41 +08:00
icon: _buildNotificationIcon(context, false),
activeIcon: _buildNotificationIcon(context, true),
title: Text('Notification'),
),
2019-03-02 18:17:46 +08:00
BottomNavigationBarItem(
icon: Icon(Icons.trending_up),
title: Text('Trending'),
),
2019-02-06 13:06:11 +08:00
BottomNavigationBarItem(
icon: Icon(Icons.search),
title: Text('Search'),
),
BottomNavigationBarItem(
icon: Icon(Icons.person_outline),
2019-09-15 01:00:31 +08:00
activeIcon: Icon(Icons.person),
title: Text('Me'),
),
];
}
_buildScreen(int index) {
2019-09-13 17:45:09 +08:00
// return IssuesScreen(owner: 'flutter', name: 'flutter', isPullRequest: true);
// return IssueScreen(number: 29, owner: 'reactjs', name: 'rfcs');
2019-05-12 15:14:28 +08:00
// return IssueScreen(
// number: 68, owner: 'reactjs', name: 'rfcs', isPullRequest: true);
2019-02-09 13:36:15 +08:00
// return ReposScreen('pd4d10');
2019-03-10 23:34:34 +08:00
// return OrganizationScreen('flutter');
2019-03-02 18:17:46 +08:00
// return TrendingScreen();
2019-05-12 15:47:36 +08:00
// return RepoScreen('flutter', 'flutter');
2019-05-12 15:14:28 +08:00
// return Image.asset('images/spinner.webp', width: 32, height: 32);
switch (index) {
case 0:
2019-02-05 20:57:05 +08:00
return NewsScreen();
2019-02-06 13:06:11 +08:00
case 1:
return NotificationScreen();
2019-01-31 15:23:52 +08:00
case 2:
2019-03-02 18:17:46 +08:00
return TrendingScreen();
case 3:
2019-03-02 18:17:46 +08:00
return SearchScreen();
case 4:
2019-09-13 17:00:45 +08:00
return UserScreen(
2019-09-27 20:52:38 +08:00
Provider.of<AuthModel>(context).activeAccount.login,
2019-09-13 17:00:45 +08:00
isMe: true,
);
}
}
@override
Widget build(BuildContext context) {
2019-09-27 20:52:38 +08:00
var settings = Provider.of<AuthModel>(context);
var themData = ThemeData(
// primaryColor: HSLColor.fromColor(Palette.primary)
// .withLightness(0.3)
// .toColor(),
// primaryColor: Color(0xff333333),
2019-05-12 15:14:28 +08:00
primaryColor: PrimerColors.gray900,
accentColor: PrimerColors.gray900,
);
2019-02-07 14:35:19 +08:00
// TODO:
if (!settings.ready || !Provider.of<ThemeModel>(context).ready) {
return MaterialApp(theme: themData, home: Scaffold(body: Text('a')));
2019-02-07 14:35:19 +08:00
}
2019-02-08 23:20:28 +08:00
// print(settings.activeLogin);
2019-09-26 22:14:14 +08:00
if (settings.activeAccount == null) {
return MaterialApp(theme: themData, home: LoginScreen());
2019-02-07 14:35:19 +08:00
}
switch (Provider.of<ThemeModel>(context).theme) {
2019-09-19 21:10:50 +08:00
case AppThemeType.cupertino:
return CupertinoApp(
home: CupertinoTheme(
2019-03-10 23:34:34 +08:00
data: CupertinoThemeData(
2019-09-05 17:58:14 +08:00
primaryColor: PrimerColors.blue500,
2019-03-10 23:34:34 +08:00
),
child: CupertinoTabScaffold(
tabBar: CupertinoTabBar(items: _buildNavigationItems()),
tabBuilder: (context, index) {
return CupertinoTabView(builder: (context) {
return _buildScreen(index);
});
},
),
),
);
default:
return MaterialApp(
theme: themData,
home: Scaffold(
body: _buildScreen(active),
bottomNavigationBar: BottomNavigationBar(
2019-09-15 01:00:31 +08:00
selectedItemColor: PrimerColors.blue500,
// unselectedItemColor: PrimerColors.gray500,
items: _buildNavigationItems(),
currentIndex: active,
type: BottomNavigationBarType.fixed,
onTap: (int index) {
setState(() {
active = index;
});
},
),
),
);
}
}
}
class App extends StatelessWidget {
@override
2019-09-02 20:40:20 +08:00
Widget build(BuildContext context) {
return MultiProvider(
providers: [
ChangeNotifierProvider(builder: (context) => NotificationModel()),
ChangeNotifierProvider(builder: (context) => ThemeModel()),
2019-09-27 20:52:38 +08:00
ChangeNotifierProvider(builder: (context) => AuthModel()),
2019-09-15 17:36:09 +08:00
ChangeNotifierProvider(builder: (context) => CodeModel()),
2019-09-02 20:40:20 +08:00
],
2019-09-08 20:07:35 +08:00
child: Home(),
);
}
}
void main() async {
2019-02-07 14:35:19 +08:00
// Platform messages may fail, so we use a try/catch PlatformException.
// try {
// String initialLink = await getInitialLink();
// print(initialLink);
// } on PlatformException {
// print('test');
// }
// DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
// AndroidDeviceInfo androidInfo = await deviceInfo.androidInfo;
// print('Running on ${androidInfo.model}'); // e.g. "Moto G (4)"
// IosDeviceInfo iosInfo = await deviceInfo.iosInfo;
// print('Running on ${iosInfo.utsname.machine}'); // e.g. "iPod7,1"
2019-02-07 14:35:19 +08:00
runApp(App());
}