Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 89c31f1904 | |||
| 9f1d2317af | |||
| c3d9cc273f | |||
| 63e01389e8 | |||
| 5ca5856f15 | |||
| a337c3fda3 | |||
| fc1c7cade2 | |||
| 0971433c7a | |||
| 844f68d376 | |||
| cab8d7104f | |||
| baba5c3462 | |||
| 97c049e453 |
@@ -55,7 +55,14 @@ jobs:
|
|||||||
run: flutter pub get
|
run: flutter pub get
|
||||||
|
|
||||||
- name: Build release APK
|
- name: Build release APK
|
||||||
run: flutter build apk --release
|
run: |
|
||||||
|
# Derive version from the tag (e.g. v26.03.12 → name=26.03.12 number=260312)
|
||||||
|
TAG="${{ github.ref_name }}"
|
||||||
|
BUILD_NAME="${TAG#v}"
|
||||||
|
BUILD_NUMBER=$(echo "$BUILD_NAME" | tr -d '.')
|
||||||
|
flutter build apk --release \
|
||||||
|
--build-name="$BUILD_NAME" \
|
||||||
|
--build-number="$BUILD_NUMBER"
|
||||||
|
|
||||||
- name: Set artifact name
|
- name: Set artifact name
|
||||||
id: artifact
|
id: artifact
|
||||||
|
|||||||
@@ -37,11 +37,13 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
create("release") {
|
if (keystorePropertiesFile.exists()) {
|
||||||
keyAlias = keystoreProperties["keyAlias"] as String
|
create("release") {
|
||||||
keyPassword = keystoreProperties["keyPassword"] as String
|
keyAlias = keystoreProperties["keyAlias"] as String
|
||||||
storeFile = file(keystoreProperties["storeFile"] as String)
|
keyPassword = keystoreProperties["keyPassword"] as String
|
||||||
storePassword = keystoreProperties["storePassword"] as String
|
storeFile = file(keystoreProperties["storeFile"] as String)
|
||||||
|
storePassword = keystoreProperties["storePassword"] as String
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -59,7 +61,7 @@ android {
|
|||||||
val variant = this
|
val variant = this
|
||||||
outputs.all {
|
outputs.all {
|
||||||
val output = this as? com.android.build.gradle.internal.api.BaseVariantOutputImpl
|
val output = this as? com.android.build.gradle.internal.api.BaseVariantOutputImpl
|
||||||
output?.outputFileName = "Fabled-${variant.versionName}.${variant.versionCode}.apk"
|
output?.outputFileName = "Fabled-${variant.versionCode}.apk"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+31
-8
@@ -15,6 +15,7 @@ import 'providers/update_provider.dart';
|
|||||||
import 'providers/tasks_provider.dart';
|
import 'providers/tasks_provider.dart';
|
||||||
import 'screens/auth/login_screen.dart';
|
import 'screens/auth/login_screen.dart';
|
||||||
import 'screens/briefing/briefing_screen.dart';
|
import 'screens/briefing/briefing_screen.dart';
|
||||||
|
import 'screens/library/project_tasks_screen.dart';
|
||||||
import 'screens/chat/chat_screen.dart';
|
import 'screens/chat/chat_screen.dart';
|
||||||
import 'screens/chat/conversations_tab_screen.dart';
|
import 'screens/chat/conversations_tab_screen.dart';
|
||||||
import 'screens/library/library_screen.dart';
|
import 'screens/library/library_screen.dart';
|
||||||
@@ -107,6 +108,12 @@ final routerProvider = Provider<GoRouter>((ref) {
|
|||||||
taskId: int.parse(state.pathParameters['id']!),
|
taskId: int.parse(state.pathParameters['id']!),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: Routes.projectTasks,
|
||||||
|
builder: (_, state) => ProjectTasksScreen(
|
||||||
|
projectId: int.parse(state.pathParameters['id']!),
|
||||||
|
),
|
||||||
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: Routes.chat,
|
path: Routes.chat,
|
||||||
builder: (_, state) => ChatScreen(
|
builder: (_, state) => ChatScreen(
|
||||||
@@ -152,10 +159,14 @@ class _ShellState extends ConsumerState<_Shell> {
|
|||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
// Silent update check on first app load.
|
// Silent update check — only if we haven't already checked this session.
|
||||||
|
// Skipping when status is not idle/error prevents the dialog from
|
||||||
|
// re-appearing every time the shell re-mounts (e.g. after visiting settings).
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
final repoUrl = ref.read(forgejoRepoUrlProvider);
|
final repoUrl = ref.read(forgejoRepoUrlProvider);
|
||||||
if (repoUrl != null && repoUrl.isNotEmpty) {
|
if (repoUrl == null || repoUrl.isEmpty) return;
|
||||||
|
final status = ref.read(updateProvider).status;
|
||||||
|
if (status == UpdateStatus.idle || status == UpdateStatus.error) {
|
||||||
ref.read(updateProvider.notifier).check(repoUrl);
|
ref.read(updateProvider.notifier).check(repoUrl);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -181,7 +192,7 @@ class _ShellState extends ConsumerState<_Shell> {
|
|||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text('Version ${state.latestVersion} is ready to install.'),
|
Text('Version ${state.latestVersion ?? '?'} is ready to install.'),
|
||||||
if (state.currentVersion != null)
|
if (state.currentVersion != null)
|
||||||
Text(
|
Text(
|
||||||
'Installed: v${state.currentVersion}',
|
'Installed: v${state.currentVersion}',
|
||||||
@@ -201,6 +212,16 @@ class _ShellState extends ConsumerState<_Shell> {
|
|||||||
style: Theme.of(context).textTheme.bodySmall,
|
style: Theme.of(context).textTheme.bodySmall,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
if (state.status == UpdateStatus.error &&
|
||||||
|
state.errorMessage != null) ...[
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
Text(
|
||||||
|
state.errorMessage!,
|
||||||
|
style: Theme.of(context).textTheme.bodySmall?.copyWith(
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
actions: [
|
actions: [
|
||||||
@@ -208,7 +229,7 @@ class _ShellState extends ConsumerState<_Shell> {
|
|||||||
onPressed: () => Navigator.pop(dialogContext),
|
onPressed: () => Navigator.pop(dialogContext),
|
||||||
child: const Text('Later'),
|
child: const Text('Later'),
|
||||||
),
|
),
|
||||||
if (!isDownloading)
|
if (!isDownloading && state.downloadUrl != null)
|
||||||
FilledButton(
|
FilledButton(
|
||||||
onPressed: () => ref
|
onPressed: () => ref
|
||||||
.read(updateProvider.notifier)
|
.read(updateProvider.notifier)
|
||||||
@@ -356,8 +377,10 @@ class _QuickCaptureBarState extends ConsumerState<_QuickCaptureBar> {
|
|||||||
if (!mounted) break;
|
if (!mounted) break;
|
||||||
try {
|
try {
|
||||||
final result = await api.capture(text);
|
final result = await api.capture(text);
|
||||||
if (!mounted) break;
|
// Dequeue before the mounted check — SharedPreferences doesn't need
|
||||||
|
// the widget alive, and skipping this would leave a ghost item.
|
||||||
await ref.read(captureQueueProvider.notifier).dequeue(text);
|
await ref.read(captureQueueProvider.notifier).dequeue(text);
|
||||||
|
if (!mounted) break;
|
||||||
switch (result.type) {
|
switch (result.type) {
|
||||||
case 'note':
|
case 'note':
|
||||||
ref.invalidate(notesProvider);
|
ref.invalidate(notesProvider);
|
||||||
@@ -368,9 +391,9 @@ class _QuickCaptureBarState extends ConsumerState<_QuickCaptureBar> {
|
|||||||
} on NetworkException {
|
} on NetworkException {
|
||||||
break;
|
break;
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
if (mounted) {
|
// Server error or unexpected failure — drop from queue to prevent
|
||||||
await ref.read(captureQueueProvider.notifier).dequeue(text);
|
// ghost items that can never be cleared.
|
||||||
}
|
await ref.read(captureQueueProvider.notifier).dequeue(text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,4 +16,5 @@ abstract class Routes {
|
|||||||
static const settings = '/settings';
|
static const settings = '/settings';
|
||||||
static const briefing = '/briefing';
|
static const briefing = '/briefing';
|
||||||
static const library = '/library';
|
static const library = '/library';
|
||||||
|
static const projectTasks = '/projects/:id/tasks';
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,6 +44,16 @@ class _ErrorInterceptor extends Interceptor {
|
|||||||
));
|
));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (err.type == DioExceptionType.receiveTimeout ||
|
||||||
|
err.type == DioExceptionType.sendTimeout) {
|
||||||
|
handler.reject(DioException(
|
||||||
|
requestOptions: err.requestOptions,
|
||||||
|
error: const AppException('Request timed out. The server is taking too long to respond.'),
|
||||||
|
type: err.type,
|
||||||
|
response: err.response,
|
||||||
|
));
|
||||||
|
return;
|
||||||
|
}
|
||||||
handler.next(err);
|
handler.next(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ class QuickCaptureApi {
|
|||||||
final response = await _dio.post(
|
final response = await _dio.post(
|
||||||
'/api/quick-capture',
|
'/api/quick-capture',
|
||||||
data: {'text': text},
|
data: {'text': text},
|
||||||
|
options: Options(receiveTimeout: const Duration(seconds: 120)),
|
||||||
);
|
);
|
||||||
return CaptureResult.fromJson(response.data as Map<String, dynamic>);
|
return CaptureResult.fromJson(response.data as Map<String, dynamic>);
|
||||||
} on DioException catch (e) {
|
} on DioException catch (e) {
|
||||||
|
|||||||
@@ -52,6 +52,24 @@ class TasksApi {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<List<Task>> getByProject(int projectId) async {
|
||||||
|
try {
|
||||||
|
final response = await _dio.get(
|
||||||
|
'/api/notes',
|
||||||
|
queryParameters: {
|
||||||
|
'project_id': projectId,
|
||||||
|
'is_task': 'true',
|
||||||
|
'limit': 500,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
final data = response.data as Map<String, dynamic>;
|
||||||
|
final list = data['notes'] as List<dynamic>;
|
||||||
|
return list.map((e) => Task.fromJson(e as Map<String, dynamic>)).toList();
|
||||||
|
} on DioException catch (e) {
|
||||||
|
throw dioToApp(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Future<List<Task>> getSubTasks(int parentId) async {
|
Future<List<Task>> getSubTasks(int parentId) async {
|
||||||
try {
|
try {
|
||||||
final response = await _dio.get(
|
final response = await _dio.get(
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ class TasksRepository {
|
|||||||
parentId: parentId,
|
parentId: parentId,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Future<List<Task>> getByProject(int projectId) => _api.getByProject(projectId);
|
||||||
Future<List<Task>> getSubTasks(int parentId) => _api.getSubTasks(parentId);
|
Future<List<Task>> getSubTasks(int parentId) => _api.getSubTasks(parentId);
|
||||||
|
|
||||||
Future<Task> update(int id, Map<String, dynamic> fields) =>
|
Future<Task> update(int id, Map<String, dynamic> fields) =>
|
||||||
|
|||||||
@@ -6,6 +6,11 @@ import 'api_client_provider.dart';
|
|||||||
final tasksProvider =
|
final tasksProvider =
|
||||||
AsyncNotifierProvider<TasksNotifier, List<Task>>(TasksNotifier.new);
|
AsyncNotifierProvider<TasksNotifier, List<Task>>(TasksNotifier.new);
|
||||||
|
|
||||||
|
final projectTasksProvider =
|
||||||
|
FutureProvider.family<List<Task>, int>((ref, projectId) {
|
||||||
|
return ref.watch(tasksRepositoryProvider).getByProject(projectId);
|
||||||
|
});
|
||||||
|
|
||||||
class TasksNotifier extends AsyncNotifier<List<Task>> {
|
class TasksNotifier extends AsyncNotifier<List<Task>> {
|
||||||
@override
|
@override
|
||||||
Future<List<Task>> build() async {
|
Future<List<Task>> build() async {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|||||||
import 'package:open_file/open_file.dart';
|
import 'package:open_file/open_file.dart';
|
||||||
import 'package:package_info_plus/package_info_plus.dart';
|
import 'package:package_info_plus/package_info_plus.dart';
|
||||||
import 'package:path_provider/path_provider.dart';
|
import 'package:path_provider/path_provider.dart';
|
||||||
|
import 'package:permission_handler/permission_handler.dart';
|
||||||
|
|
||||||
enum UpdateStatus { idle, checking, available, downloading, upToDate, error }
|
enum UpdateStatus { idle, checking, available, downloading, upToDate, error }
|
||||||
|
|
||||||
@@ -102,6 +103,22 @@ class UpdateNotifier extends Notifier<UpdateState> {
|
|||||||
|
|
||||||
Future<void> downloadAndInstall() async {
|
Future<void> downloadAndInstall() async {
|
||||||
if (state.downloadUrl == null) return;
|
if (state.downloadUrl == null) return;
|
||||||
|
|
||||||
|
// Android 8+ requires explicit per-app "Install unknown apps" approval
|
||||||
|
// beyond the manifest declaration. Check and redirect to Settings if needed.
|
||||||
|
final installPermission = await Permission.requestInstallPackages.status;
|
||||||
|
if (!installPermission.isGranted) {
|
||||||
|
final result = await Permission.requestInstallPackages.request();
|
||||||
|
if (!result.isGranted) {
|
||||||
|
state = state.copyWith(
|
||||||
|
status: UpdateStatus.error,
|
||||||
|
errorMessage:
|
||||||
|
'Grant "Install unknown apps" permission for Fabled in Settings, then try again.',
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
state = state.copyWith(status: UpdateStatus.downloading, downloadProgress: 0);
|
state = state.copyWith(status: UpdateStatus.downloading, downloadProgress: 0);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -119,14 +136,20 @@ class UpdateNotifier extends Notifier<UpdateState> {
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
await OpenFile.open(
|
final result = await OpenFile.open(
|
||||||
path,
|
path,
|
||||||
type: 'application/vnd.android.package-archive',
|
type: 'application/vnd.android.package-archive',
|
||||||
);
|
);
|
||||||
|
|
||||||
// Transition to idle — the system installer is now open.
|
if (result.type == ResultType.done) {
|
||||||
// Going back to `available` would re-trigger the update dialog loop.
|
// Installer launched — reset to idle so the dialog closes naturally.
|
||||||
state = const UpdateState();
|
state = const UpdateState();
|
||||||
|
} else {
|
||||||
|
state = state.copyWith(
|
||||||
|
status: UpdateStatus.error,
|
||||||
|
errorMessage: 'Could not open installer: ${result.message}',
|
||||||
|
);
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
state = state.copyWith(
|
state = state.copyWith(
|
||||||
status: UpdateStatus.error,
|
status: UpdateStatus.error,
|
||||||
|
|||||||
@@ -2,9 +2,7 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
|
||||||
import '../../core/exceptions.dart';
|
import '../../core/exceptions.dart';
|
||||||
import '../../data/models/message.dart';
|
|
||||||
import '../../providers/briefing_provider.dart';
|
import '../../providers/briefing_provider.dart';
|
||||||
import '../../widgets/briefing_digest_card.dart';
|
|
||||||
import '../../widgets/chat_message_bubble.dart';
|
import '../../widgets/chat_message_bubble.dart';
|
||||||
import 'briefing_history_screen.dart';
|
import 'briefing_history_screen.dart';
|
||||||
|
|
||||||
@@ -146,47 +144,45 @@ class _BriefingScreenState extends ConsumerState<BriefingScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
data: (conv) {
|
data: (conv) {
|
||||||
// First assistant message for the digest card (null if none yet)
|
|
||||||
final Message? firstAssistant = conv.messages
|
|
||||||
.where((m) => m.role == MessageRole.assistant)
|
|
||||||
.toList()
|
|
||||||
.firstOrNull;
|
|
||||||
|
|
||||||
return Column(
|
return Column(
|
||||||
children: [
|
children: [
|
||||||
// Digest card header
|
|
||||||
BriefingDigestCard(
|
|
||||||
message: firstAssistant,
|
|
||||||
onGenerateNow: _refresh,
|
|
||||||
),
|
|
||||||
|
|
||||||
// Divider + label
|
|
||||||
if (conv.messages.isNotEmpty) ...[
|
|
||||||
const SizedBox(height: 4),
|
|
||||||
Row(children: [
|
|
||||||
const Expanded(child: Divider()),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10),
|
|
||||||
child: Text(
|
|
||||||
'Conversation',
|
|
||||||
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
|
||||||
color: scheme.onSurfaceVariant,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const Expanded(child: Divider()),
|
|
||||||
]),
|
|
||||||
],
|
|
||||||
|
|
||||||
// Message list
|
|
||||||
Expanded(
|
Expanded(
|
||||||
child: ListView.builder(
|
child: CustomScrollView(
|
||||||
controller: _scrollController,
|
controller: _scrollController,
|
||||||
padding: const EdgeInsets.symmetric(
|
slivers: [
|
||||||
horizontal: 8, vertical: 8),
|
if (conv.messages.isEmpty)
|
||||||
itemCount: conv.messages.length,
|
SliverFillRemaining(
|
||||||
itemBuilder: (_, i) =>
|
child: Center(
|
||||||
ChatMessageBubble(message: conv.messages[i]),
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'No briefing yet today.',
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.bodyMedium
|
||||||
|
?.copyWith(color: scheme.onSurfaceVariant),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
FilledButton.tonal(
|
||||||
|
onPressed: _refresh,
|
||||||
|
child: const Text('Generate now'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
else
|
||||||
|
SliverPadding(
|
||||||
|
padding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 8, vertical: 8),
|
||||||
|
sliver: SliverList.builder(
|
||||||
|
itemCount: conv.messages.length,
|
||||||
|
itemBuilder: (_, i) =>
|
||||||
|
ChatMessageBubble(message: conv.messages[i]),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,381 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
import 'package:go_router/go_router.dart';
|
||||||
|
|
||||||
|
import '../../core/constants.dart';
|
||||||
|
import '../../data/models/milestone.dart';
|
||||||
|
import '../../data/models/project.dart';
|
||||||
|
import '../../data/models/task.dart';
|
||||||
|
import '../../providers/api_client_provider.dart';
|
||||||
|
import '../../providers/milestones_provider.dart';
|
||||||
|
import '../../providers/projects_provider.dart';
|
||||||
|
import '../../providers/tasks_provider.dart';
|
||||||
|
|
||||||
|
class ProjectTasksScreen extends ConsumerStatefulWidget {
|
||||||
|
final int projectId;
|
||||||
|
const ProjectTasksScreen({super.key, required this.projectId});
|
||||||
|
|
||||||
|
@override
|
||||||
|
ConsumerState<ProjectTasksScreen> createState() => _ProjectTasksScreenState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ProjectTasksScreenState extends ConsumerState<ProjectTasksScreen> {
|
||||||
|
// Local optimistic status overrides — avoids a reload flash on every cycle tap.
|
||||||
|
final Map<int, TaskStatus> _pendingStatus = {};
|
||||||
|
|
||||||
|
TaskStatus _effectiveStatus(Task task) =>
|
||||||
|
_pendingStatus[task.id] ?? task.status;
|
||||||
|
|
||||||
|
TaskStatus _nextStatus(TaskStatus s) => switch (s) {
|
||||||
|
TaskStatus.todo => TaskStatus.inProgress,
|
||||||
|
TaskStatus.inProgress => TaskStatus.done,
|
||||||
|
TaskStatus.done => TaskStatus.todo,
|
||||||
|
};
|
||||||
|
|
||||||
|
Future<void> _cycleStatus(Task task) async {
|
||||||
|
final current = _effectiveStatus(task);
|
||||||
|
final next = _nextStatus(current);
|
||||||
|
setState(() => _pendingStatus[task.id] = next);
|
||||||
|
try {
|
||||||
|
await ref
|
||||||
|
.read(tasksRepositoryProvider)
|
||||||
|
.update(task.id, {'status': next.value});
|
||||||
|
// Sync the global tasks list so the library view stays consistent.
|
||||||
|
ref.invalidate(tasksProvider);
|
||||||
|
} catch (_) {
|
||||||
|
// Revert optimistic change on error.
|
||||||
|
setState(() => _pendingStatus.remove(task.id));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Color _parseColor(String? hex) {
|
||||||
|
if (hex == null || hex.isEmpty) return const Color(0xFF6366F1);
|
||||||
|
try {
|
||||||
|
return Color(int.parse(hex.replaceFirst('#', '0xFF')));
|
||||||
|
} catch (_) {
|
||||||
|
return const Color(0xFF6366F1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final tasksAsync = ref.watch(projectTasksProvider(widget.projectId));
|
||||||
|
final milestonesAsync = ref.watch(projectMilestonesProvider(widget.projectId));
|
||||||
|
final project = ref.watch(projectsProvider).value
|
||||||
|
?.whereType<Project>()
|
||||||
|
.where((p) => p.id == widget.projectId)
|
||||||
|
.firstOrNull;
|
||||||
|
|
||||||
|
final color = _parseColor(project?.color);
|
||||||
|
|
||||||
|
return Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
title: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
project?.title ?? 'Project',
|
||||||
|
style: Theme.of(context).textTheme.titleLarge,
|
||||||
|
),
|
||||||
|
if (project?.description?.isNotEmpty == true)
|
||||||
|
Text(
|
||||||
|
project!.description!,
|
||||||
|
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
||||||
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
body: tasksAsync.when(
|
||||||
|
loading: () => const Center(child: CircularProgressIndicator()),
|
||||||
|
error: (e, _) => Center(child: Text('Error loading tasks: $e')),
|
||||||
|
data: (tasks) => _buildBody(context, tasks, milestonesAsync, color),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildBody(
|
||||||
|
BuildContext context,
|
||||||
|
List<Task> tasks,
|
||||||
|
AsyncValue<List<Milestone>> milestonesAsync,
|
||||||
|
Color color,
|
||||||
|
) {
|
||||||
|
final milestones = (milestonesAsync.value ?? []).toList()
|
||||||
|
..sort((a, b) => a.orderIndex.compareTo(b.orderIndex));
|
||||||
|
|
||||||
|
// Group tasks by milestoneId.
|
||||||
|
final byMilestone = <int?, List<Task>>{};
|
||||||
|
for (final t in tasks) {
|
||||||
|
(byMilestone[t.milestoneId] ??= []).add(t);
|
||||||
|
}
|
||||||
|
|
||||||
|
final unassigned = byMilestone[null] ?? [];
|
||||||
|
|
||||||
|
if (tasks.isEmpty) {
|
||||||
|
return Center(
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Icon(Icons.check_box_outlined,
|
||||||
|
size: 48,
|
||||||
|
color: Theme.of(context).colorScheme.onSurfaceVariant),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
Text(
|
||||||
|
'No tasks in this project yet.',
|
||||||
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
||||||
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return RefreshIndicator(
|
||||||
|
onRefresh: () async {
|
||||||
|
setState(() => _pendingStatus.clear());
|
||||||
|
ref.invalidate(projectTasksProvider(widget.projectId));
|
||||||
|
ref.invalidate(projectMilestonesProvider(widget.projectId));
|
||||||
|
},
|
||||||
|
child: CustomScrollView(
|
||||||
|
slivers: [
|
||||||
|
// Top colour strip.
|
||||||
|
SliverToBoxAdapter(child: Container(height: 4, color: color)),
|
||||||
|
|
||||||
|
// Milestone sections.
|
||||||
|
for (final ms in milestones) ...[
|
||||||
|
SliverToBoxAdapter(
|
||||||
|
child: _MilestoneHeader(
|
||||||
|
milestone: ms,
|
||||||
|
tasks: byMilestone[ms.id] ?? [],
|
||||||
|
color: color,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if ((byMilestone[ms.id] ?? []).isNotEmpty)
|
||||||
|
SliverList.builder(
|
||||||
|
itemCount: byMilestone[ms.id]!.length,
|
||||||
|
itemBuilder: (_, i) {
|
||||||
|
final task = byMilestone[ms.id]![i];
|
||||||
|
return _TaskRow(
|
||||||
|
task: task,
|
||||||
|
effectiveStatus: _effectiveStatus(task),
|
||||||
|
onStatusTap: () => _cycleStatus(task),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
|
||||||
|
// Unassigned tasks.
|
||||||
|
if (unassigned.isNotEmpty) ...[
|
||||||
|
SliverToBoxAdapter(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(16, 20, 16, 6),
|
||||||
|
child: Text(
|
||||||
|
'No milestone',
|
||||||
|
style: Theme.of(context).textTheme.labelMedium?.copyWith(
|
||||||
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
|
letterSpacing: 0.5,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SliverList.builder(
|
||||||
|
itemCount: unassigned.length,
|
||||||
|
itemBuilder: (_, i) {
|
||||||
|
final task = unassigned[i];
|
||||||
|
return _TaskRow(
|
||||||
|
task: task,
|
||||||
|
effectiveStatus: _effectiveStatus(task),
|
||||||
|
onStatusTap: () => _cycleStatus(task),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
|
||||||
|
const SliverToBoxAdapter(child: SizedBox(height: 16)),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Milestone section header ──────────────────────────────────────────────────
|
||||||
|
|
||||||
|
class _MilestoneHeader extends StatelessWidget {
|
||||||
|
final Milestone milestone;
|
||||||
|
final List<Task> tasks;
|
||||||
|
final Color color;
|
||||||
|
|
||||||
|
const _MilestoneHeader({
|
||||||
|
required this.milestone,
|
||||||
|
required this.tasks,
|
||||||
|
required this.color,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final theme = Theme.of(context);
|
||||||
|
final done = tasks.where((t) => t.status == TaskStatus.done).length;
|
||||||
|
final total = tasks.length;
|
||||||
|
final pct = total > 0 ? done / total : 0.0;
|
||||||
|
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(16, 20, 16, 6),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width: 10,
|
||||||
|
height: 10,
|
||||||
|
decoration: BoxDecoration(color: color, shape: BoxShape.circle),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
milestone.title,
|
||||||
|
style: theme.textTheme.titleSmall,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Text(
|
||||||
|
'$done / $total',
|
||||||
|
style: theme.textTheme.labelSmall?.copyWith(
|
||||||
|
color: theme.colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (total > 0) ...[
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
LinearProgressIndicator(
|
||||||
|
value: pct,
|
||||||
|
minHeight: 2,
|
||||||
|
color: color,
|
||||||
|
backgroundColor: color.withValues(alpha: 0.15),
|
||||||
|
borderRadius: BorderRadius.circular(1),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Task row ──────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
class _TaskRow extends StatelessWidget {
|
||||||
|
final Task task;
|
||||||
|
final TaskStatus effectiveStatus;
|
||||||
|
final VoidCallback onStatusTap;
|
||||||
|
|
||||||
|
const _TaskRow({
|
||||||
|
required this.task,
|
||||||
|
required this.effectiveStatus,
|
||||||
|
required this.onStatusTap,
|
||||||
|
});
|
||||||
|
|
||||||
|
IconData get _statusIcon => switch (effectiveStatus) {
|
||||||
|
TaskStatus.done => Icons.check_circle,
|
||||||
|
TaskStatus.inProgress => Icons.timelapse,
|
||||||
|
TaskStatus.todo => Icons.radio_button_unchecked,
|
||||||
|
};
|
||||||
|
|
||||||
|
Color _statusColor(BuildContext context) {
|
||||||
|
final cs = Theme.of(context).colorScheme;
|
||||||
|
return switch (effectiveStatus) {
|
||||||
|
TaskStatus.done => const Color(0xFF22C55E),
|
||||||
|
TaskStatus.inProgress => cs.primary,
|
||||||
|
TaskStatus.todo => cs.onSurfaceVariant,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
Color _priorityColor(BuildContext context) => switch (task.priority) {
|
||||||
|
TaskPriority.high => const Color(0xFFEF4444),
|
||||||
|
TaskPriority.medium => const Color(0xFFF59E0B),
|
||||||
|
_ => Colors.transparent,
|
||||||
|
};
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final theme = Theme.of(context);
|
||||||
|
|
||||||
|
return Card(
|
||||||
|
margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 3),
|
||||||
|
child: InkWell(
|
||||||
|
onTap: () => context
|
||||||
|
.push(Routes.taskEdit.replaceFirst(':id', '${task.id}')),
|
||||||
|
borderRadius: BorderRadius.circular(14),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(4, 6, 14, 6),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(_statusIcon, color: _statusColor(context)),
|
||||||
|
onPressed: onStatusTap,
|
||||||
|
tooltip: 'Cycle status',
|
||||||
|
visualDensity: VisualDensity.compact,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
task.title.isNotEmpty ? task.title : 'Untitled',
|
||||||
|
style: theme.textTheme.titleSmall?.copyWith(
|
||||||
|
decoration: effectiveStatus == TaskStatus.done
|
||||||
|
? TextDecoration.lineThrough
|
||||||
|
: null,
|
||||||
|
color: effectiveStatus == TaskStatus.done
|
||||||
|
? theme.colorScheme.onSurfaceVariant
|
||||||
|
: null,
|
||||||
|
),
|
||||||
|
maxLines: 2,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
if (task.dueDate != null) ...[
|
||||||
|
const SizedBox(height: 2),
|
||||||
|
Text(
|
||||||
|
'Due ${_formatDate(task.dueDate!)}',
|
||||||
|
style: theme.textTheme.labelSmall?.copyWith(
|
||||||
|
color: task.dueDate!.isBefore(DateTime.now()) &&
|
||||||
|
effectiveStatus != TaskStatus.done
|
||||||
|
? const Color(0xFFEF4444)
|
||||||
|
: theme.colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (task.priority == TaskPriority.high ||
|
||||||
|
task.priority == TaskPriority.medium)
|
||||||
|
Container(
|
||||||
|
width: 8,
|
||||||
|
height: 8,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: _priorityColor(context),
|
||||||
|
shape: BoxShape.circle,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
String _formatDate(DateTime dt) {
|
||||||
|
const months = [
|
||||||
|
'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
|
||||||
|
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec',
|
||||||
|
];
|
||||||
|
return '${months[dt.month - 1]} ${dt.day}';
|
||||||
|
}
|
||||||
@@ -210,7 +210,8 @@ class ProjectLibraryCard extends StatelessWidget {
|
|||||||
margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 4),
|
margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 4),
|
||||||
clipBehavior: Clip.antiAlias,
|
clipBehavior: Clip.antiAlias,
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
onTap: () {}, // No project detail screen in this app
|
onTap: () => context
|
||||||
|
.push('/projects/${project.id}/tasks'),
|
||||||
borderRadius: BorderRadius.circular(14),
|
borderRadius: BorderRadius.circular(14),
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
|
|||||||
+2
-1
@@ -2,7 +2,7 @@ name: fabled_app
|
|||||||
description: "FabledAssistant mobile client for Android."
|
description: "FabledAssistant mobile client for Android."
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 26.03.12+1
|
version: 0.0.0+0 # overridden at build time via --build-name / --build-number
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.11.0
|
sdk: ^3.11.0
|
||||||
@@ -22,6 +22,7 @@ dependencies:
|
|||||||
markdown: ^7.2.2
|
markdown: ^7.2.2
|
||||||
package_info_plus: ^9.0.0
|
package_info_plus: ^9.0.0
|
||||||
open_file: ^3.3.2
|
open_file: ^3.3.2
|
||||||
|
permission_handler: ^11.3.1
|
||||||
flutter_inappwebview: ^6.1.5
|
flutter_inappwebview: ^6.1.5
|
||||||
flutter_markdown_plus: ^1.0.7
|
flutter_markdown_plus: ^1.0.7
|
||||||
google_fonts: ^8.0.2
|
google_fonts: ^8.0.2
|
||||||
|
|||||||
Reference in New Issue
Block a user