Skip to content
Snippets Groups Projects
Commit 71a22b14 authored by Lars Wächter's avatar Lars Wächter
Browse files

Fix linter erros and keyword list

parent e4bdd52c
No related merge requests found
......@@ -191,9 +191,8 @@ export class CreateCommentComponent implements OnInit, OnDestroy {
this.hasSpellcheckConfidence = false;
return;
}
console.log(document.getElementById('langSelect').innerText);
if(document.getElementById('langSelect').innerText.includes(this.newLang)
|| document.getElementById('langSelect').innerText.includes('auto')){
if(this.selectedLang === 'auto' && (document.getElementById('langSelect').innerText.includes(this.newLang)
|| document.getElementById('langSelect').innerText.includes('auto'))) {
if(wordsCheck.language.name.includes('German')){
this.selectedLang = 'de-DE';
}else if(wordsCheck.language.name.includes('English')){
......
......@@ -55,14 +55,15 @@
</mat-list-item>
</mat-list>
</ars-row>
<span *ngIf="keywords.length <= 0 && !this.isLoading">
<p>{{ 'spacy-dialog.empty-nouns' | translate }}</p>
</span>
<span *ngIf="!langSupported">
<p class="manual-input-title">{{ 'spacy-dialog.add-manually' | translate }}</p>
<textarea class="manual-input" [(ngModel)]="manualKeywords" (input)="manualKeywordsToKeywords()"></textarea>
</span>
<ars-row>
<span *ngIf="keywords.length <= 0 && !this.isLoading">
<p>{{ 'spacy-dialog.empty-nouns' | translate }}</p>
</span>
<span *ngIf="!langSupported">
<p class="manual-input-title">{{ 'spacy-dialog.add-manually' | translate }}</p>
<textarea class="manual-input" [(ngModel)]="manualKeywords" (input)="manualKeywordsToKeywords()"></textarea>
</span>
</ars-row>
</div>
</ars-row>
......
......@@ -50,10 +50,11 @@
}
.manual-input{
background-color: transparent;
border: 1px solid var(--on-dialog);
padding: 5px;
border-radius: 5px;
color: var(--on-dialog);
border: 1px solid var(--on-dialog);
padding: 5px;
border-radius: 5px;
color: var(--on-dialog);
width: 100%
}
.manual-input-title{
margin-top: 15px;
......
......@@ -27,8 +27,7 @@ export class SpacyDialogComponent implements OnInit, AfterContentInit {
keywordsOriginal: Keyword[] = [];
isLoading = false;
langSupported = true;
manualKeywords : string = "";
manualKeywords = '';
constructor(
protected langService: LanguageService,
......@@ -56,14 +55,13 @@ export class SpacyDialogComponent implements OnInit, AfterContentInit {
buildCreateCommentActionCallback() {
return () => {
this.comment.keywordsFromQuestioner = this.keywords.filter(kw => kw.selected).map(kw => kw.word);
this.comment.keywordsFromSpacy = this.keywordsOriginal.map(kw => kw.word);
this.comment.keywordsFromQuestioner = this.keywords.filter(kw => kw.selected && kw.word.length).map(kw => kw.word);
this.comment.keywordsFromSpacy = this.keywordsOriginal.filter(kw => kw.word.length).map(kw => kw.word);
this.dialogRef.close(this.comment);
};
}
evalInput(model: Model) {
const keywords: Keyword[] = [];
let regex;
if(this.commentLang === 'de') {
......@@ -76,7 +74,6 @@ export class SpacyDialogComponent implements OnInit, AfterContentInit {
this.langSupported = false;
return;
}
this.isLoading = true;
// N at first pos = all Nouns(NN de/en) including singular(NN, NNP en), plural (NNPS, NNS en), proper Noun(NNE, NE de)
......@@ -95,8 +92,10 @@ export class SpacyDialogComponent implements OnInit, AfterContentInit {
}
}
}
this.keywords = keywords;
this.keywordsOriginal = keywords;
// Deep copy
this.keywords = JSON.parse(JSON.stringify(keywords));
this.keywordsOriginal = JSON.parse(JSON.stringify(keywords));;
}, () => {
this.keywords = [];
this.keywordsOriginal = [];
......@@ -132,14 +131,18 @@ export class SpacyDialogComponent implements OnInit, AfterContentInit {
}
manualKeywordsToKeywords(){
let tempKeywords = this.manualKeywords.replace(/\s/g,'').split(",");
this.keywords = tempKeywords.map((keyword)=>{
return {
"word": keyword,
"completed": true,
"editing": false,
"selected": true
}
})
const tempKeywords = this.manualKeywords.replace(/\s/g,'');
if(tempKeywords.length) {
this.keywords = tempKeywords.split(',').map((keyword) => (
{
word: keyword,
completed: true,
editing: false,
selected: true
}
));
} else {
this.keywords = [];
}
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment