| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <?php
- namespace App\Filament\Pages;
- use App\Services\QuestionBankService;
- use App\Services\KnowledgeGraphService;
- use BackedEnum;
- use Filament\Notifications\Notification;
- use Filament\Pages\Page;
- use UnitEnum;
- use Livewire\Attributes\Computed;
- class QuestionGeneration extends Page
- {
- protected static ?string $title = '题目生成';
- protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-sparkles';
- protected static ?string $navigationLabel = '题目生成';
- protected static string|UnitEnum|null $navigationGroup = '资源';
- protected static ?int $navigationSort = 21;
- protected string $view = 'filament.pages.question-generation';
- public ?string $generateKpCode = null;
- public array $selectedSkills = [];
- public int $questionCount = 100;
- public ?string $generateDifficulty = null;
- public ?string $generateType = null;
- public ?string $promptTemplate = null;
- public bool $isGenerating = false;
- public ?string $currentTaskId = null;
- public int $currentTaskProgress = 0;
- public ?string $currentTaskMessage = null;
- #[Computed(cache: false)]
- public function knowledgePointOptions(): array
- {
- return app(\App\Services\QuestionServiceApi::class)->getKnowledgePointOptions();
- }
- #[Computed(cache: false)]
- public function skillsOptions(): array
- {
- if (!$this->generateKpCode) {
- return [];
- }
- $service = app(KnowledgeGraphService::class);
- return $service->getSkillsByKnowledgePoint($this->generateKpCode);
- }
- #[Computed(cache: false)]
- public function questionTypeOptions(): array
- {
- return [
- 'CHOICE' => '单选题',
- 'MULTIPLE_CHOICE' => '多选题',
- 'FILL_IN_THE_BLANK' => '填空题',
- 'CALCULATION' => '计算题',
- 'WORD_PROBLEM' => '应用题',
- 'PROOF' => '证明题',
- ];
- }
- #[Computed(cache: false)]
- public function promptOptions(): array
- {
- $service = app(\App\Services\QuestionServiceApi::class);
- $prompts = $service->listPrompts(type: 'question_generation', active: 'yes');
- // 只展示激活的题目生成模板
- $options = [];
- foreach ($prompts as $prompt) {
- $label = $prompt['template_name'];
- if (!empty($prompt['description'])) {
- $label .= ' - ' . (is_string($prompt['description']) ? $prompt['description'] : json_encode($prompt['description']));
- }
- $options[$prompt['template_name']] = $label;
- }
- // 自动选择第一个激活模板
- if (!$this->promptTemplate && !empty($options)) {
- $this->promptTemplate = array_key_first($options);
- }
- return $options;
- }
- public function updatedGenerateKpCode(): void
- {
- // 选择新知识点时清空技能选择
- $this->selectedSkills = [];
- }
- public function toggleAllSkills(): void
- {
- $skillsOptions = $this->skillsOptions;
- $skillsCount = count($skillsOptions);
- \Log::info('[ToggleAllSkills] Called', [
- 'skillsCount' => $skillsCount,
- 'selectedSkillsCount' => count($this->selectedSkills),
- 'skillsOptions' => array_column($skillsOptions, 'code'),
- 'selectedSkills' => $this->selectedSkills
- ]);
- if ($skillsCount === 0) {
- \Log::info('[ToggleAllSkills] No skills available, returning');
- return;
- }
- // 获取所有技能的编码列表
- $allSkillCodes = array_values(array_unique(array_column($skillsOptions, 'code')));
- // 检查当前选中的技能是否等于全部技能
- if (count($this->selectedSkills) === $skillsCount &&
- count(array_intersect($this->selectedSkills, $allSkillCodes)) === $skillsCount) {
- // 如果已全选,则清空
- $this->selectedSkills = [];
- \Log::info('[ToggleAllSkills] Deselecting all skills');
- } else {
- // 否则全选
- $this->selectedSkills = $allSkillCodes;
- \Log::info('[ToggleAllSkills] Selecting all skills', ['newSelection' => $this->selectedSkills]);
- }
- }
- public function executeGenerate(): void
- {
- if ($this->isGenerating) {
- return;
- }
- if (!$this->generateKpCode) {
- Notification::make()->title('请选择知识点')->danger()->send();
- return;
- }
- $skillsOptions = $this->skillsOptions;
- $skillsCount = count($skillsOptions);
- if ($skillsCount > 0 && empty($this->selectedSkills)) {
- Notification::make()->title('请选择至少一个技能')->danger()->send();
- return;
- }
- $this->isGenerating = true;
- $this->currentTaskId = null;
- try {
- $service = app(QuestionBankService::class);
- $callbackUrl = route('api.questions.callback');
- \Log::info("[QuestionGen] 开始生成,callback URL: " . $callbackUrl);
- $result = $service->generateIntelligentQuestions([
- 'kp_code' => $this->generateKpCode,
- 'skills' => $this->selectedSkills,
- 'count' => $this->questionCount,
- 'difficulty' => $this->generateDifficulty,
- 'type' => $this->generateType,
- 'prompt_template' => $this->promptTemplate ?? null
- ], $callbackUrl);
- if ($result['success'] ?? false) {
- $this->currentTaskId = $result['task_id'] ?? null;
- \Log::info("[QuestionGen] 任务已创建: {$this->currentTaskId},启动前端监控");
- Notification::make()
- ->title('正在生成题目')
- ->body("任务 ID: {$this->currentTaskId}\nAI正在后台生成,预计需要30-60秒...")
- ->info()
- ->persistent()
- ->send();
- $this->dispatch('start-async-task-monitoring');
- } else {
- $this->isGenerating = false;
- Notification::make()
- ->title('创建任务失败')
- ->body($result['message'] ?? '未知错误')
- ->danger()
- ->send();
- }
- } catch (\Exception $e) {
- $this->isGenerating = false;
- \Log::error("[QuestionGen] 生成异常: " . $e->getMessage());
- Notification::make()
- ->title('生成异常')
- ->body($e->getMessage())
- ->danger()
- ->send();
- }
- }
- public function forceCloseStatusBar(string $taskId): void
- {
- \Log::info("[QuestionGen] 强制关闭状态栏: {$taskId}");
- $this->isGenerating = false;
- $this->currentTaskId = null;
- Notification::make()
- ->title('⚠️ 任务超时')
- ->body('生成任务可能已完成,请刷新页面查看')
- ->warning()
- ->persistent()
- ->send();
- }
- }
|