Skip to content
Snippets Groups Projects
Commit fe8eb505 authored by Stefan Plociennik's avatar Stefan Plociennik
Browse files

focus on input when opening new bad word input; censor topics in expantion panel

parent c31f46ff
Branches
Tags
No related merge requests found
......@@ -12,7 +12,7 @@
<mat-accordion hideToggle class="new-Badword" multi>
<mat-expansion-panel class="color-background"
(opened)="enterBadword = true"
(opened)="enterBadword = true; focusBadWordInput()"
(closed)="enterBadword = false">
<mat-expansion-panel-header class="color-background">
<mat-panel-description>
......@@ -23,7 +23,7 @@
<mat-form-field>
<mat-label>{{'topic-cloud-dialog.enter-word' | translate}}</mat-label>
<input [(ngModel)]="newBadWord" matInput>
<input matInput id="bad-word-input" [(ngModel)]="newBadWord">
</mat-form-field>
<button mat-button color="primary" (click)="addBadword()">
......@@ -120,7 +120,7 @@
(searchMode ? filteredKeywords : keywords); let i = index" [attr.data-index]="i">
<mat-expansion-panel-header class="color-surface">
<mat-panel-title [ngClass]="{'edit-keyword': editedKeyword}">
{{keyword.keyword}}
{{profanityFilter ? getKeywordWithoutProfanity(keyword.keyword) : keyword.keyword}}
</mat-panel-title>
<mat-panel-description>
{{keyword.questions.length}}
......
......@@ -81,7 +81,7 @@ export class TopicCloudAdministrationComponent implements OnInit {
},
{
keywordID: 6,
keyword: 'Profanity',
keyword: 'Arsch',
questions: [
'Das ist eine Testfrage fuer den Profanity Filter, du Arschloch',
'Englisch: Fuck you!',
......@@ -94,6 +94,10 @@ export class TopicCloudAdministrationComponent implements OnInit {
];
getKeywordWithoutProfanity(keyword: string): string {
return this.topicCloudAdminService.filterProfanityWords(keyword);
}
constructor(public cloudDialogRef: MatDialogRef<TagCloudComponent>,
public confirmDialog: MatDialog,
private notificationService: NotificationService,
......@@ -240,6 +244,12 @@ export class TopicCloudAdministrationComponent implements OnInit {
return undefined;
}
focusBadWordInput() {
setTimeout(() => {
document.getElementById('bad-word-input').focus();
}, 100);
}
keywordtoSpacy(text: string,model: string) {
for (const keyword of this.keywords) {
if (keyword.keyword===text) {
......
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