화면 타이틀, 스낵바/다이얼로그 메시지, 백그라운드 알림 문구 등 사용자에게 노출되는 텍스트에서 이모티콘을 전부 제거 (코드 주석은 대상 아님). 아이콘 위젯은 그대로 유지. main_dashboard.dart의 "계정 강제 삭제" 타일 아이콘 색상도 빨간색 대신 다른 타일과 동일한 검정(AppPalette.ink)으로 통일. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
34 lines
1.2 KiB
Dart
34 lines
1.2 KiB
Dart
// 🎓 학생 대시보드(마스터 계정 전용 계정 강제 삭제)의 기능(서버 통신/상태) 담당 컨트롤러.
|
|
import 'dart:convert';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:http/http.dart' as http;
|
|
import '../config.dart';
|
|
|
|
class StudentDashboardController extends ChangeNotifier {
|
|
bool _isLoading = false;
|
|
bool get isLoading => _isLoading;
|
|
|
|
/// 👑 마스터 계정 전용 회원 삭제 API 호출.
|
|
Future<(bool success, String message)> deleteUser(String userId) async {
|
|
_isLoading = true;
|
|
notifyListeners();
|
|
final url = Uri.parse('$baseUrl/api/users/delete/$userId');
|
|
|
|
try {
|
|
final response = await http.delete(url);
|
|
if (response.statusCode == 200) {
|
|
final responseData = jsonDecode(response.body);
|
|
return (true, '${responseData['message']}');
|
|
} else {
|
|
final errorData = jsonDecode(response.body);
|
|
return (false, '삭제 실패: ${errorData['detail'] ?? '알 수 없는 오류'}');
|
|
}
|
|
} catch (e) {
|
|
return (false, '서버와 연결할 수 없습니다. (네트워크 에러)');
|
|
} finally {
|
|
_isLoading = false;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
}
|