Files
geutebruck/geutebruck_app/lib/presentation/widgets/app_drawer.dart
Administrator 14893e62a5 feat: Geutebruck GeViScope/GeViSoft Action Mapping System - MVP
This MVP release provides a complete full-stack solution for managing action mappings
in Geutebruck's GeViScope and GeViSoft video surveillance systems.

## Features

### Flutter Web Application (Port 8081)
- Modern, responsive UI for managing action mappings
- Action picker dialog with full parameter configuration
- Support for both GSC (GeViScope) and G-Core server actions
- Consistent UI for input and output actions with edit/delete capabilities
- Real-time action mapping creation, editing, and deletion
- Server categorization (GSC: prefix for GeViScope, G-Core: prefix for G-Core servers)

### FastAPI REST Backend (Port 8000)
- RESTful API for action mapping CRUD operations
- Action template service with comprehensive action catalog (247 actions)
- Server management (G-Core and GeViScope servers)
- Configuration tree reading and writing
- JWT authentication with role-based access control
- PostgreSQL database integration

### C# SDK Bridge (gRPC, Port 50051)
- Native integration with GeViSoft SDK (GeViProcAPINET_4_0.dll)
- Action mapping creation with correct binary format
- Support for GSC and G-Core action types
- Proper Camera parameter inclusion in action strings (fixes CrossSwitch bug)
- Action ID lookup table with server-specific action IDs
- Configuration reading/writing via SetupClient

## Bug Fixes
- **CrossSwitch Bug**: GSC and G-Core actions now correctly display camera/PTZ head parameters in GeViSet
- Action strings now include Camera parameter: `@ PanLeft (Comment: "", Camera: 101028)`
- Proper filter flags and VideoInput=0 for action mappings
- Correct action ID assignment (4198 for GSC, 9294 for G-Core PanLeft)

## Technical Stack
- **Frontend**: Flutter Web, Dart, Dio HTTP client
- **Backend**: Python FastAPI, PostgreSQL, Redis
- **SDK Bridge**: C# .NET 8.0, gRPC, GeViSoft SDK
- **Authentication**: JWT tokens
- **Configuration**: GeViSoft .set files (binary format)

## Credentials
- GeViSoft/GeViScope: username=sysadmin, password=masterkey
- Default admin: username=admin, password=admin123

## Deployment
All services run on localhost:
- Flutter Web: http://localhost:8081
- FastAPI: http://localhost:8000
- SDK Bridge gRPC: localhost:50051
- GeViServer: localhost (default port)

Generated with Claude Code (https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-31 18:10:54 +01:00

181 lines
5.3 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:go_router/go_router.dart';
import '../blocs/auth/auth_bloc.dart';
import '../blocs/auth/auth_event.dart';
import '../blocs/auth/auth_state.dart';
class AppDrawer extends StatelessWidget {
final String currentRoute;
const AppDrawer({
super.key,
required this.currentRoute,
});
@override
Widget build(BuildContext context) {
return Drawer(
child: Column(
children: [
// Drawer Header
BlocBuilder<AuthBloc, AuthState>(
builder: (context, state) {
if (state is Authenticated) {
return DrawerHeader(
decoration: BoxDecoration(
color: Theme.of(context).primaryColor,
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Icon(
state.user.role == 'administrator'
? Icons.admin_panel_settings
: Icons.person,
size: 48,
color: Colors.white,
),
const SizedBox(height: 12),
Text(
state.user.username,
style: const TextStyle(
color: Colors.white,
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
Text(
state.user.role,
style: const TextStyle(
color: Colors.white70,
fontSize: 14,
),
),
],
),
);
}
return const SizedBox.shrink();
},
),
// Navigation Items
Expanded(
child: ListView(
padding: EdgeInsets.zero,
children: [
_buildNavItem(
context,
icon: Icons.dashboard,
title: 'Dashboard',
route: '/',
),
const Divider(),
_buildNavItem(
context,
icon: Icons.video_camera_back,
title: 'Cameras',
route: '/cameras',
comingSoon: true,
),
_buildNavItem(
context,
icon: Icons.monitor,
title: 'Monitors',
route: '/monitors',
comingSoon: true,
),
_buildNavItem(
context,
icon: Icons.swap_horiz,
title: 'Cross-Switch',
route: '/crossswitch',
comingSoon: true,
),
_buildNavItem(
context,
icon: Icons.dns,
title: 'Servers',
route: '/servers',
),
_buildNavItem(
context,
icon: Icons.link,
title: 'Action Mappings',
route: '/action-mappings',
),
_buildNavItem(
context,
icon: Icons.settings,
title: 'Configuration',
route: '/configuration',
comingSoon: true,
),
],
),
),
// Logout at bottom
const Divider(),
ListTile(
leading: const Icon(Icons.logout),
title: const Text('Logout'),
onTap: () {
Navigator.pop(context);
context.read<AuthBloc>().add(const LogoutRequested());
},
),
],
),
);
}
Widget _buildNavItem(
BuildContext context, {
required IconData icon,
required String title,
required String route,
bool comingSoon = false,
}) {
final isSelected = currentRoute == route;
return ListTile(
leading: Icon(icon),
title: Row(
children: [
Text(title),
if (comingSoon) ...[
const SizedBox(width: 8),
Container(
padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 2),
decoration: BoxDecoration(
color: Colors.orange,
borderRadius: BorderRadius.circular(4),
),
child: const Text(
'Soon',
style: TextStyle(
color: Colors.white,
fontSize: 10,
fontWeight: FontWeight.bold,
),
),
),
],
],
),
selected: isSelected,
onTap: () {
Navigator.pop(context);
if (comingSoon) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text('$title - Coming soon')),
);
} else {
context.go(route);
}
},
);
}
}