- 화면마다 위젯/스타일만 담당하는 UI 파일과, 서버통신/상태/파생로직만 담당하는 ChangeNotifier 컨트롤러 파일로 1:1 분리 (lib/screens/ -> lib/ui/ + lib/function/) - UI는 ListenableBuilder로 컨트롤러를 구독해서 재렌더링, 버튼은 컨트롤러 메서드만 호출 - 다이얼로그/스낵바 등 위젯 코드는 전부 UI 파일에 남기고, 컨트롤러는 결과값(성공여부+메시지) 또는 콜백으로만 UI와 통신 (BuildContext/Widget 의존성 없음) - 디자인/레이아웃은 기존과 완전히 동일하게 유지 (순수 코드 재배치) - change_password_screen.dart, debug_pocket_main.dart(미사용 파일)는 깨지지 않게 import 경로만 갱신하고 리팩터링은 보류
68 lines
2.1 KiB
Dart
68 lines
2.1 KiB
Dart
// 👥 교사용 학생 계정 관리 화면의 기능(서버 통신/상태) 담당 컨트롤러.
|
|
import 'dart:convert';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:http/http.dart' as http;
|
|
import '../config.dart';
|
|
|
|
class TeacherStudentManagementController extends ChangeNotifier {
|
|
bool _isWorking = false;
|
|
bool get isWorking => _isWorking;
|
|
|
|
/// ➕ 학생 계정 추가. (성공여부, 메시지)를 반환한다 — UI가 성공했을 때만 입력칸을 비운다.
|
|
Future<(bool success, String message)> addStudentAccount({
|
|
required String studentId,
|
|
required String name,
|
|
required String password,
|
|
}) async {
|
|
_isWorking = true;
|
|
notifyListeners();
|
|
try {
|
|
final url = Uri.parse('$baseUrl/api/users/register-student');
|
|
final response = await http.post(
|
|
url,
|
|
headers: {"Content-Type": "application/json"},
|
|
body: jsonEncode({
|
|
"studentId": studentId,
|
|
"name": name,
|
|
"password": password,
|
|
}),
|
|
);
|
|
final result = jsonDecode(utf8.decode(response.bodyBytes));
|
|
|
|
if (response.statusCode == 200 || response.statusCode == 201) {
|
|
return (true, '✅ 계정 생성 완료: ${result['message'] ?? '성공'}');
|
|
} else {
|
|
return (false, '❌ 생성 실패: ${result['message'] ?? '오류 발생'}');
|
|
}
|
|
} catch (e) {
|
|
return (false, '🚨 네트워크 에러: $e');
|
|
} finally {
|
|
_isWorking = false;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
|
|
/// ❌ 학생 계정 삭제.
|
|
Future<(bool success, String message)> deleteStudentAccount(
|
|
String studentId,
|
|
) async {
|
|
_isWorking = true;
|
|
notifyListeners();
|
|
final url = Uri.parse('$baseUrl/api/users/delete/$studentId');
|
|
try {
|
|
final response = await http.delete(url);
|
|
if (response.statusCode == 200) {
|
|
final resData = jsonDecode(utf8.decode(response.bodyBytes));
|
|
return (true, '✅ ${resData['message']}');
|
|
} else {
|
|
return (false, '❌ 삭제 실패하였습니다.');
|
|
}
|
|
} catch (e) {
|
|
return (false, '❌ 서버 에러 발생');
|
|
} finally {
|
|
_isWorking = false;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
}
|