|
@@ -1,6 +1,9 @@
|
|
|
-import {Component, ElementRef, ViewChild} from '@angular/core';
|
|
|
+import {Component, ElementRef, ViewChild, OnInit} from '@angular/core';
|
|
|
import {trigger, state, style, animate, transition} from '@angular/animations';
|
|
|
import {TestChatCompletion, TestChatMessage} from '../class-chat-completion';
|
|
|
+import {ActivatedRoute} from '@angular/router';
|
|
|
+import {NzCascaderOption} from "ng-zorro-antd/cascader";
|
|
|
+import {Router} from '@angular/router';
|
|
|
|
|
|
@Component({
|
|
|
selector: 'app-mock-interviews',
|
|
@@ -19,6 +22,9 @@ export class MockInterviewsComponent {
|
|
|
showProgress: boolean = false;
|
|
|
progress: number = 0;
|
|
|
|
|
|
+ finalResult: Array<any> = []
|
|
|
+ resultAnswers: Array<any> = []
|
|
|
+
|
|
|
startAnimation() {
|
|
|
this.showProgress = true;
|
|
|
this.showContent = true;
|
|
@@ -27,10 +33,97 @@ export class MockInterviewsComponent {
|
|
|
completion: TestChatCompletion
|
|
|
@ViewChild('chatWindow', {static: false}) chatWindow!: ElementRef;
|
|
|
|
|
|
+ nzOptions: NzCascaderOption[];
|
|
|
+ options = [
|
|
|
+ {
|
|
|
+ value: '阿里面试官',
|
|
|
+ label: '阿里面试官',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: '技术面试',
|
|
|
+ label: '技术面试',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: '简单面',
|
|
|
+ label: '简单面',
|
|
|
+ isLeaf: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '中等难',
|
|
|
+ label: '中等难',
|
|
|
+ isLeaf: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '技术牛',
|
|
|
+ label: '技术牛',
|
|
|
+ isLeaf: true
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '华为面试官',
|
|
|
+ label: '华为面试官',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: '技术面试',
|
|
|
+ label: '技术面试',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: '简单面',
|
|
|
+ label: '简单面',
|
|
|
+ isLeaf: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '中等难',
|
|
|
+ label: '中等难',
|
|
|
+ isLeaf: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '技术牛',
|
|
|
+ label: '技术牛',
|
|
|
+ isLeaf: true
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '苹果面试官',
|
|
|
+ label: '苹果面试官',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: '技术面试',
|
|
|
+ label: '技术面试',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: '简单面',
|
|
|
+ label: '简单面',
|
|
|
+ isLeaf: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '中等难',
|
|
|
+ label: '中等难',
|
|
|
+ isLeaf: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '技术牛',
|
|
|
+ label: '技术牛',
|
|
|
+ isLeaf: true
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ];
|
|
|
|
|
|
- constructor() {
|
|
|
+
|
|
|
+ constructor(private route: ActivatedRoute, private router: Router) {
|
|
|
this.completion = new TestChatCompletion(this.messagesList)
|
|
|
|
|
|
+ this.nzOptions = this.options;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
messagesList: Array<TestChatMessage> = [
|
|
@@ -39,6 +132,13 @@ export class MockInterviewsComponent {
|
|
|
content: "哈喽我的您的面试官,请点击发送,我们将准备开始面试"
|
|
|
},
|
|
|
]
|
|
|
+ messagesListUser: Array<TestChatMessage> = [
|
|
|
+ {
|
|
|
+ role: "assistant",
|
|
|
+ content: "哈喽我的您的面试官,请点击发送,我们将准备开始面试"
|
|
|
+ },
|
|
|
+ ]
|
|
|
+
|
|
|
|
|
|
inputText = '';
|
|
|
|
|
@@ -58,8 +158,8 @@ export class MockInterviewsComponent {
|
|
|
this.inputText += '?';
|
|
|
}
|
|
|
|
|
|
- handleEnter() {
|
|
|
- this.send()
|
|
|
+ async handleEnter() {
|
|
|
+ await this.send()
|
|
|
}
|
|
|
|
|
|
handleKeyDown(event: KeyboardEvent) {
|
|
@@ -73,6 +173,7 @@ export class MockInterviewsComponent {
|
|
|
}
|
|
|
|
|
|
isStart: number = 0
|
|
|
+ typeQuestion: number = 0;
|
|
|
|
|
|
|
|
|
// 滚动到底部
|
|
@@ -81,51 +182,263 @@ export class MockInterviewsComponent {
|
|
|
chatWindow.scrollTop = chatWindow.scrollHeight;
|
|
|
}
|
|
|
|
|
|
+ createReport: boolean = false
|
|
|
+
|
|
|
// 在视图检查后滚动到底部
|
|
|
ngAfterViewChecked() {
|
|
|
this.scrollToBottom();
|
|
|
}
|
|
|
|
|
|
- send() {
|
|
|
- if (this.isStart == 0) {
|
|
|
- this.getQuestion()
|
|
|
- this.isStart += 1
|
|
|
+ async handleButton() {
|
|
|
+ try {
|
|
|
+ await this.send()
|
|
|
+ } catch (e) {
|
|
|
+ console.log(e)
|
|
|
}
|
|
|
- if (this.isStart == 1) {
|
|
|
- this.messagesList.push({
|
|
|
- role: "user",
|
|
|
- content: "开始面试",
|
|
|
- });
|
|
|
- this.inputText = "";
|
|
|
- this.completion.createCompletionByStream();
|
|
|
- this.isStart += 1
|
|
|
- return;
|
|
|
- }
|
|
|
- if (this.inputText != '' && this.isStart > 1) {
|
|
|
- console.log(this.inputText);
|
|
|
- this.messagesList.push({
|
|
|
- role: "user",
|
|
|
- content: this.inputText += '回答完毕',
|
|
|
- });
|
|
|
- this.inputText = "";
|
|
|
- this.completion.createCompletionByStream();
|
|
|
- // 将滚动条滚动到底部
|
|
|
- this.scrollToBottom();
|
|
|
- return;
|
|
|
+ }
|
|
|
+
|
|
|
+ //空消息弹出提示框
|
|
|
+ isVisible = false;
|
|
|
+
|
|
|
+ showModal(): void {
|
|
|
+ this.isVisible = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ handleOk(): void {
|
|
|
+ console.log('Button ok clicked!');
|
|
|
+ this.isVisible = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ handleCancel(): void {
|
|
|
+ console.log('Button cancel clicked!');
|
|
|
+ this.isVisible = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ async send() {
|
|
|
+// if (this.isStart == 0) {
|
|
|
+ // this.getQuestion()
|
|
|
+ // this.isStart += 1
|
|
|
+ // }
|
|
|
+ // if (this.isStart == 1) {
|
|
|
+ // this.messagesList.push({
|
|
|
+ // role: "user",
|
|
|
+ // content: "开始面试",
|
|
|
+ // });
|
|
|
+ // this.inputText = "";
|
|
|
+ // this.completion.createCompletionByStream();
|
|
|
+ // this.isStart += 1
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+ console.log(this.typeQuestion)
|
|
|
+ if (this.typeQuestion == 9) {
|
|
|
+ this.typeQuestion = 0
|
|
|
+ this.createReport = true
|
|
|
+ this.messagesListUser.push(
|
|
|
+ {
|
|
|
+ role: 'user',
|
|
|
+ content: "感谢您的回答,请稍等,正在生成报告.....",
|
|
|
+ }
|
|
|
+ )
|
|
|
+
|
|
|
+ } else {
|
|
|
+ if (this.isStart == 0) {
|
|
|
+ this.messagesListUser.push({
|
|
|
+ role: "user",
|
|
|
+ content: "开始面试",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ role: "assistant",
|
|
|
+ content: "请等待,对话生成中....."
|
|
|
+ });
|
|
|
+
|
|
|
+ await this.getQuestion();
|
|
|
+
|
|
|
+
|
|
|
+ console.log(this.finalResult);
|
|
|
+ console.log(this.finalResult[0].question);
|
|
|
+ this.messagesListUser.push({
|
|
|
+ role: "assistant",
|
|
|
+ content: this.finalResult[this.typeQuestion].question
|
|
|
+ });
|
|
|
+
|
|
|
+ this.isStart++;
|
|
|
+ this.typeQuestion++;
|
|
|
+
|
|
|
+
|
|
|
+ } else {
|
|
|
+ if (this.inputText != '') {
|
|
|
+
|
|
|
+ console.log(this.inputText);
|
|
|
+ this.messagesListUser.push({
|
|
|
+ role: "user",
|
|
|
+ content: this.inputText += '回答完毕',
|
|
|
+ });
|
|
|
+ this.resultAnswers.push(this.inputText);
|
|
|
+
|
|
|
+ this.messagesListUser.push(
|
|
|
+ {
|
|
|
+ role: "assistant",
|
|
|
+ content: this.finalResult[this.typeQuestion].question
|
|
|
+ }
|
|
|
+ );
|
|
|
+ this.typeQuestion
|
|
|
+ console.log(this.resultAnswers);
|
|
|
+ this.inputText = "";
|
|
|
+ // 将滚动条滚动到底部
|
|
|
+ this.scrollToBottom();
|
|
|
+ } else {
|
|
|
+ this.showModal()
|
|
|
+ return
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- getQuestion() {
|
|
|
- this.messagesList.push({
|
|
|
- role: "user",
|
|
|
- content: "您需要扮演一名公司的技术总监Jack,并主持一场,技术岗位招聘的第二轮技术面试。\n" +
|
|
|
- "您任职于大米科技,一家互联网智能手机公司,主要产品是性价比高的手机系列。\n" +
|
|
|
- "当前招聘前端开发工程师,需要熟悉HTML,JS,CSS基础,会Angular前端框架的优先,具有nodejs使用经验的优先。\n" +
|
|
|
- "您是比较负责且严谨的面试官,提问内容偏难。\n" +
|
|
|
- "接下来,请您根据面试岗位招聘要求,分别从技术能力、团队协作、职业规划等方面想出一个个面试问题。\n" +
|
|
|
- "每次只问一个问题,当用户回答:回答完毕时进行下一个问题,当完成了所有的三个问题之后请生成一份关于我面试的报告,其中包括我的每一个回答的得分,和回答的不足之处,以及可以改进的地方.您准备好了之后请回答我说:如果您现在准备好了,请回答开始面试我将开始这一次的面试"
|
|
|
- })
|
|
|
- this.completion.createCompletionByStream();
|
|
|
+
|
|
|
+ async getQuestion() {
|
|
|
+ return new Promise(async (resolve, reject) => {
|
|
|
+ if (this.selectedValue[0]) {
|
|
|
+ this.messagesList.push({
|
|
|
+ role: "user",
|
|
|
+ content: "您需要扮演一名" + this.selectedValue[0] + "公司的技术总监刘,并主持一场," + this.selectedValue[1] + "岗位招聘的第二轮技术面试。\n" +
|
|
|
+ "当前招聘前端开发工程师,需要熟悉HTML,JS,CSS基础,会Angular前端框架的优先,具有nodejs使用经验的优先。\n" +
|
|
|
+ "您是比较负责且严谨的面试官,提问内容" + this.selectedValue[2] + "。\n" +
|
|
|
+ "接下来,请您根据面试岗位招聘要求,分别从技术能力、团队协作、职业规划三个方面想出一个面试问题。\n" +
|
|
|
+ "请严格按照下列格式来生成问题,而且您只需要严格按照下列格式生成问题即可,我之后会给您我的回答,强调一点,你生成的回答不需要任何的修饰,只需要按照下列格式来生成响应的问题即可,注意#后面不要用空格" +
|
|
|
+
|
|
|
+ "#技术能力方面:" +
|
|
|
+ "1." +
|
|
|
+ "2." +
|
|
|
+ "3." +
|
|
|
+ "#团队协作方面:" +
|
|
|
+ "1." +
|
|
|
+ "2." +
|
|
|
+ "3." +
|
|
|
+ "#职业规划方面:" +
|
|
|
+ "1." +
|
|
|
+ "2." +
|
|
|
+ "3."
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.messagesList.push({
|
|
|
+ role: "user",
|
|
|
+ content: "您需要扮演一名华为公司的技术总监刘,并主持一场,后端开发岗位招聘的第二轮技术面试。\n" +
|
|
|
+ "当前招聘前端开发工程师,需要熟悉HTML,JS,CSS基础,会Angular前端框架的优先,具有nodejs使用经验的优先。\n" +
|
|
|
+ "您是比较负责且严谨的面试官,提问内容是面向高级后端工程师的难度。\n" +
|
|
|
+ "接下来,请您根据面试岗位招聘要求,分别从技术能力、团队协作、职业规划三个方面各想出三个面试问题。\n" +
|
|
|
+ "请严格按照下列格式来生成问题,而且您只需要严格按照下列格式生成问题即可,我之后会给您我的回答,强调一点,你生成的回答不需要任何的修饰,只需要按照下列格式来生成响应的问题即可" +
|
|
|
+
|
|
|
+ "技术能力方面:" +
|
|
|
+ "1." +
|
|
|
+ "2." +
|
|
|
+ "3." +
|
|
|
+ "团队协作方面:" +
|
|
|
+ "1." +
|
|
|
+ "2." +
|
|
|
+ "3." +
|
|
|
+ "职业规划方面:" +
|
|
|
+ "1." +
|
|
|
+ "2." +
|
|
|
+ "3."
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ await this.completion.createCompletionByStream();
|
|
|
+ console.log(this.messagesList[this.messagesList.length - 1]);
|
|
|
+
|
|
|
+ //正则
|
|
|
+ const regex = /(.+?):\n([\s\S]+?)(?=\n\n|$)/g;
|
|
|
+
|
|
|
+ let match;
|
|
|
+ while ((match = regex.exec(this.messagesList[this.messagesList.length - 1].content))) {
|
|
|
+ const typeSection = match[1].trim();
|
|
|
+ const questionSection = match[2].trim();
|
|
|
+ const type = typeSection.split('\n')[0];
|
|
|
+
|
|
|
+ const questionRegex = /(\d+)\.\s(.+)/g;
|
|
|
+ let questionMatch;
|
|
|
+ while ((questionMatch = questionRegex.exec(questionSection))) {
|
|
|
+ const questionNumber = questionMatch[1];
|
|
|
+ const question = questionMatch[2];
|
|
|
+
|
|
|
+ this.finalResult.push({
|
|
|
+ type,
|
|
|
+ question: `${questionNumber}. ${question}`,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ console.log(this.finalResult);
|
|
|
+
|
|
|
+ // 删除"请等待,对话生成中....."
|
|
|
+ await this.messagesListUser.splice(this.messagesListUser.length - 1, 1);
|
|
|
+
|
|
|
+
|
|
|
+ // if () {
|
|
|
+ // console.log(technicalAbilityQuestions)
|
|
|
+ // console.log(teamworkQuestions)
|
|
|
+ // console.log(careerPlanningQuestions);
|
|
|
+ // console.log(this.formattedQuestionsArray)
|
|
|
+ // } else {
|
|
|
+ // this.messagesListUser.push(
|
|
|
+ // {
|
|
|
+ // role: 'assistant',
|
|
|
+ // content: "生成失败,请检查余额",
|
|
|
+ // }
|
|
|
+ // )
|
|
|
+ // }
|
|
|
+
|
|
|
+
|
|
|
+ // this.messagesListUser.push({
|
|
|
+ // role: 'assistant',
|
|
|
+ // content: this.messagesList[this.messagesList.length - 1].content,
|
|
|
+ // });
|
|
|
+ resolve(undefined);
|
|
|
+ });
|
|
|
+
|
|
|
}
|
|
|
|
|
|
+ //路由跳转默认进入逻辑
|
|
|
+ selectedIndex = 0;
|
|
|
+
|
|
|
+
|
|
|
+ ngOnInit() {
|
|
|
+ this.route.queryParams.subscribe(params => {
|
|
|
+ console.log(params)
|
|
|
+ this.selectedIndex = params['tabIndex'] || 0;
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ //级联数据
|
|
|
+ selectedValue: any[] = []
|
|
|
+
|
|
|
+
|
|
|
+ onChanges(values: string[]): void {
|
|
|
+ console.log(values);
|
|
|
+ }
|
|
|
+
|
|
|
+ //联级的确认按钮
|
|
|
+ isLoadingOne = false;
|
|
|
+
|
|
|
+ loadOne(): void {
|
|
|
+ this.isLoadingOne = true;
|
|
|
+ setTimeout(() => {
|
|
|
+ this.isLoadingOne = false;
|
|
|
+ this.handleClick()
|
|
|
+ }, 1000);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ handleClick(): void {
|
|
|
+ this.selectedIndex = 2
|
|
|
+ console.log(this.selectedValue)
|
|
|
+ console.log(this.selectedValue[0])
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
+
|
|
|
+
|