马良AI写作初始化仓库

This commit is contained in:
邓滨杰
2025-09-10 00:07:52 +08:00
parent 3c06bb1a03
commit 39c0f8840f
1309 changed files with 318528 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
import 'package:bloc/bloc.dart';
import 'package:equatable/equatable.dart';
import 'package:ainoval/models/novel_structure.dart'; // Novel 模型
import 'package:ainoval/services/api_service/repositories/editor_repository.dart'; // 引入 Repository
import 'package:ainoval/utils/logger.dart';
part 'sidebar_event.dart';
part 'sidebar_state.dart';
class SidebarBloc extends Bloc<SidebarEvent, SidebarState> {
final EditorRepository _editorRepository; // 依赖注入 EditorRepository
SidebarBloc({required EditorRepository editorRepository})
: _editorRepository = editorRepository,
super(SidebarInitial()) {
on<LoadNovelStructure>(_onLoadNovelStructure);
}
Future<void> _onLoadNovelStructure(
LoadNovelStructure event, Emitter<SidebarState> emit) async {
emit(SidebarLoading());
try {
AppLogger.i('SidebarBloc', '开始加载小说结构和场景摘要: ${event.novelId}');
// 使用专门的API获取包含场景摘要的小说结构
final novelWithSummaries = await _editorRepository.getNovelWithSceneSummaries(event.novelId, readOnly: true);
if (novelWithSummaries != null) {
AppLogger.i('SidebarBloc', '成功加载小说结构和场景摘要');
// 记录每个章节的摘要信息,用于调试
int chaptersWithScene = 0;
int totalScenes = 0;
for (final act in novelWithSummaries.acts) {
for (final chapter in act.chapters) {
if (chapter.scenes.isNotEmpty) {
chaptersWithScene++;
totalScenes += chapter.scenes.length;
}
}
}
AppLogger.i('SidebarBloc', '小说结构信息: 共${novelWithSummaries.acts.length}卷, '
'${chaptersWithScene}章含有场景, 总计${totalScenes}个场景');
emit(SidebarLoaded(novelStructure: novelWithSummaries));
} else {
AppLogger.e('SidebarBloc', '加载小说结构和场景摘要失败: 返回null');
emit(const SidebarError(message: '无法加载小说结构'));
}
} catch (e) {
AppLogger.e('SidebarBloc', '加载小说结构和场景摘要失败', e);
emit(SidebarError(message: '加载小说结构失败: ${e.toString()}'));
}
}
}

View File

@@ -0,0 +1,20 @@
part of 'sidebar_bloc.dart';
abstract class SidebarEvent extends Equatable {
const SidebarEvent();
@override
List<Object> get props => [];
}
// 加载小说结构和摘要事件
class LoadNovelStructure extends SidebarEvent {
final String novelId;
const LoadNovelStructure(this.novelId);
@override
List<Object> get props => [novelId];
}

View File

@@ -0,0 +1,30 @@
part of 'sidebar_bloc.dart';
abstract class SidebarState extends Equatable {
const SidebarState();
@override
List<Object?> get props => [];
}
class SidebarInitial extends SidebarState {}
class SidebarLoading extends SidebarState {}
class SidebarLoaded extends SidebarState {
final Novel novelStructure; // 包含完整结构和场景摘要的小说对象
const SidebarLoaded({required this.novelStructure});
@override
List<Object?> get props => [novelStructure];
}
class SidebarError extends SidebarState {
final String message;
const SidebarError({required this.message});
@override
List<Object?> get props => [message];
}