New screens (client/app/lib/screens/): - wahl_admin_screen.dart — per KC: list/create Wahlen; per Wahl: add workshops, run the assignment (POST /wahl/:id/zuteilung/run), view the result table. - teamer_admin_screen.dart — per Gemeinde: list/create local Teamer accounts, create group-link or per-email invites (shows the token). - verantwortliche_register_screen.dart — enter a KC invite code (GET /onboarding/kc/:code), pick a Gemeinde, submit (POST /onboarding/verantwortliche); shown on the home screen to a logged-in Authentik user who has no membership yet. - ui.dart — shared toast / ErrorText / SectionHeader / promptText. KcDetailScreen now links to Wahl admin and each Gemeinde row opens Teamer admin. Backend: widen the wahl + files LT routes to AuthGuard(['authentik','team']) for consistency with the other LT controllers. Rebrand web/index.html + manifest from "kc_app" to "KC-App". Verified against local Postgres with an isLeitungsteam team token: create KC/Gemeinde/Wahl/Workshop, run Zuteilung, create Teamer + invite, resolve an invite code. flutter analyze/test/build web green; backend npm test 56. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
160 lines
4.4 KiB
Dart
160 lines
4.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../api.dart';
|
|
import '../main.dart';
|
|
import 'admin_screen.dart';
|
|
import 'chat_screen.dart';
|
|
import 'files_screen.dart';
|
|
import 'verantwortliche_register_screen.dart';
|
|
import 'wahl_screen.dart';
|
|
|
|
class HomeScreen extends StatelessWidget {
|
|
const HomeScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final state = AppScope.of(context);
|
|
final id = state.identity!;
|
|
final kcId = id.kcId;
|
|
|
|
final needsVerantwRegistration = id.kind == SessionKind.user &&
|
|
!id.isLeitungsteam &&
|
|
id.memberships.isEmpty;
|
|
|
|
final tiles = <Widget>[
|
|
if (id.isLeitungsteam)
|
|
_NavTile(
|
|
icon: Icons.admin_panel_settings,
|
|
title: 'Verwaltung',
|
|
subtitle: 'KCs, Gemeinden, Onboarding-Freigaben',
|
|
onTap: () => _open(context, const AdminScreen()),
|
|
),
|
|
if (needsVerantwRegistration)
|
|
_NavTile(
|
|
icon: Icons.how_to_reg,
|
|
title: 'Als Verantwortliche/r registrieren',
|
|
subtitle: 'KC-Code eingeben, Gemeinde wählen, Freigabe abwarten',
|
|
onTap: () => _open(context, const VerantwortlicheRegisterScreen()),
|
|
),
|
|
if (id.kind == SessionKind.guest)
|
|
_NavTile(
|
|
icon: Icons.how_to_vote,
|
|
title: 'Workshop-Wahl',
|
|
subtitle: 'Deine Wünsche abgeben',
|
|
onTap: () => _open(context, const WahlScreen()),
|
|
),
|
|
if (kcId != null)
|
|
_NavTile(
|
|
icon: Icons.folder_shared,
|
|
title: 'Dateien',
|
|
subtitle: 'Freigegebene Dateien ansehen',
|
|
onTap: () => _open(context, FilesScreen(kcId: kcId)),
|
|
),
|
|
if (kcId != null)
|
|
_NavTile(
|
|
icon: Icons.forum,
|
|
title: 'Chat',
|
|
subtitle: 'Kanäle, Verlauf & Live-Nachrichten',
|
|
onTap: () => _open(context, ChatScreen(kcId: kcId)),
|
|
),
|
|
];
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('KC-App'),
|
|
actions: [
|
|
IconButton(
|
|
tooltip: 'Abmelden',
|
|
onPressed: state.logout,
|
|
icon: const Icon(Icons.logout),
|
|
),
|
|
],
|
|
),
|
|
body: SafeArea(
|
|
child: Center(
|
|
child: ConstrainedBox(
|
|
constraints: const BoxConstraints(maxWidth: 560),
|
|
child: ListView(
|
|
padding: const EdgeInsets.all(20),
|
|
children: [
|
|
_IdentityCard(id: id),
|
|
const SizedBox(height: 16),
|
|
...tiles,
|
|
if (tiles.isEmpty)
|
|
const Padding(
|
|
padding: EdgeInsets.only(top: 24),
|
|
child: Text(
|
|
'Für diesen Account gibt es hier noch keine Ansichten. '
|
|
'Sobald dir eine Gemeinde/ein KC zugeordnet ist, erscheinen '
|
|
'Dateien und Chat.',
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
void _open(BuildContext context, Widget screen) {
|
|
Navigator.of(context).push(MaterialPageRoute(builder: (_) => screen));
|
|
}
|
|
}
|
|
|
|
class _IdentityCard extends StatelessWidget {
|
|
const _IdentityCard({required this.id});
|
|
final Identity id;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final lines = <String>[
|
|
'Rolle: ${id.roleLabel}',
|
|
if (id.email != null) 'E-Mail: ${id.email}',
|
|
if (id.isLeitungsteam)
|
|
'Leitungsteam-Rechte gelten KC-übergreifend.'
|
|
else if (id.memberships.length > 1)
|
|
'${id.memberships.length} Zuordnungen',
|
|
];
|
|
return Card(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(16),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text('Angemeldet', style: Theme.of(context).textTheme.labelMedium),
|
|
const SizedBox(height: 4),
|
|
for (final l in lines) Text(l),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _NavTile extends StatelessWidget {
|
|
const _NavTile({
|
|
required this.icon,
|
|
required this.title,
|
|
required this.subtitle,
|
|
required this.onTap,
|
|
});
|
|
final IconData icon;
|
|
final String title;
|
|
final String subtitle;
|
|
final VoidCallback onTap;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Card(
|
|
child: ListTile(
|
|
leading: Icon(icon),
|
|
title: Text(title),
|
|
subtitle: Text(subtitle),
|
|
trailing: const Icon(Icons.chevron_right),
|
|
onTap: onTap,
|
|
),
|
|
);
|
|
}
|
|
}
|