Phase 4 Stage 7: end-of-session 2-step confirm + thank-you screen

Customer-driven session end flow:
- AppBar 'akhiri' action on chat_screen (visible when connected and
  not already closing).
- Tap fires confirm_end_step1 HaloPopup. lanjut akhiri -> step2;
  gak jadi balik -> dismiss, stay in chat.
- confirm_end_step2 HaloPopup. tulis pesan penutup -> closing_message_sheet
  HaloBottomSheet (textarea + kirim & akhiri / lewat — langsung akhiri).
  lewati saja closes immediately.
- Both close paths POST /api/client/session/:sessionId/end via
  session_closure_notifier.closeSession() and route to /chat/thank-you.
- 409 from the close endpoint surfaces a ClosureRejectedByMitraData
  state and a stub HaloPopup with TODO(stage8) for the BestieOfflinePopup
  returning variant.

Removed the legacy _showSessionExpiredDialog modal — Stage 6's
ChatExpiredBanner is the replacement notification.

Inline _buildGoodbyeView retained with a TODO for the mitra-side early
end flow (still reaches it).

endSessionTwoStepConfirmProvider hardcoded to true with a TODO — the
Stage 1.5 app_config row exists but no client-readable config endpoint
exists yet. Flip the provider to a FutureProvider once the read endpoint
ships.

Maestro 07_end_session_2step.yaml chains after the chat-happy flow
and asserts the Indonesian copy at each step.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-10 17:33:01 +08:00
parent 14b5cc966b
commit d454fd39db
9 changed files with 480 additions and 42 deletions

View File

@@ -5,10 +5,15 @@ import 'package:go_router/go_router.dart';
import '../../../core/chat/active_session_notifier.dart';
import '../../../core/chat/chat_notifier.dart';
import '../../../core/chat/session_closure_notifier.dart';
import '../../../core/config/app_config_provider.dart';
import '../../../core/constants.dart';
import '../../../core/theme/halo_tokens.dart';
import '../../../core/theme/widgets/halo_popup.dart';
import '../../../core/theme/widgets/halo_snackbar.dart';
import '../widgets/chat_expired_banner.dart';
import '../widgets/closing_message_sheet.dart';
import '../widgets/confirm_end_step1.dart';
import '../widgets/confirm_end_step2.dart';
import '../widgets/pricing_bottom_sheet.dart';
// Chat theme colors
@@ -37,7 +42,7 @@ class _ChatScreenState extends ConsumerState<ChatScreen> {
StreamSubscription<String>? _warningSub;
bool _showBestieBanner = true;
bool _showUserBanner = true;
bool _expiredDialogShown = false;
bool _rejectPopupShown = false;
// Per-session-mount idempotency flag for the 3-min snackbar. The backend
// also guards once-per-session (timers.threeMinFired), but a fresh mount
// could still receive the event on a refreshed status pull, so we belt-
@@ -118,53 +123,86 @@ class _ChatScreenState extends ConsumerState<ChatScreen> {
}
}
Future<void> _showSessionExpiredDialog() async {
if (_expiredDialogShown) return;
_expiredDialogShown = true;
/// Stage 7 entry point — wired to both the AppBar "akhiri sesi" button and
/// the menu equivalent. Reads `endSessionTwoStepConfirmProvider`: when the
/// flag is `true` the user sees step-1 first; when `false` (A/B variant) we
/// jump straight to step-2 (write-message vs skip).
Future<void> _onAkhiriSesiTapped() async {
final twoStep = ref.read(endSessionTwoStepConfirmProvider);
if (!twoStep) {
_showStep2();
return;
}
await ConfirmEndStep1.show(context, onConfirm: _showStep2);
}
void _showStep2() {
if (!mounted) return;
await showDialog<void>(
context: context,
barrierDismissible: false,
builder: (dialogContext) => AlertDialog(
title: const Text('Waktu Curhat Berakhir'),
content: const Text(
'Sesi curhatmu sudah habis waktunya. Kamu bisa menutup obrolan atau memperpanjang waktu untuk lanjut bicara.',
),
actions: [
TextButton(
onPressed: () {
Navigator.of(dialogContext).pop();
_exitChat();
},
child: const Text('Tutup'),
),
ElevatedButton(
onPressed: () {
Navigator.of(dialogContext).pop();
PricingBottomSheet.showForExtension(context, sessionId: widget.sessionId);
},
child: const Text('Perpanjang'),
),
],
),
ConfirmEndStep2.show(
context,
onWriteMessage: _showClosingSheet,
onSkip: _closeWithoutMessage,
);
}
void _showClosingSheet() {
if (!mounted) return;
ClosingMessageSheet.show(
context,
sessionId: widget.sessionId,
onCompleted: _goToThankYou,
);
}
Future<void> _closeWithoutMessage() async {
await ref.read(sessionClosureProvider.notifier).closeSession(widget.sessionId);
// Navigation is driven by the closure listener (success path) or the
// ClosureRejectedByMitraData branch (409 fallback popup).
}
void _goToThankYou() {
if (!mounted) return;
context.go('/chat/thank-you');
}
Future<void> _showBestieReturningPopup() async {
if (_rejectPopupShown) return;
_rejectPopupShown = true;
if (!mounted) return;
// TODO(stage8): replace with BestieOfflinePopup variant: 'returning'
await HaloPopup.show<void>(
context,
title: 'bestie lagi balik...',
body: 'sesi belum bisa ditutup karena bestie masih nyaut. coba lagi sebentar ya.',
icon: const Text('🔄', style: TextStyle(fontSize: 40)),
primary: HaloPopupAction(label: 'oke', onPressed: () {}),
);
_rejectPopupShown = false;
// Reset closure state so the user can retry without a stale-error block.
ref.read(sessionClosureProvider.notifier).reset();
}
@override
Widget build(BuildContext context) {
final chatState = ref.watch(chatProvider);
final closureState = ref.watch(sessionClosureProvider);
// Listen for closure complete to navigate home
// Stage 7 — closure outcomes drive routing. Success ends in S11 thank-you;
// 409 surfaces the bestie-returning fallback popup (Stage 8 owns the
// dedicated component).
ref.listen(sessionClosureProvider, (prev, next) {
if (next is ClosureCompleteData) {
// Make doubly sure home picks up the cleared session.
ref.invalidate(activeSessionProvider);
context.go('/home');
_goToThankYou();
} else if (next is ClosureRejectedByMitraData) {
_showBestieReturningPopup();
}
});
// Listen for chat state changes to manage closure state and timer-expired modal
// Listen for chat state changes to manage closure state. Stage 7 removed
// the legacy `_showSessionExpiredDialog` modal — the Stage 6 ChatExpiredBanner
// is the in-place replacement, and the user reaches the closing flow via
// the AppBar "akhiri" button.
ref.listen(chatProvider, (prev, next) {
if (next is ChatConnectedData) {
// Early-end (mitra/customer ended before timer): show goodbye composer.
@@ -174,19 +212,11 @@ class _ChatScreenState extends ConsumerState<ChatScreen> {
ref.read(sessionClosureProvider.notifier).declineExtension();
}
}
// Timer-expired: show non-dismissible modal once on false→true flip.
final wasExpired = prev is ChatConnectedData && prev.sessionExpired;
if (next.sessionExpired && !wasExpired) {
_showSessionExpiredDialog();
}
if (!next.sessionPaused && !next.sessionExpired && !next.sessionClosing) {
final closure = ref.read(sessionClosureProvider);
if (closure is! ClosureInitialData) {
ref.read(sessionClosureProvider.notifier).reset();
}
// If we're back to a healthy active state, allow the modal to fire
// again on a later expiry (e.g. after extension then re-expiry).
_expiredDialogShown = false;
}
_scrollToBottom();
final unread = next.messages
@@ -240,9 +270,23 @@ class _ChatScreenState extends ConsumerState<ChatScreen> {
actions: [
if (chatState is ChatConnectedData && remainingTick != null)
Padding(
padding: const EdgeInsets.only(right: 12),
padding: const EdgeInsets.only(right: 4),
child: Center(child: _buildTimerPill(remainingTick)),
),
if (chatState is ChatConnectedData &&
!chatState.sessionClosing)
TextButton(
onPressed: _onAkhiriSesiTapped,
style: TextButton.styleFrom(
foregroundColor: HaloTokens.brandDark,
textStyle: const TextStyle(
fontFamily: HaloTokens.fontBody,
fontSize: 13,
fontWeight: FontWeight.w600,
),
),
child: const Text('akhiri'),
),
],
),
body: _buildBody(chatState, closureState, remainingTick),
@@ -509,6 +553,10 @@ class _ChatScreenState extends ConsumerState<ChatScreen> {
);
}
// TODO(phase4-followup): Stage 7 moved the customer-initiated goodbye flow
// to ClosingMessageSheet. This inline composer is still reachable when the
// mitra ends a session early (sessionClosing fired by the server). Migrate
// that path to the new sheet too once the early-end UX is finalised.
Widget _buildGoodbyeView(SessionClosureData closureState) {
return SingleChildScrollView(
padding: const EdgeInsets.all(32),

View File

@@ -0,0 +1,68 @@
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import '../../../core/theme/halo_tokens.dart';
import '../../../core/theme/widgets/halo_button.dart';
/// S11 — landing screen after a session has been closed. Replaces the
/// previous "navigate straight to home" behavior so the user gets a soft
/// acknowledgement before re-entering the home shell.
class ThankYouScreen extends StatelessWidget {
const ThankYouScreen({super.key});
@override
Widget build(BuildContext context) {
return PopScope(
canPop: false,
onPopInvokedWithResult: (didPop, _) {
if (!didPop) context.go('/home');
},
child: Scaffold(
backgroundColor: HaloTokens.bg,
body: SafeArea(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: HaloSpacing.s32),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
const Text(
'🤍',
style: TextStyle(fontSize: 72),
textAlign: TextAlign.center,
),
const SizedBox(height: HaloSpacing.s24),
const Text(
'makasih udah curhat',
style: TextStyle(
fontFamily: HaloTokens.fontDisplay,
fontSize: 26,
fontWeight: FontWeight.w700,
color: HaloTokens.ink,
),
textAlign: TextAlign.center,
),
const SizedBox(height: HaloSpacing.s12),
const Text(
'semoga kamu lebih plong sekarang. kalau butuh, bestie selalu siap nemenin lagi.',
style: TextStyle(
fontFamily: HaloTokens.fontBody,
fontSize: 15,
height: 22 / 15,
color: HaloTokens.inkSoft,
),
textAlign: TextAlign.center,
),
const SizedBox(height: HaloSpacing.s40),
HaloButton(
label: 'balik ke home',
fullWidth: true,
onPressed: () => context.go('/home'),
),
],
),
),
),
),
);
}
}