mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
125 lines
3.4 KiB
Dart
125 lines
3.4 KiB
Dart
import 'package:PiliPlus/http/fav.dart';
|
|
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/http/video.dart';
|
|
import 'package:PiliPlus/models_new/fav/fav_pgc/data.dart';
|
|
import 'package:PiliPlus/models_new/fav/fav_pgc/list.dart';
|
|
import 'package:PiliPlus/pages/common/multi_select/multi_select_controller.dart';
|
|
import 'package:flutter/foundation.dart' show kDebugMode;
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class FavPgcController
|
|
extends MultiSelectController<FavPgcData, FavPgcItemModel> {
|
|
final int type;
|
|
final int followStatus;
|
|
|
|
FavPgcController(this.type, this.followStatus);
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
queryData();
|
|
}
|
|
|
|
@override
|
|
final RxBool allSelected = false.obs;
|
|
|
|
@override
|
|
void handleSelect({bool checked = false, bool disableSelect = true}) {
|
|
allSelected.value = checked;
|
|
super.handleSelect(checked: checked, disableSelect: disableSelect);
|
|
}
|
|
|
|
@override
|
|
List<FavPgcItemModel>? getDataList(FavPgcData response) {
|
|
return response.list;
|
|
}
|
|
|
|
@override
|
|
Future<LoadingState<FavPgcData>> customGetData() => FavHttp.favPgc(
|
|
type: type,
|
|
followStatus: followStatus,
|
|
pn: page,
|
|
);
|
|
|
|
void onDisable() {
|
|
if (checkedCount != 0) {
|
|
handleSelect();
|
|
}
|
|
enableMultiSelect.value = false;
|
|
}
|
|
|
|
// 取消追番
|
|
Future<void> pgcDel(int index, seasonId) async {
|
|
final result = await VideoHttp.pgcDel(seasonId: seasonId);
|
|
if (result case Success(:final response)) {
|
|
loadingState
|
|
..value.data!.removeAt(index)
|
|
..refresh();
|
|
SmartDialog.showToast(response);
|
|
} else {
|
|
result.toast();
|
|
}
|
|
}
|
|
|
|
@override
|
|
void onRemove() {
|
|
assert(false, 'call onUpdateList');
|
|
}
|
|
|
|
Future<void> onUpdateList(int followStatus) async {
|
|
final removeList = allChecked.toSet();
|
|
final res = await VideoHttp.pgcUpdate(
|
|
seasonId: removeList.map((item) => item.seasonId).join(','),
|
|
status: followStatus,
|
|
);
|
|
if (res case Success(:final response)) {
|
|
try {
|
|
final ctr = Get.find<FavPgcController>(tag: '$type$followStatus');
|
|
if (ctr.loadingState.value case Success(:final response)) {
|
|
response?.insertAll(
|
|
0,
|
|
removeList.map((item) => item..checked = false),
|
|
);
|
|
ctr
|
|
..loadingState.refresh()
|
|
..allSelected.value = false;
|
|
}
|
|
} catch (e) {
|
|
if (kDebugMode) debugPrint('fav pgc onUpdate: $e');
|
|
}
|
|
afterDelete(removeList);
|
|
SmartDialog.showToast(response);
|
|
} else {
|
|
res.toast();
|
|
}
|
|
}
|
|
|
|
Future<void> onUpdate(int index, int followStatus, int? seasonId) async {
|
|
final res = await VideoHttp.pgcUpdate(
|
|
seasonId: seasonId.toString(),
|
|
status: followStatus,
|
|
);
|
|
if (res case Success(:final response)) {
|
|
List<FavPgcItemModel> list = loadingState.value.data!;
|
|
final item = list.removeAt(index);
|
|
loadingState.refresh();
|
|
try {
|
|
final ctr = Get.find<FavPgcController>(tag: '$type$followStatus');
|
|
if (ctr.loadingState.value case Success(:final response)) {
|
|
response?.insert(0, item);
|
|
ctr
|
|
..loadingState.refresh()
|
|
..allSelected.value = false;
|
|
}
|
|
} catch (e) {
|
|
if (kDebugMode) debugPrint('fav pgc pgcUpdate: $e');
|
|
}
|
|
SmartDialog.showToast(response);
|
|
} else {
|
|
res.toast();
|
|
}
|
|
}
|
|
}
|