213 lines
6.2 KiB
Dart
213 lines
6.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:git_touch/models/auth.dart';
|
|
import 'package:git_touch/models/notification.dart';
|
|
import 'package:git_touch/models/theme.dart';
|
|
import 'package:git_touch/screens/bb_explore.dart';
|
|
import 'package:git_touch/screens/bb_teams.dart';
|
|
import 'package:git_touch/screens/bb_user.dart';
|
|
import 'package:git_touch/screens/gt_orgs.dart';
|
|
import 'package:git_touch/screens/gt_user.dart';
|
|
import 'package:git_touch/screens/gl_explore.dart';
|
|
import 'package:git_touch/screens/gl_groups.dart';
|
|
import 'package:git_touch/screens/gl_user.dart';
|
|
import 'package:git_touch/screens/login.dart';
|
|
import 'package:git_touch/screens/gh_notification.dart';
|
|
import 'package:git_touch/screens/gh_user.dart';
|
|
import 'package:git_touch/utils/utils.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:git_touch/screens/gh_news.dart';
|
|
import 'package:git_touch/screens/gh_search.dart';
|
|
import 'package:git_touch/screens/gh_trending.dart';
|
|
|
|
class Home extends StatefulWidget {
|
|
@override
|
|
_HomeState createState() => _HomeState();
|
|
}
|
|
|
|
class _HomeState extends State<Home> {
|
|
int active = 0;
|
|
|
|
_buildScreen(int index) {
|
|
// return GlProjectScreen(32221);
|
|
// return IssuesScreen('flutter', 'flutter', isPullRequest: true);
|
|
// return IssueScreen('reactjs', 'rfcs', 29);
|
|
// return IssueScreen('reactjs', 'rfcs', 68, isPullRequest: true);
|
|
// return Image.asset('images/spinner.webp', width: 32, height: 32);
|
|
final auth = Provider.of<AuthModel>(context);
|
|
|
|
switch (auth.activeAccount.platform) {
|
|
case PlatformType.github:
|
|
switch (index) {
|
|
case 0:
|
|
return GhNewsScreen();
|
|
case 1:
|
|
return GhNotificationScreen();
|
|
case 2:
|
|
return GhTrendingScreen();
|
|
case 3:
|
|
return GhSearchScreen();
|
|
case 4:
|
|
return GhUserScreen(null);
|
|
}
|
|
break;
|
|
case PlatformType.gitlab:
|
|
switch (index) {
|
|
case 0:
|
|
return GlExploreScreen();
|
|
case 1:
|
|
return GlGroupsScreenn();
|
|
case 2:
|
|
return GlUserScreen(null);
|
|
}
|
|
break;
|
|
case PlatformType.bitbucket:
|
|
switch (index) {
|
|
case 0:
|
|
return BbExploreScreen();
|
|
case 1:
|
|
return BbTeamsScreen();
|
|
case 2:
|
|
return BbUserScreen(null);
|
|
}
|
|
break;
|
|
case PlatformType.gitea:
|
|
switch (index) {
|
|
case 0:
|
|
return GtOrgsScreen();
|
|
case 1:
|
|
return GtUserScreen(null);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
Widget _buildNotificationIcon(BuildContext context, bool isActive) {
|
|
final theme = Provider.of<ThemeModel>(context);
|
|
final iconData = Icons.notifications;
|
|
int count = Provider.of<NotificationModel>(context).count;
|
|
if (count == 0) {
|
|
return Icon(iconData);
|
|
}
|
|
|
|
// String text = count > 99 ? '99+' : count.toString();
|
|
return Stack(
|
|
children: <Widget>[
|
|
Icon(iconData),
|
|
Positioned(
|
|
right: -2,
|
|
top: -2,
|
|
child: Icon(Octicons.primitive_dot,
|
|
color: theme.palette.primary, size: 14))
|
|
],
|
|
);
|
|
}
|
|
|
|
List<BottomNavigationBarItem> get _navigationItems {
|
|
switch (Provider.of<AuthModel>(context).activeAccount.platform) {
|
|
case PlatformType.github:
|
|
return [
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.rss_feed),
|
|
title: Text('News'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: _buildNotificationIcon(context, false),
|
|
activeIcon: _buildNotificationIcon(context, true),
|
|
title: Text('Notification'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.whatshot),
|
|
title: Text('Trending'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.search),
|
|
title: Text('Search'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.person),
|
|
activeIcon: Icon(Icons.person),
|
|
title: Text('Me'),
|
|
),
|
|
];
|
|
case PlatformType.gitlab:
|
|
return [
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.explore),
|
|
title: Text('Explore'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.group),
|
|
title: Text('Groups'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.person),
|
|
title: Text('Me'),
|
|
),
|
|
];
|
|
case PlatformType.bitbucket:
|
|
return [
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.explore),
|
|
title: Text('Explore'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.group),
|
|
title: Text('Teams'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.person),
|
|
title: Text('Me'),
|
|
),
|
|
];
|
|
case PlatformType.gitea:
|
|
return [
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.group),
|
|
title: Text('Organizations'),
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.person),
|
|
title: Text('Me'),
|
|
),
|
|
];
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Provider.of<ThemeModel>(context);
|
|
final auth = Provider.of<AuthModel>(context);
|
|
if (auth.activeAccount == null) {
|
|
return LoginScreen();
|
|
}
|
|
|
|
switch (theme.theme) {
|
|
case AppThemeType.cupertino:
|
|
return CupertinoTabScaffold(
|
|
tabBar: CupertinoTabBar(items: _navigationItems),
|
|
tabBuilder: (context, index) {
|
|
return CupertinoTabView(builder: (context) {
|
|
return _buildScreen(index);
|
|
});
|
|
},
|
|
);
|
|
default:
|
|
return Scaffold(
|
|
body: _buildScreen(active),
|
|
bottomNavigationBar: BottomNavigationBar(
|
|
selectedItemColor: theme.palette.primary,
|
|
items: _navigationItems,
|
|
currentIndex: active,
|
|
type: BottomNavigationBarType.fixed,
|
|
onTap: (int index) {
|
|
setState(() {
|
|
active = index;
|
|
});
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}
|
|
}
|