update dependencies, migrate subscribe, add submit type to buttons

This commit is contained in:
_Bastler 2024-02-26 15:11:48 +01:00
parent 43da1441d9
commit 31dc5e5c25
31 changed files with 4388 additions and 5047 deletions

View File

@ -39,7 +39,10 @@
"buildOptimizer": false, "buildOptimizer": false,
"sourceMap": true, "sourceMap": true,
"optimization": false, "optimization": false,
"namedChunks": true "namedChunks": true,
"allowedCommonJsDependencies": [
"moment"
]
}, },
"configurations": { "configurations": {
"production": { "production": {
@ -121,7 +124,8 @@
} }
} }
} }
}}, }
},
"cli": { "cli": {
"analytics": false "analytics": false
} }

8042
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "bstlboard", "name": "bstlboard",
"version": "2.0.1", "version": "2.1.0",
"license": "AGPL3", "license": "AGPL3",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
@ -12,35 +12,35 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^17.0.9", "@angular/animations": "^17.2.2",
"@angular/cdk": "^17.0.5", "@angular/cdk": "^17.2.1",
"@angular/common": "^17.0.9", "@angular/common": "^17.2.2",
"@angular/compiler": "^17.0.9", "@angular/compiler": "^17.2.2",
"@angular/core": "^17.0.9", "@angular/core": "^17.2.2",
"@angular/forms": "^17.0.9", "@angular/forms": "^17.2.2",
"@angular/material": "^17.0.5", "@angular/material": "^17.2.1",
"@angular/material-moment-adapter": "^17.0.5", "@angular/material-moment-adapter": "^17.2.1",
"@angular/platform-browser": "^17.0.9", "@angular/platform-browser": "^17.2.2",
"@angular/platform-browser-dynamic": "^17.0.9", "@angular/platform-browser-dynamic": "^17.2.2",
"@angular/router": "^17.0.9", "@angular/router": "^17.2.2",
"@angular/service-worker": "^17.0.9", "@angular/service-worker": "^17.2.2",
"moment": "^2.30.1", "moment": "^2.30.1",
"rxjs": "~7.8.1", "rxjs": "~7.8.1",
"tslib": "^2.6.2", "tslib": "^2.6.2",
"zone.js": "~0.14.3" "zone.js": "~0.14.4"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^17.0.10", "@angular-devkit/build-angular": "^17.2.1",
"@angular/cli": "^17.0.10", "@angular/cli": "^17.2.1",
"@angular/compiler-cli": "^17.0.9", "@angular/compiler-cli": "^17.2.2",
"@angular/localize": "^17.0.9", "@angular/localize": "^17.2.2",
"@types/jasmine": "^5.1.4", "@types/jasmine": "^5.1.4",
"jasmine-core": "~5.1.1", "jasmine-core": "~5.1.2",
"karma": "^6.4.2", "karma": "^6.4.3",
"karma-chrome-launcher": "~3.2.0", "karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1", "karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0", "karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0", "karma-jasmine-html-reporter": "^2.1.0",
"typescript": "~5.2.2" "typescript": "~5.3.3"
} }
} }

View File

@ -48,7 +48,8 @@ export class AuthenticatedGuard implements CanActivate {
canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot) { canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
const that = this; const that = this;
return this.authService.getAuth().then((data: any) => { return this.authService.getAuth().then((data: any) => {
this.userService.get().subscribe((user: any) => { this.userService.get().subscribe({
next: (user: any) => {
let updateLocale = false; let updateLocale = false;
let updateTheme = false; let updateTheme = false;
let darktheme = 'false'; let darktheme = 'false';
@ -71,6 +72,7 @@ export class AuthenticatedGuard implements CanActivate {
if (updateLocale || updateTheme) { if (updateLocale || updateTheme) {
window.location.reload(); window.location.reload();
} }
}
}); });
return true; return true;

View File

@ -7,14 +7,14 @@ import { CommentService } from '../../services/comment.service';
@Component({ @Component({
selector: 'page-comment', selector: 'page-comment',
templateUrl: './comment.page.html', templateUrl: './comment.page.html',
styleUrls: [ './comment.page.scss' ] styleUrls: ['./comment.page.scss']
}) })
export class PageComment implements OnInit { export class PageComment implements OnInit {
id: number; id: number;
comment: any; comment: any;
notfound: boolean = false; notfound: boolean = false;
ignoreSubcomments: string[] = [ 'entry' ]; ignoreSubcomments: string[] = ['entry'];
constructor(private commentService: CommentService, constructor(private commentService: CommentService,
private route: ActivatedRoute) { } private route: ActivatedRoute) { }
@ -22,12 +22,15 @@ export class PageComment implements OnInit {
ngOnInit(): void { ngOnInit(): void {
this.id = +this.route.snapshot.paramMap.get('id'); this.id = +this.route.snapshot.paramMap.get('id');
this.commentService.getComment(this.id).subscribe((data) => { this.commentService.getComment(this.id).subscribe({
next: (data) => {
this.comment = data; this.comment = data;
}, (error) => { },
error: (error) => {
if (error.status == 404) { if (error.status == 404) {
this.notfound = true; this.notfound = true;
} }
}
}) })
} }

View File

@ -31,36 +31,40 @@ export class PageEntries implements OnInit, OnDestroy {
ngOnInit(): void { ngOnInit(): void {
this.boundRefresh = this.refresh.bind(this); this.boundRefresh = this.refresh.bind(this);
this.boundUpdate = this.update.bind(this); this.boundUpdate = this.update.bind(this);
this.route.queryParams.subscribe(params => { this.route.queryParams.subscribe({
next: (params) => {
if (this.init) { if (this.init) {
this.entries = { filter: {} }; this.entries = { filter: {} };
if (params[ 'p' ]) { if (params['p']) {
this.entries.number = +params[ 'p' ] - 1; this.entries.number = +params['p'] - 1;
if (this.entries.number < 0) { if (this.entries.number < 0) {
this.entries.number = 0; this.entries.number = 0;
} }
} }
if (params[ 's' ]) { if (params['s']) {
this.entries.size = +params[ 's' ]; this.entries.size = +params['s'];
} }
if (params[ 'asc' ]) { if (params['asc']) {
this.asc = true; this.asc = true;
} }
for (const param in params) { for (const param in params) {
if (param != 's' && param != 'p' && param != 'asc') { if (param != 's' && param != 'p' && param != 'asc') {
this.entries.filter[ param ] = params[ param ]; this.entries.filter[param] = params[param];
} }
} }
this.settingsSubscription = this.settingsService.settings.subscribe((settings) => { this.settingsSubscription = this.settingsService.settings.subscribe({
next: (settings) => {
this.settings = settings; this.settings = settings;
this.refresh(); this.refresh();
this.init = false; this.init = false;
}
}) })
} }
}
}); });
} }
@ -75,11 +79,14 @@ export class PageEntries implements OnInit, OnDestroy {
const filter = JSON.parse(JSON.stringify(this.entries.filter || {})) const filter = JSON.parse(JSON.stringify(this.entries.filter || {}))
this.entries.content = null; this.entries.content = null;
this.fetch(this.entries.number || 0, this.entries.size || this.settings.pageSize, this.asc, this.entries.filter).subscribe((data: any) => { this.fetch(this.entries.number || 0, this.entries.size || this.settings.pageSize, this.asc, this.entries.filter).subscribe({
next: (data: any) => {
this.entries = data; this.entries = data;
this.entries.filter = filter; this.entries.filter = filter;
}, (error) => { },
error: (error) => {
this.entries = { error: error }; this.entries = { error: error };
}
}) })
} }
@ -98,7 +105,7 @@ export class PageEntries implements OnInit, OnDestroy {
if (this.entries.filter) { if (this.entries.filter) {
for (const param in this.entries.filter) { for (const param in this.entries.filter) {
params[ param ] = this.entries.filter[ param ]; params[param] = this.entries.filter[param];
} }
} }
@ -111,11 +118,13 @@ export class PageEntries implements OnInit, OnDestroy {
}); });
const filter = JSON.parse(JSON.stringify(this.entries.filter || {})) const filter = JSON.parse(JSON.stringify(this.entries.filter || {}))
this.fetch(event.pageIndex, event.pageSize, this.asc, this.entries.filter).subscribe((data: any) => { this.fetch(event.pageIndex, event.pageSize, this.asc, this.entries.filter).subscribe({
next: (data: any) => {
this.entries = data; this.entries = data;
this.entries.filter = filter; this.entries.filter = filter;
}, (error) => { }, error: (error) => {
this.entries = { error: error }; this.entries = { error: error };
}
}) })
} }

View File

@ -46,10 +46,10 @@
</mat-card-content> </mat-card-content>
<mat-card-actions> <mat-card-actions>
<button *ngIf="!working && !entry.id" mat-raised-button color="primary" [disabled]="form.invalid"> <button type="submit" *ngIf="!working && !entry.id" mat-raised-button color="primary" [disabled]="form.invalid">
{{'submission.create' | i18n}} {{'submission.create' | i18n}}
</button> </button>
<button *ngIf="!working && entry.id" mat-raised-button color="primary" [disabled]="form.invalid"> <button type="submit" *ngIf="!working && entry.id" mat-raised-button color="primary" [disabled]="form.invalid">
{{'submission.update' | i18n}} {{'submission.update' | i18n}}
</button> </button>
<a *ngIf="success" mat-button color="primary" routerLink="/e/{{entry.id}}">{{'submission.success' | i18n}}</a> <a *ngIf="success" mat-button color="primary" routerLink="/e/{{entry.id}}">{{'submission.success' | i18n}}</a>

View File

@ -11,14 +11,14 @@ import { Subscription } from 'rxjs';
@Component({ @Component({
selector: 'page-entry-edit', selector: 'page-entry-edit',
templateUrl: './edit.page.html', templateUrl: './edit.page.html',
styleUrls: [ './edit.page.scss' ] styleUrls: ['./edit.page.scss']
}) })
export class PageEntryEdit implements OnInit, OnDestroy { export class PageEntryEdit implements OnInit, OnDestroy {
id: number; id: number;
entry: any; entry: any;
entryTypes: string[] = [ 'LINK', 'DISCUSSION', 'QUESTION', 'INTERN' ]; entryTypes: string[] = ['LINK', 'DISCUSSION', 'QUESTION', 'INTERN'];
entryType: string = this.entryTypes[ 0 ]; entryType: string = this.entryTypes[0];
notfound: boolean = false; notfound: boolean = false;
working: boolean = false; working: boolean = false;
success: boolean = false; success: boolean = false;
@ -37,41 +37,49 @@ export class PageEntryEdit implements OnInit, OnDestroy {
ngOnInit(): void { ngOnInit(): void {
this.form = this.formBuilder.group({ this.form = this.formBuilder.group({
entryType: [ '', Validators.required ], entryType: ['', Validators.required],
url: [ '', Validators.required ], url: ['', Validators.required],
title: [ '', Validators.required ], title: ['', Validators.required],
text: [ '', Validators.nullValidator ], text: ['', Validators.nullValidator],
}); });
this.settingsSubscription = this.settingsService.settings.subscribe((settings) => { this.settingsSubscription = this.settingsService.settings.subscribe({
next: (settings) => {
this.settings = settings; this.settings = settings;
}
}); });
this.form.get('entryType').setValue(this.entryType); this.form.get('entryType').setValue(this.entryType);
this.form.get('entryType').valueChanges.subscribe((value) => { this.form.get('entryType').valueChanges.subscribe({
next: (value) => {
this.entryType = value; this.entryType = value;
switch (value) { switch (value) {
case 'LINK': case 'LINK':
this.form.get('url').setValidators([ Validators.required ]); this.form.get('url').setValidators([Validators.required]);
this.form.get('text').setValidators([ Validators.nullValidator ]); this.form.get('text').setValidators([Validators.nullValidator]);
break; break;
default: default:
this.form.get('url').setValidators([ Validators.nullValidator ]); this.form.get('url').setValidators([Validators.nullValidator]);
this.form.get('text').setValidators([ Validators.required ]); this.form.get('text').setValidators([Validators.required]);
break; break;
} }
}
}); });
this.form.get('url').valueChanges.pipe( this.form.get('url').valueChanges.pipe(
debounceTime(800), debounceTime(800),
distinctUntilChanged()).subscribe((value) => { distinctUntilChanged()).subscribe({
next: (value) => {
if (value && !this.form.get('title').value) { if (value && !this.form.get('title').value) {
this.entriesService.titleHelper(value).subscribe((title: string) => { this.entriesService.titleHelper(value).subscribe({
next: (title: string) => {
this.form.get('title').setValue(title); this.form.get('title').setValue(title);
}
}) })
} }
}
}) })
this.id = this.route.snapshot.paramMap.get('id') && +this.route.snapshot.paramMap.get('id'); this.id = this.route.snapshot.paramMap.get('id') && +this.route.snapshot.paramMap.get('id');
@ -85,7 +93,8 @@ export class PageEntryEdit implements OnInit, OnDestroy {
refresh() { refresh() {
if (this.id) { if (this.id) {
this.form.get('entryType').disable(); this.form.get('entryType').disable();
this.entriesService.getEntry(this.id).subscribe((data) => { this.entriesService.getEntry(this.id).subscribe({
next: (data) => {
this.entry = data; this.entry = data;
this.entryType = this.entry.entryType; this.entryType = this.entry.entryType;
this.form.get("entryType").setValue(this.entry.entryType); this.form.get("entryType").setValue(this.entry.entryType);
@ -97,10 +106,12 @@ export class PageEntryEdit implements OnInit, OnDestroy {
this.form.get("title").disable(); this.form.get("title").disable();
this.form.get("text").disable(); this.form.get("text").disable();
} }
}, (error) => { },
error: (error) => {
if (error.status == 404) { if (error.status == 404) {
this.notfound = true; this.notfound = true;
} }
}
}) })
} else { } else {
this.entry = {}; this.entry = {};
@ -110,7 +121,7 @@ export class PageEntryEdit implements OnInit, OnDestroy {
} }
hasError(controlName: string): boolean { hasError(controlName: string): boolean {
return this.form.controls[ controlName ].errors != null; return this.form.controls[controlName].errors != null;
} }
onTitleFocus(event): void { onTitleFocus(event): void {
@ -129,19 +140,22 @@ export class PageEntryEdit implements OnInit, OnDestroy {
this.entry.title = this.form.get("title").value; this.entry.title = this.form.get("title").value;
this.entry.text = this.form.get("text").value; this.entry.text = this.form.get("text").value;
this.entriesService.create(this.entry).subscribe((data) => { this.entriesService.create(this.entry).subscribe({
next: (data) => {
this.router.navigateByUrl('/'); this.router.navigateByUrl('/');
}, (error) => { },
error: (error) => {
this.working = false; this.working = false;
if (error.status == 422) { if (error.status == 422) {
let errors = {}; let errors = {};
for (let code of error.error) { for (let code of error.error) {
errors[ code.field ] = errors[ code.field ] || {}; errors[code.field] = errors[code.field] || {};
errors[ code.field ][ code.code ] = true; errors[code.field][code.code] = true;
} }
for (let code in errors) { for (let code in errors) {
this.form.get(code).setErrors(errors[ code ]); this.form.get(code).setErrors(errors[code]);
}
} }
} }
}) })
@ -159,11 +173,13 @@ export class PageEntryEdit implements OnInit, OnDestroy {
this.entry.title = this.form.get("title").value; this.entry.title = this.form.get("title").value;
this.entry.text = this.form.get("text").value; this.entry.text = this.form.get("text").value;
this.entriesService.update(this.entry).subscribe((data) => { this.entriesService.update(this.entry).subscribe({
next: (data) => {
this.entry = data; this.entry = data;
this.working = false; this.working = false;
this.success = true; this.success = true;
}, (error) => { },
error: (error) => {
this.working = false; this.working = false;
if (error.status == 403) { if (error.status == 403) {
this.snackBar.open("Error"); this.snackBar.open("Error");
@ -171,21 +187,23 @@ export class PageEntryEdit implements OnInit, OnDestroy {
if (error.status == 422) { if (error.status == 422) {
let errors = {}; let errors = {};
for (let code of error.error) { for (let code of error.error) {
errors[ code.field ] = errors[ code.field ] || {}; errors[code.field] = errors[code.field] || {};
errors[ code.field ][ code.code ] = true; errors[code.field][code.code] = true;
} }
for (let code in errors) { for (let code in errors) {
this.form.get(code).setErrors(errors[ code ]); this.form.get(code).setErrors(errors[code]);
}
} }
} }
}) })
} else { } else {
this.tagsService.setTags(this.entry.id, this.entry.tags).subscribe((data) => { this.tagsService.setTags(this.entry.id, this.entry.tags).subscribe({
next: (data) => {
this.entry = data; this.entry = data;
this.working = false; this.working = false;
this.success = true; this.success = true;
}, (error) => { }, error: (error) => {
this.working = false; this.working = false;
if (error.status == 403) { if (error.status == 403) {
this.snackBar.open("Error"); this.snackBar.open("Error");
@ -193,12 +211,13 @@ export class PageEntryEdit implements OnInit, OnDestroy {
if (error.status == 422) { if (error.status == 422) {
let errors = {}; let errors = {};
for (let code of error.error) { for (let code of error.error) {
errors[ code.field ] = errors[ code.field ] || {}; errors[code.field] = errors[code.field] || {};
errors[ code.field ][ code.code ] = true; errors[code.field][code.code] = true;
} }
for (let code in errors) { for (let code in errors) {
this.form.get(code).setErrors(errors[ code ]); this.form.get(code).setErrors(errors[code]);
}
} }
} }
}) })

View File

@ -9,7 +9,7 @@ import { UiComments } from '../../ui/comments/comments.ui';
@Component({ @Component({
selector: 'page-entry', selector: 'page-entry',
templateUrl: './entry.page.html', templateUrl: './entry.page.html',
styleUrls: [ './entry.page.scss' ] styleUrls: ['./entry.page.scss']
}) })
export class PageEntry implements OnInit { export class PageEntry implements OnInit {
@ -29,13 +29,16 @@ export class PageEntry implements OnInit {
} }
refresh() { refresh() {
this.entriesService.getEntry(this.id).subscribe((data) => { this.entriesService.getEntry(this.id).subscribe({
next: (data) => {
this.entry = data; this.entry = data;
}, (error) => { },
error: (error) => {
if (error.status == 404) { if (error.status == 404) {
this.entry = false; this.entry = false;
this.notfound = true; this.notfound = true;
} }
}
}) })
} }

View File

@ -8,7 +8,7 @@ import { AuthService } from '../../services/auth.service';
@Component({ @Component({
selector: 'page-login', selector: 'page-login',
templateUrl: './login.page.html', templateUrl: './login.page.html',
styleUrls: [ './login.page.scss' ] styleUrls: ['./login.page.scss']
}) })
export class PageLogin implements OnInit { export class PageLogin implements OnInit {
@ -27,25 +27,28 @@ export class PageLogin implements OnInit {
private route: ActivatedRoute) { } private route: ActivatedRoute) { }
async ngOnInit() { async ngOnInit() {
this.route.queryParams.subscribe(params => { this.route.queryParams.subscribe({
if (params[ 'all' ] || params[ 'all' ] == '') { next: (params) => {
if (params['all'] || params['all'] == '') {
this.internalLogin = true; this.internalLogin = true;
} }
if (params[ 'target' ]) { if (params['target']) {
this.targetRoute = params[ 'target' ]; this.targetRoute = params['target'];
this.router.navigate([], { queryParams: { target: null }, queryParamsHandling: 'merge', replaceUrl: true }); this.router.navigate([], { queryParams: { target: null }, queryParamsHandling: 'merge', replaceUrl: true });
} }
if (params[ 'error' ] || params[ 'error' ] == '') { if (params['error'] || params['error'] == '') {
this.loginInvalid = true; this.loginInvalid = true;
this.router.navigate([], { queryParams: { error: null }, queryParamsHandling: 'merge', replaceUrl: true }); this.router.navigate([], { queryParams: { error: null }, queryParamsHandling: 'merge', replaceUrl: true });
} }
if (params[ 'externalError' ] || params[ 'externalError' ] == '') { if (params['externalError'] || params['externalError'] == '') {
this.externalLoginInvalid = true; this.externalLoginInvalid = true;
this.router.navigate([], { queryParams: { externalError: null }, queryParamsHandling: 'merge', replaceUrl: true }); this.router.navigate([], { queryParams: { externalError: null }, queryParamsHandling: 'merge', replaceUrl: true });
} }
}
}); });
this.authService.getExternal().subscribe((data: any[]) => { this.authService.getExternal().subscribe({
next: (data: any[]) => {
this.externals = data; this.externals = data;
const autologinClient = localStorage.getItem("bstlboard.autologin"); const autologinClient = localStorage.getItem("bstlboard.autologin");
for (let client of this.externals) { for (let client of this.externals) {
@ -53,6 +56,7 @@ export class PageLogin implements OnInit {
window.location.href = this.apiUrl + "/" + client.loginUrl; window.location.href = this.apiUrl + "/" + client.loginUrl;
} }
} }
}
}) })
} }

View File

@ -19,19 +19,23 @@ export class PageModerationComments implements OnInit {
} }
refresh(): void { refresh(): void {
this.moderationService.getFlaggedComments(this.comments.number || 0, this.comments.size || 30).subscribe((data: any) => { this.moderationService.getFlaggedComments(this.comments.number || 0, this.comments.size || 30).subscribe({
next: (data: any) => {
this.comments = data; this.comments = data;
}, (error) => { }) }
})
} }
showMore() { showMore() {
const oldContent: any[] = this.comments.content; const oldContent: any[] = this.comments.content;
this.moderationService.getFlaggedComments(this.comments.number + 1, this.comments.size).subscribe((data) => { this.moderationService.getFlaggedComments(this.comments.number + 1, this.comments.size).subscribe({
next: (data) => {
this.comments = data; this.comments = data;
for (let comment of this.comments.content) { for (let comment of this.comments.content) {
oldContent.push(comment); oldContent.push(comment);
} }
this.comments.content = oldContent; this.comments.content = oldContent;
}
}) })
} }
} }

View File

@ -44,13 +44,17 @@ export class PageSearch implements OnInit {
}) })
this.searchFormControl.valueChanges.pipe( this.searchFormControl.valueChanges.pipe(
debounceTime(300)).subscribe((value: string) => { debounceTime(300)).subscribe({
next: (value: string) => {
this.refresh(); this.refresh();
}
}) })
this.settingsSubscription = this.settingsService.settings.subscribe((settings) => { this.settingsSubscription = this.settingsService.settings.subscribe({
next: (settings) => {
this.settings = settings; this.settings = settings;
this.refresh(); this.refresh();
}
}) })
} }
@ -79,10 +83,13 @@ export class PageSearch implements OnInit {
}); });
this.results.content = null; this.results.content = null;
this.searchService.search(this.searchFormControl.value || " ", this.searchType, 0, this.results.size || this.settings.pageSize, this.asc, this.byDate).subscribe((data: any) => { this.searchService.search(this.searchFormControl.value || " ", this.searchType, 0, this.results.size || this.settings.pageSize, this.asc, this.byDate).subscribe({
next: (data: any) => {
this.results = data; this.results = data;
}, (error) => { },
error: (error) => {
this.results = { error: error }; this.results = { error: error };
}
}) })
} }
@ -106,10 +113,13 @@ export class PageSearch implements OnInit {
queryParamsHandling: 'merge' queryParamsHandling: 'merge'
}); });
this.searchService.search(this.searchFormControl.value, this.searchType, event.pageIndex, event.pageSize, this.asc, this.byDate).subscribe((data: any) => { this.searchService.search(this.searchFormControl.value, this.searchType, event.pageIndex, event.pageSize, this.asc, this.byDate).subscribe({
next: (data: any) => {
this.results = data; this.results = data;
}, (error) => { },
error: (error) => {
this.results = { error: error }; this.results = { error: error };
}
}) })
} }
} }

View File

@ -79,7 +79,7 @@
</mat-form-field> </mat-form-field>
</mat-card-content> </mat-card-content>
<mat-card-actions> <mat-card-actions>
<button *ngIf="!working" mat-raised-button color="primary" [disabled]="form.invalid"> <button type="submit" *ngIf="!working" mat-raised-button color="primary" [disabled]="form.invalid">
{{'settings.update' | i18n}} {{'settings.update' | i18n}}
</button> </button>
<a *ngIf="success" mat-button color="primary">{{'settings.success' | i18n}}</a> <a *ngIf="success" mat-button color="primary">{{'settings.success' | i18n}}</a>

View File

@ -8,7 +8,7 @@ import { Subscription } from 'rxjs';
@Component({ @Component({
selector: 'page-settings', selector: 'page-settings',
templateUrl: './settings.page.html', templateUrl: './settings.page.html',
styleUrls: [ './settings.page.scss' ] styleUrls: ['./settings.page.scss']
}) })
export class PageSettings implements OnInit, OnDestroy { export class PageSettings implements OnInit, OnDestroy {
@ -27,18 +27,19 @@ export class PageSettings implements OnInit, OnDestroy {
ngOnInit(): void { ngOnInit(): void {
this.form = this.formBuilder.group({ this.form = this.formBuilder.group({
username: [ { disabled: true }, Validators.nullValidator ], username: [{ disabled: true }, Validators.nullValidator],
email: [ '', Validators.nullValidator ], email: ['', Validators.nullValidator],
about: [ '', Validators.nullValidator ], about: ['', Validators.nullValidator],
gravity: [ '', Validators.nullValidator ], gravity: ['', Validators.nullValidator],
entryDelay: [ '', Validators.nullValidator ], entryDelay: ['', Validators.nullValidator],
commentDelay: [ '', Validators.nullValidator ], commentDelay: ['', Validators.nullValidator],
pageSize: [ '', Validators.nullValidator ], pageSize: ['', Validators.nullValidator],
}); });
this.form.get('username').disable(); this.form.get('username').disable();
this.userService.get().subscribe(user => { this.userService.get().subscribe({
next: (user) => {
this.user = user; this.user = user;
if (!this.user.settings) { if (!this.user.settings) {
this.user.settings = {}; this.user.settings = {};
@ -47,13 +48,16 @@ export class PageSettings implements OnInit, OnDestroy {
this.form.get('email').setValue(this.user.email); this.form.get('email').setValue(this.user.email);
this.form.get('about').setValue(this.user.about); this.form.get('about').setValue(this.user.about);
this.settingsSubscription = this.settingsService.settings.subscribe((settings) => { this.settingsSubscription = this.settingsService.settings.subscribe({
next: (settings) => {
this.settings = settings; this.settings = settings;
this.form.get('gravity').setValue(this.user.settings.gravity || this.settings.defaultGravity); this.form.get('gravity').setValue(this.user.settings.gravity || this.settings.defaultGravity);
this.form.get('entryDelay').setValue(this.user.settings.entryDelay || this.settings.defaultEntryDelay); this.form.get('entryDelay').setValue(this.user.settings.entryDelay || this.settings.defaultEntryDelay);
this.form.get('commentDelay').setValue(this.user.settings.commentDelay || this.settings.defaultCommentDelay); this.form.get('commentDelay').setValue(this.user.settings.commentDelay || this.settings.defaultCommentDelay);
this.form.get('pageSize').setValue(this.user.settings.pageSize || this.settings.defaultPageSize); this.form.get('pageSize').setValue(this.user.settings.pageSize || this.settings.defaultPageSize);
}
}); });
}
}) })
} }
@ -62,7 +66,7 @@ export class PageSettings implements OnInit, OnDestroy {
} }
hasError(controlName: string): boolean { hasError(controlName: string): boolean {
return this.form.controls[ controlName ].errors != null; return this.form.controls[controlName].errors != null;
} }
resetGravity(): void { resetGravity(): void {
@ -124,7 +128,8 @@ export class PageSettings implements OnInit, OnDestroy {
this.user.settings.pageSize = this.form.get('pageSize').value; this.user.settings.pageSize = this.form.get('pageSize').value;
} }
this.userService.update(this.user).subscribe((data) => { this.userService.update(this.user).subscribe({
next: (data) => {
this.user = data; this.user = data;
if (!this.user.settings) { if (!this.user.settings) {
this.user.settings = {}; this.user.settings = {};
@ -132,17 +137,19 @@ export class PageSettings implements OnInit, OnDestroy {
this.working = false; this.working = false;
this.success = true; this.success = true;
this.settingsService.getSettings(); this.settingsService.getSettings();
}, (error) => { },
error: (error) => {
this.working = false; this.working = false;
if (error.status == 422) { if (error.status == 422) {
let errors = {}; let errors = {};
for (let code of error.error) { for (let code of error.error) {
errors[ code.field ] = errors[ code.field ] || {}; errors[code.field] = errors[code.field] || {};
errors[ code.field ][ code.code ] = true; errors[code.field][code.code] = true;
} }
for (let code in errors) { for (let code in errors) {
this.form.get(code).setErrors(errors[ code ]); this.form.get(code).setErrors(errors[code]);
}
} }
} }
}) })

View File

@ -5,7 +5,7 @@ import { Router, ActivatedRoute } from '@angular/router';
@Component({ @Component({
selector: 'page-unavailable', selector: 'page-unavailable',
templateUrl: './unavailable.page.html', templateUrl: './unavailable.page.html',
styleUrls: [ './unavailable.page.scss' ] styleUrls: ['./unavailable.page.scss']
}) })
export class PageUnavailable implements OnInit { export class PageUnavailable implements OnInit {
@ -17,11 +17,13 @@ export class PageUnavailable implements OnInit {
private route: ActivatedRoute) { } private route: ActivatedRoute) { }
ngOnInit(): void { ngOnInit(): void {
this.route.queryParams.subscribe(params => { this.route.queryParams.subscribe({
if (params[ 'target' ]) { next: (params) => {
this.targetRoute = params[ 'target' ]; if (params['target']) {
this.targetRoute = params['target'];
this.router.navigate([], { queryParams: { target: null }, queryParamsHandling: 'merge', skipLocationChange: true }); this.router.navigate([], { queryParams: { target: null }, queryParamsHandling: 'merge', skipLocationChange: true });
} }
}
}); });
} }
@ -30,7 +32,7 @@ export class PageUnavailable implements OnInit {
if (!this.targetRoute || this.targetRoute === "unavailable" || this.targetRoute === "/unavailable") { if (!this.targetRoute || this.targetRoute === "unavailable" || this.targetRoute === "/unavailable") {
this.location.back; this.location.back;
} else { } else {
this.router.navigate([ this.targetRoute ]); this.router.navigate([this.targetRoute]);
} }
} }

View File

@ -8,7 +8,7 @@ import { UserService } from '../../services/user.service';
@Component({ @Component({
selector: 'page-user', selector: 'page-user',
templateUrl: './user.page.html', templateUrl: './user.page.html',
styleUrls: [ './user.page.scss' ] styleUrls: ['./user.page.scss']
}) })
export class PageUser implements OnInit { export class PageUser implements OnInit {
@ -21,12 +21,15 @@ export class PageUser implements OnInit {
ngOnInit(): void { ngOnInit(): void {
this.username = this.route.snapshot.paramMap.get('username'); this.username = this.route.snapshot.paramMap.get('username');
this.userService.getUser(this.username).subscribe((data) => { this.userService.getUser(this.username).subscribe({
next: (data) => {
this.user = data; this.user = data;
}, (error) => { },
error: (error) => {
if (error.status == 422) { if (error.status == 422) {
this.notfound = true; this.notfound = true;
} }
}
}) })
} }

View File

@ -9,7 +9,7 @@ import { SettingsService } from '../../../services/settings.service';
@Component({ @Component({
selector: 'page-usercomments', selector: 'page-usercomments',
templateUrl: './usercomments.page.html', templateUrl: './usercomments.page.html',
styleUrls: [ './usercomments.page.scss' ] styleUrls: ['./usercomments.page.scss']
}) })
export class PageUserComments implements OnInit, OnDestroy { export class PageUserComments implements OnInit, OnDestroy {
@ -17,18 +17,22 @@ export class PageUserComments implements OnInit, OnDestroy {
username: string; username: string;
comments: any = {}; comments: any = {};
init: boolean = true; init: boolean = true;
ignore: string[] = [ "author" ]; ignore: string[] = ["author"];
settingsSubscription: Subscription; settingsSubscription: Subscription;
constructor(private settingsService: SettingsService, private commentService: CommentService, private router: Router, private route: ActivatedRoute) { } constructor(private settingsService: SettingsService, private commentService: CommentService, private router: Router, private route: ActivatedRoute) { }
ngOnInit(): void { ngOnInit(): void {
this.username = this.route.snapshot.paramMap.get('username'); this.username = this.route.snapshot.paramMap.get('username');
this.settingsSubscription = this.settingsService.settings.subscribe((settings) => { this.settingsSubscription = this.settingsService.settings.subscribe({
next: (settings) => {
this.settings = settings; this.settings = settings;
this.commentService.getByUser(this.username, this.comments.number || 0, this.comments.size || this.settings.pageSize, this.ignore).subscribe((data: any) => { this.commentService.getByUser(this.username, this.comments.number || 0, this.comments.size || this.settings.pageSize, this.ignore).subscribe({
next: (data: any) => {
this.comments = data; this.comments = data;
}, (error) => { }) }
})
}
}) })
} }
@ -38,12 +42,14 @@ export class PageUserComments implements OnInit, OnDestroy {
showMore() { showMore() {
const oldContent: any[] = this.comments.content; const oldContent: any[] = this.comments.content;
this.commentService.getByUser(this.username, this.comments.number + 1, this.comments.size, this.ignore).subscribe((data) => { this.commentService.getByUser(this.username, this.comments.number + 1, this.comments.size, this.ignore).subscribe({
next: (data) => {
this.comments = data; this.comments = data;
for (let comment of this.comments.content) { for (let comment of this.comments.content) {
oldContent.push(comment); oldContent.push(comment);
} }
this.comments.content = oldContent; this.comments.content = oldContent;
}
}) })
} }
} }

View File

@ -70,7 +70,7 @@
</mat-card-content> </mat-card-content>
<mat-card-actions class="flex wrap fill"> <mat-card-actions class="flex wrap fill">
<button *ngIf="!working" mat-raised-button color="primary" [disabled]="form.invalid"> <button type="submit" *ngIf="!working" mat-raised-button color="primary" [disabled]="form.invalid">
<mat-icon>save</mat-icon> {{ (view.id ? 'views.update' : 'views.create') | i18n}} <mat-icon>save</mat-icon> {{ (view.id ? 'views.update' : 'views.create') | i18n}}
</button> </button>
<a mat-button color="primary" routerLink="/v/{{view.name}}" *ngIf="view.id">{{ 'views.goTo' | <a mat-button color="primary" routerLink="/v/{{view.name}}" *ngIf="view.id">{{ 'views.goTo' |

View File

@ -13,16 +13,16 @@ import { MatDialog } from '@angular/material/dialog';
@Component({ @Component({
selector: 'page-view-edit', selector: 'page-view-edit',
templateUrl: './edit.page.html', templateUrl: './edit.page.html',
styleUrls: [ './edit.page.scss' ] styleUrls: ['./edit.page.scss']
}) })
export class PageViewEdit implements OnInit, OnDestroy { export class PageViewEdit implements OnInit, OnDestroy {
name: string; name: string;
view: any; view: any;
entryTypes: string[] = [ undefined, 'LINK', 'DISCUSSION', 'QUESTION', 'INTERN' ]; entryTypes: string[] = [undefined, 'LINK', 'DISCUSSION', 'QUESTION', 'INTERN'];
entryType: string = this.entryTypes[ 0 ]; entryType: string = this.entryTypes[0];
sortings: string[] = [ 'NEW', 'TOP', 'HOT', 'LAST' ]; sortings: string[] = ['NEW', 'TOP', 'HOT', 'LAST'];
sorting: string = this.sortings[ 0 ]; sorting: string = this.sortings[0];
notfound: boolean = false; notfound: boolean = false;
working: boolean = false; working: boolean = false;
form: FormGroup; form: FormGroup;
@ -44,35 +44,45 @@ export class PageViewEdit implements OnInit, OnDestroy {
ngOnInit(): void { ngOnInit(): void {
this.form = this.formBuilder.group({ this.form = this.formBuilder.group({
name: [ '', Validators.required ], name: ['', Validators.required],
entryType: [ '', Validators.nullValidator ], entryType: ['', Validators.nullValidator],
sorting: [ '', Validators.required ], sorting: ['', Validators.required],
index: [ '', Validators.required ], index: ['', Validators.required],
}); });
this.settingsSubscription = this.settingsService.settings.subscribe((settings) => { this.settingsSubscription = this.settingsService.settings.subscribe({
next: (settings) => {
this.settings = settings; this.settings = settings;
}
}); });
this.route.params.subscribe((params) => { this.route.params.subscribe({
next: (params) => {
if (params.name) { if (params.name) {
this.form.get('name').setValue(params.name); this.form.get('name').setValue(params.name);
this.form.get('entryType').setValue(this.entryType); this.form.get('entryType').setValue(this.entryType);
this.form.get('entryType').valueChanges.subscribe((value) => { this.form.get('entryType').valueChanges.subscribe({
next: (value) => {
this.entryType = value; this.entryType = value;
}
}); });
this.form.get('sorting').setValue(this.sorting); this.form.get('sorting').setValue(this.sorting);
this.form.get('sorting').valueChanges.subscribe((value) => { this.form.get('sorting').valueChanges.subscribe({
next: (value) => {
this.sorting = value; this.sorting = value;
}
}); });
this.form.get('index').valueChanges.subscribe((value) => { this.form.get('index').valueChanges.subscribe({
next: (value) => {
this.view.index = value; this.view.index = value;
}
}); });
this.name = params.name; this.name = params.name;
this.refresh(); this.refresh();
} }
}
}) })
this.refresh(); this.refresh();
@ -84,7 +94,8 @@ export class PageViewEdit implements OnInit, OnDestroy {
refresh() { refresh() {
if (this.name) { if (this.name) {
this.viewService.getView(this.name, undefined).subscribe((data) => { this.viewService.getView(this.name, undefined).subscribe({
next: (data) => {
this.view = data; this.view = data;
this.entryType = this.view.entryType; this.entryType = this.view.entryType;
this.sorting = this.view.sorting; this.sorting = this.view.sorting;
@ -92,10 +103,12 @@ export class PageViewEdit implements OnInit, OnDestroy {
this.form.get("entryType").setValue(this.view.entryType); this.form.get("entryType").setValue(this.view.entryType);
this.form.get("sorting").setValue(this.view.sorting); this.form.get("sorting").setValue(this.view.sorting);
this.form.get("index").setValue(this.view.index); this.form.get("index").setValue(this.view.index);
}, (error) => { },
error: (error) => {
if (error.status == 404) { if (error.status == 404) {
this.notfound = true; this.notfound = true;
} }
}
}) })
} else { } else {
this.view = {}; this.view = {};
@ -111,7 +124,7 @@ export class PageViewEdit implements OnInit, OnDestroy {
} }
hasError(controlName: string): boolean { hasError(controlName: string): boolean {
return this.form.controls[ controlName ].errors != null; return this.form.controls[controlName].errors != null;
} }
@ -127,7 +140,8 @@ export class PageViewEdit implements OnInit, OnDestroy {
this.view.sorting = this.sorting; this.view.sorting = this.sorting;
this.view.index = this.form.get("index").value; this.view.index = this.form.get("index").value;
this.viewService.createOrUpdate(this.view).subscribe((data) => { this.viewService.createOrUpdate(this.view).subscribe({
next: (data) => {
this.view = data; this.view = data;
this.working = false; this.working = false;
this.snackBar.open(this.i18n.get('views.success', []), this.i18n.get("close", []), { this.snackBar.open(this.i18n.get('views.success', []), this.i18n.get("close", []), {
@ -135,7 +149,8 @@ export class PageViewEdit implements OnInit, OnDestroy {
}); });
this.router.navigateByUrl('/v/' + this.view.name); this.router.navigateByUrl('/v/' + this.view.name);
this.viewService.getViews(); this.viewService.getViews();
}, (error) => { },
error: (error) => {
this.working = false; this.working = false;
if (error.status == 403) { if (error.status == 403) {
this.snackBar.open("Error"); this.snackBar.open("Error");
@ -143,12 +158,13 @@ export class PageViewEdit implements OnInit, OnDestroy {
if (error.status == 422) { if (error.status == 422) {
let errors = {}; let errors = {};
for (let code of error.error) { for (let code of error.error) {
errors[ code.field ] = errors[ code.field ] || {}; errors[code.field] = errors[code.field] || {};
errors[ code.field ][ code.code ] = true; errors[code.field][code.code] = true;
} }
for (let code in errors) { for (let code in errors) {
this.form.get(code).setErrors(errors[ code ]); this.form.get(code).setErrors(errors[code]);
}
} }
} }
}) })
@ -158,19 +174,23 @@ export class PageViewEdit implements OnInit, OnDestroy {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'views.confirmDelete', 'label': 'views.confirmDelete',
'args': [ this.view.name ] 'args': [this.view.name]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.working = true; this.working = true;
this.viewService.deleteView(this.view.name).subscribe(() => { this.viewService.deleteView(this.view.name).subscribe({
next: () => {
this.working = false; this.working = false;
this.router.navigateByUrl('/'); this.router.navigateByUrl('/');
this.viewService.getViews(); this.viewService.getViews();
}
}) })
} }
}
}); });
} }
} }

View File

@ -9,7 +9,7 @@ import { PageEntries } from '../entries/entries.page';
@Component({ @Component({
selector: 'page-view', selector: 'page-view',
templateUrl: './view.page.html', templateUrl: './view.page.html',
styleUrls: [ './view.page.scss' ] styleUrls: ['./view.page.scss']
}) })
export class PageView implements OnInit, OnDestroy { export class PageView implements OnInit, OnDestroy {
@ -27,28 +27,33 @@ export class PageView implements OnInit, OnDestroy {
} }
ngOnInit(): void { ngOnInit(): void {
this.paramsSub = this.route.params.subscribe((params: Params) => { this.paramsSub = this.route.params.subscribe({
this.name = params[ 'name' ]; next: (params: Params) => {
this.username = params[ 'username' ]; this.name = params['name'];
this.username = params['username'];
if (!this.name) { if (!this.name) {
this.viewService.getViews().then((data: any) => { this.viewService.getViews().then((data: any) => {
const views = data.content; const views = data.content;
if (!views || views.length == 0) { if (!views || views.length == 0) {
this.router.navigate([ '/v' ], { queryParams: { name: this.name }, queryParamsHandling: 'merge' }); this.router.navigate(['/v'], { queryParams: { name: this.name }, queryParamsHandling: 'merge' });
} else { } else {
this.router.navigateByUrl('/v/' + views[ 0 ].name); this.router.navigateByUrl('/v/' + views[0].name);
} }
}) })
} else { } else {
this.viewService.getView(this.name, this.username).subscribe((data) => { this.viewService.getView(this.name, this.username).subscribe({
next: (data) => {
if (this.entries) { if (this.entries) {
this.entries.refresh(); this.entries.refresh();
} }
}, (error) => { },
this.router.navigate([ '/v' ], { queryParams: { name: this.name }, queryParamsHandling: 'merge' }); error: (error) => {
this.router.navigate(['/v'], { queryParams: { name: this.name }, queryParamsHandling: 'merge' });
}
}) })
} }
}
}); });
this.boundFetch = this.fetch.bind(this); this.boundFetch = this.fetch.bind(this);
} }

View File

@ -74,7 +74,7 @@
{{'comment.text.error' | i18n}} {{'comment.text.error' | i18n}}
</mat-error> </mat-error>
</mat-form-field> </mat-form-field>
<button *ngIf="!working" mat-raised-button color="primary" [disabled]="form.invalid"> <button type="submit" *ngIf="!working" mat-raised-button color="primary" [disabled]="form.invalid">
{{'comment.save' | i18n}} {{'comment.save' | i18n}}
</button> </button>
</form> </form>

View File

@ -13,7 +13,7 @@ import { UiComments } from '../comments/comments.ui';
@Component({ @Component({
selector: 'ui-comment', selector: 'ui-comment',
templateUrl: './comment.ui.html', templateUrl: './comment.ui.html',
styleUrls: [ './comment.ui.scss' ] styleUrls: ['./comment.ui.scss']
}) })
export class UiComment implements OnInit { export class UiComment implements OnInit {
@ -29,6 +29,7 @@ export class UiComment implements OnInit {
@Input() actions: boolean = true; @Input() actions: boolean = true;
@ViewChild('subcomments') comments: UiComments; @ViewChild('subcomments') comments: UiComments;
form: FormGroup; form: FormGroup;
working: boolean = false;
constructor( constructor(
private authService: AuthService, private authService: AuthService,
@ -40,7 +41,8 @@ export class UiComment implements OnInit {
public dialog: MatDialog) { } public dialog: MatDialog) { }
ngOnInit(): void { ngOnInit(): void {
this.authService.auth.subscribe((auth: any) => { this.authService.auth.subscribe({
next: (auth: any) => {
if (auth && auth.authorities) { if (auth && auth.authorities) {
this.author = auth.username == this.comment.author; this.author = auth.username == this.comment.author;
for (let role of auth.authorities) { for (let role of auth.authorities) {
@ -49,36 +51,51 @@ export class UiComment implements OnInit {
} }
} }
} }
}
}) })
this.form = this.formBuilder.group({ this.form = this.formBuilder.group({
text: [ '', Validators.required ], text: ['', Validators.required],
}); });
this.form.get('text').setValue(this.comment.text); this.form.get('text').setValue(this.comment.text);
} }
voteUp() { voteUp() {
this.voteService.voteCommentUp(this.comment.id).subscribe((result) => { this.voteService.voteCommentUp(this.comment.id).subscribe({
this.commentService.getComment(this.comment.id, this.ignore).subscribe((data) => { next: () => {
this.commentService.getComment(this.comment.id, this.ignore).subscribe({
next: (data) => {
this.comment = data; this.comment = data;
}
}) })
}
}); });
} }
voteDown() { voteDown() {
this.voteService.voteCommentDown(this.comment.id).subscribe((result) => { this.voteService.voteCommentDown(this.comment.id).subscribe({
this.commentService.getComment(this.comment.id, this.ignore).subscribe((data) => { next: () => {
this.commentService.getComment(this.comment.id, this.ignore).subscribe({
next: (data) => {
this.comment = data; this.comment = data;
}
}) })
}
}); });
} }
unvote() { unvote() {
this.voteService.unvoteComment(this.comment.id).subscribe((result) => { this.voteService.unvoteComment(this.comment.id).subscribe({
this.commentService.getComment(this.comment.id, this.ignore).subscribe((data) => { next: (
) => {
this.commentService.getComment(this.comment.id, this.ignore).subscribe({
next: (data) => {
this.comment = data; this.comment = data;
}
}) })
}
}); });
} }
@ -86,17 +103,21 @@ export class UiComment implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'comment.confirmFlag', 'label': 'comment.confirmFlag',
'args': [ this.comment.text, this.comment.author ] 'args': [this.comment.text, this.comment.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.flagService.flagComment(this.comment.id).subscribe((result) => { this.flagService.flagComment(this.comment.id).subscribe({
next: () => {
this.comment.metadata.flag = false; this.comment.metadata.flag = false;
this.comment.metadata.unflag = true; this.comment.metadata.unflag = true;
}
}); });
} }
}
}); });
} }
@ -104,17 +125,21 @@ export class UiComment implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'comment.confirmUnflag', 'label': 'comment.confirmUnflag',
'args': [ this.comment.text, this.comment.author ] 'args': [this.comment.text, this.comment.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.flagService.unflagComment(this.comment.id).subscribe((result) => { this.flagService.unflagComment(this.comment.id).subscribe({
next: () => {
this.comment.metadata.flag = true; this.comment.metadata.flag = true;
this.comment.metadata.unflag = false; this.comment.metadata.unflag = false;
}
}); });
} }
}
}); });
} }
@ -142,16 +167,28 @@ export class UiComment implements OnInit {
} }
hasError(controlName: string): boolean { hasError(controlName: string): boolean {
return this.form.controls[ controlName ].errors != null; return this.form.controls[controlName].errors != null;
} }
update(): void { update(): void {
if (this.working) {
return;
}
if (this.canEdit()) { if (this.canEdit()) {
this.working = true;
this.comment.text = this.form.get('text').value; this.comment.text = this.form.get('text').value;
this.form.get('text').disable(); this.form.get('text').disable();
this.commentService.update(this.comment).subscribe((data) => { this.commentService.update(this.comment).subscribe({
next: (data) => {
this.comment = data; this.comment = data;
this.comment.metadata.edit = false; this.comment.metadata.edit = false;
this.working = false;
},
error: () => {
this.working = false;
}
}) })
} }
} }
@ -160,16 +197,20 @@ export class UiComment implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'comment.confirmDelete', 'label': 'comment.confirmDelete',
'args': [ this.comment.text, this.comment.author ] 'args': [this.comment.text, this.comment.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.commentService.delete(this.comment.id).subscribe((result: any) => { this.commentService.delete(this.comment.id).subscribe({
next: () => {
this.change && this.change() this.change && this.change()
}
}) })
} }
}
}); });
} }
@ -177,16 +218,20 @@ export class UiComment implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'moderation.comment.confirmDelete', 'label': 'moderation.comment.confirmDelete',
'args': [ this.comment.text, this.comment.author ] 'args': [this.comment.text, this.comment.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.moderationService.deleteComment(this.comment.id).subscribe((result: any) => { this.moderationService.deleteComment(this.comment.id).subscribe({
next: () => {
this.change && this.change() this.change && this.change()
}
}) })
} }
}
}); });
} }
@ -194,16 +239,20 @@ export class UiComment implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'moderation.comment.confirmUnflag', 'label': 'moderation.comment.confirmUnflag',
'args': [ this.comment.text, this.comment.author ] 'args': [this.comment.text, this.comment.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.moderationService.unflagComment(this.comment.id).subscribe((result: any) => { this.moderationService.unflagComment(this.comment.id).subscribe({
next: () => {
this.change && this.change(); this.change && this.change();
}
}) })
} }
}
}); });
} }
} }

View File

@ -4,7 +4,7 @@ import { CommentService } from '../../services/comment.service';
@Component({ @Component({
selector: 'ui-commentcount', selector: 'ui-commentcount',
templateUrl: './commentcount.ui.html', templateUrl: './commentcount.ui.html',
styleUrls: [ './commentcount.ui.scss' ] styleUrls: ['./commentcount.ui.scss']
}) })
export class UiCommentCount implements OnInit { export class UiCommentCount implements OnInit {
@ -16,12 +16,16 @@ export class UiCommentCount implements OnInit {
ngOnInit(): void { ngOnInit(): void {
if (this.target && this.parent) { if (this.target && this.parent) {
this.commentService.countParent(this.target, this.parent).subscribe((data) => { this.commentService.countParent(this.target, this.parent).subscribe({
next: (data) => {
this.count = +data; this.count = +data;
}
}); });
} else if (this.target) { } else if (this.target) {
this.commentService.count(this.target).subscribe((data) => { this.commentService.count(this.target).subscribe({
next: (data) => {
this.count = +data; this.count = +data;
}
}); });
} }
} }

View File

@ -8,7 +8,7 @@
</mat-error> </mat-error>
</mat-form-field> </mat-form-field>
<button *ngIf="!working" mat-raised-button color="primary" [disabled]="form.invalid"> <button type="submit" *ngIf="!working" mat-raised-button color="primary" [disabled]="form.invalid">
{{'comment.create' | i18n}} {{'comment.create' | i18n}}
</button> </button>

View File

@ -6,7 +6,7 @@ import { Output, EventEmitter } from '@angular/core';
@Component({ @Component({
selector: 'ui-commentform', selector: 'ui-commentform',
templateUrl: './commentform.ui.html', templateUrl: './commentform.ui.html',
styleUrls: [ './commentform.ui.scss' ] styleUrls: ['./commentform.ui.scss']
}) })
export class UiCommentForm implements OnInit { export class UiCommentForm implements OnInit {
@ -22,23 +22,32 @@ export class UiCommentForm implements OnInit {
ngOnInit(): void { ngOnInit(): void {
this.form = this.formBuilder.group({ this.form = this.formBuilder.group({
text: [ '', Validators.required ], text: ['', Validators.required],
}); });
} }
hasError(controlName: string): boolean { hasError(controlName: string): boolean {
return this.form.controls[ controlName ].errors != null; return this.form.controls[controlName].errors != null;
} }
create(): void { create(): void {
if (this.working) {
return;
}
const comment: any = {}; const comment: any = {};
comment.target = this.target; comment.target = this.target;
comment.parent = this.parent; comment.parent = this.parent;
comment.text = this.form.get("text").value; comment.text = this.form.get("text").value;
this.working = true;
this.commentService.create(comment).subscribe((data) => { this.commentService.create(comment).subscribe({
next: (data) => {
this.formDirective.resetForm(); this.formDirective.resetForm();
this.replyCommentEvent.emit(data); this.replyCommentEvent.emit(data);
this.working = false;
},
error: () => {
this.working = false;
}
}); });
} }
} }

View File

@ -7,7 +7,7 @@ import { SettingsService } from '../../services/settings.service';
@Component({ @Component({
selector: 'ui-comments', selector: 'ui-comments',
templateUrl: './comments.ui.html', templateUrl: './comments.ui.html',
styleUrls: [ './comments.ui.scss' ] styleUrls: ['./comments.ui.scss']
}) })
export class UiComments implements OnInit, OnDestroy { export class UiComments implements OnInit, OnDestroy {
@ -25,9 +25,11 @@ export class UiComments implements OnInit, OnDestroy {
ngOnInit(): void { ngOnInit(): void {
this.boundRefresh = this.refresh.bind(this); this.boundRefresh = this.refresh.bind(this);
this.settingsSubscription = this.settingsService.settings.subscribe((settings) => { this.settingsSubscription = this.settingsService.settings.subscribe({
next: (settings) => {
this.settings = settings; this.settings = settings;
this.refresh(); this.refresh();
}
}) })
} }
@ -37,12 +39,16 @@ export class UiComments implements OnInit, OnDestroy {
refresh(): void { refresh(): void {
if (this.parent) { if (this.parent) {
this.commentService.getNewByParent(this.target, this.parent, 0, this.settings.pageSize, this.ignore).subscribe((data) => { this.commentService.getNewByParent(this.target, this.parent, 0, this.settings.pageSize, this.ignore).subscribe({
next: (data) => {
this.comments = data; this.comments = data;
}
}) })
} else { } else {
this.commentService.getNew(this.target, 0, this.settings.pageSize, this.ignore).subscribe((data) => { this.commentService.getNew(this.target, 0, this.settings.pageSize, this.ignore).subscribe({
next: (data) => {
this.comments = data; this.comments = data;
}
}) })
} }
} }
@ -63,20 +69,24 @@ export class UiComments implements OnInit, OnDestroy {
showMore() { showMore() {
const oldContent: any[] = this.comments.content; const oldContent: any[] = this.comments.content;
if (this.parent) { if (this.parent) {
this.commentService.getNewByParent(this.target, this.parent, this.comments.number + 1, this.comments.size, this.ignore).subscribe((data) => { this.commentService.getNewByParent(this.target, this.parent, this.comments.number + 1, this.comments.size, this.ignore).subscribe({
next: (data) => {
this.comments = data; this.comments = data;
for (let comment of this.comments.content) { for (let comment of this.comments.content) {
oldContent.push(comment); oldContent.push(comment);
} }
this.comments.content = oldContent; this.comments.content = oldContent;
}
}) })
} else { } else {
this.commentService.getNew(this.target, this.comments.number + 1, this.comments.size, this.ignore).subscribe((data) => { this.commentService.getNew(this.target, this.comments.number + 1, this.comments.size, this.ignore).subscribe({
next: (data) => {
this.comments = data; this.comments = data;
for (let comment of this.comments.content) { for (let comment of this.comments.content) {
oldContent.push(comment); oldContent.push(comment);
} }
this.comments.content = oldContent; this.comments.content = oldContent;
}
}) })
} }
} }

View File

@ -13,7 +13,7 @@ import { ActivatedRoute, Router } from '@angular/router';
@Component({ @Component({
selector: 'ui-entry', selector: 'ui-entry',
templateUrl: './entry.ui.html', templateUrl: './entry.ui.html',
styleUrls: [ './entry.ui.scss' ] styleUrls: ['./entry.ui.scss']
}) })
export class UiEntry implements OnInit { export class UiEntry implements OnInit {
@ -37,7 +37,8 @@ export class UiEntry implements OnInit {
private route: ActivatedRoute) { } private route: ActivatedRoute) { }
ngOnInit(): void { ngOnInit(): void {
this.authService.auth.subscribe((auth: any) => { this.authService.auth.subscribe({
next: (auth: any) => {
if (auth && auth.authorities) { if (auth && auth.authorities) {
for (let role of auth.authorities) { for (let role of auth.authorities) {
if (role.authority == 'ROLE_ADMIN' || role.authority == 'ROLE_MOD') { if (role.authority == 'ROLE_ADMIN' || role.authority == 'ROLE_MOD') {
@ -45,6 +46,7 @@ export class UiEntry implements OnInit {
} }
} }
} }
}
}) })
} }
@ -62,34 +64,44 @@ export class UiEntry implements OnInit {
} }
voteUp() { voteUp() {
this.voteService.voteEntryUp(this.entry.id).subscribe((result) => { this.voteService.voteEntryUp(this.entry.id).subscribe({
next: () => {
this.change && this.change(); this.change && this.change();
}
}); });
} }
voteDown() { voteDown() {
this.voteService.voteEntryDown(this.entry.id).subscribe((result) => { this.voteService.voteEntryDown(this.entry.id).subscribe({
next: () => {
this.change && this.change(); this.change && this.change();
}
}); });
} }
addBookmark() { addBookmark() {
this.bookmarksService.addEntry(this.entry.id).subscribe((result) => { this.bookmarksService.addEntry(this.entry.id).subscribe({
next: () => {
this.entry.metadata.bookmark = false; this.entry.metadata.bookmark = false;
this.entry.metadata.removeBookmark = true; this.entry.metadata.removeBookmark = true;
}
}); });
} }
removeBookmark() { removeBookmark() {
this.bookmarksService.removeEntry(this.entry.id).subscribe((result) => { this.bookmarksService.removeEntry(this.entry.id).subscribe({
next: () => {
this.entry.metadata.bookmark = true; this.entry.metadata.bookmark = true;
this.entry.metadata.removeBookmark = false; this.entry.metadata.removeBookmark = false;
}
}); });
} }
unvote() { unvote() {
this.voteService.unvoteEntry(this.entry.id).subscribe((result) => { this.voteService.unvoteEntry(this.entry.id).subscribe({
next: () => {
this.change && this.change(); this.change && this.change();
}
}); });
} }
@ -97,17 +109,21 @@ export class UiEntry implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'entry.confirmFlag', 'label': 'entry.confirmFlag',
'args': [ this.entry.title, this.entry.author ] 'args': [this.entry.title, this.entry.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.flagService.flagEntry(this.entry.id).subscribe((result) => { this.flagService.flagEntry(this.entry.id).subscribe({
next: () => {
this.entry.metadata.flag = false; this.entry.metadata.flag = false;
this.entry.metadata.unflag = true; this.entry.metadata.unflag = true;
}
}); });
} }
}
}); });
} }
@ -115,17 +131,21 @@ export class UiEntry implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'entry.confirmUnflag', 'label': 'entry.confirmUnflag',
'args': [ this.entry.title, this.entry.author ] 'args': [this.entry.title, this.entry.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.flagService.unflagEntry(this.entry.id).subscribe((result) => { this.flagService.unflagEntry(this.entry.id).subscribe({
next: () => {
this.entry.metadata.unflag = false; this.entry.metadata.unflag = false;
this.entry.metadata.flag = true; this.entry.metadata.flag = true;
}
}); });
} }
}
}); });
} }
@ -133,17 +153,21 @@ export class UiEntry implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'entry.confirmDelete', 'label': 'entry.confirmDelete',
'args': [ this.entry.title, this.entry.author ] 'args': [this.entry.title, this.entry.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.entriesService.delete(this.entry.id).subscribe((result: any) => { this.entriesService.delete(this.entry.id).subscribe({
next: () => {
this.entry = null; this.entry = null;
this.change && this.change(); this.change && this.change();
}
}) })
} }
}
}); });
} }
@ -151,17 +175,21 @@ export class UiEntry implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'moderation.entry.confirmDelete', 'label': 'moderation.entry.confirmDelete',
'args': [ this.entry.title, this.entry.author ] 'args': [this.entry.title, this.entry.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.moderationService.deleteEntry(this.entry.id).subscribe((result: any) => { this.moderationService.deleteEntry(this.entry.id).subscribe({
next: () => {
this.entry = null; this.entry = null;
this.change && this.change(); this.change && this.change();
}
}) })
} }
}
}); });
} }
@ -169,16 +197,20 @@ export class UiEntry implements OnInit {
const dialogRef = this.dialog.open(ConfirmDialog, { const dialogRef = this.dialog.open(ConfirmDialog, {
data: { data: {
'label': 'moderation.entry.confirmUnflag', 'label': 'moderation.entry.confirmUnflag',
'args': [ this.entry.title, this.entry.author ] 'args': [this.entry.title, this.entry.author]
} }
}) })
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe({
next: (result) => {
if (result) { if (result) {
this.moderationService.unflagEntry(this.entry.id).subscribe((result: any) => { this.moderationService.unflagEntry(this.entry.id).subscribe({
next: () => {
this.change && this.change(); this.change && this.change();
}
}) })
} }
}
}); });
} }
} }

View File

@ -48,12 +48,14 @@ export class UiMain {
private _adapter: DateAdapter<any>, private swUpdate: SwUpdate) { private _adapter: DateAdapter<any>, private swUpdate: SwUpdate) {
iconRegistry.addSvgIcon('logo', sanitizer.bypassSecurityTrustResourceUrl('assets/icons/logo.svg')); iconRegistry.addSvgIcon('logo', sanitizer.bypassSecurityTrustResourceUrl('assets/icons/logo.svg'));
this.swUpdate.versionUpdates.subscribe(evt => { this.swUpdate.versionUpdates.subscribe({
next: (evt) => {
if (evt.type == 'VERSION_READY') { if (evt.type == 'VERSION_READY') {
this.hasUpdate = true; this.hasUpdate = true;
} else if (evt.type == 'VERSION_INSTALLATION_FAILED') { } else if (evt.type == 'VERSION_INSTALLATION_FAILED') {
console.error(`Failed to install version '${evt.version.hash}': ${evt.error}`); console.error(`Failed to install version '${evt.version.hash}': ${evt.error}`);
} }
}
}) })
if (this.swUpdate.isEnabled) { if (this.swUpdate.isEnabled) {
@ -68,15 +70,18 @@ export class UiMain {
this.datetimeformat = this.i18n.get('format.datetime', []); this.datetimeformat = this.i18n.get('format.datetime', []);
this.currentLocale = this.i18n.getLocale(); this.currentLocale = this.i18n.getLocale();
this.locales = this.i18n.getLocales(); this.locales = this.i18n.getLocales();
this.authService.auth.subscribe(auth => { this.authService.auth.subscribe({
next: (auth) => {
this.authenticated = true; this.authenticated = true;
for (let role of auth.authorities) { for (let role of auth.authorities) {
if (role.authority == 'ROLE_ADMIN' || role.authority == 'ROLE_MOD') { if (role.authority == 'ROLE_ADMIN' || role.authority == 'ROLE_MOD') {
this.moderator = true; this.moderator = true;
} }
} }
}, (error) => { },
error: (error) => {
this.authenticated = false; this.authenticated = false;
}
}) })
this._adapter.setLocale(this.currentLocale); this._adapter.setLocale(this.currentLocale);
@ -102,11 +107,15 @@ export class UiMain {
localStorage.setItem("bstlboard.locale", locale); localStorage.setItem("bstlboard.locale", locale);
if (this.authenticated) { if (this.authenticated) {
this.userService.get().subscribe((user: any) => { this.userService.get().subscribe({
next: (user: any) => {
user.locale = locale; user.locale = locale;
this.userService.update(user).subscribe(() => { this.userService.update(user).subscribe({
next: () => {
window.location.reload(); window.location.reload();
}
}) })
}
}); });
} else { } else {
window.location.reload(); window.location.reload();
@ -140,11 +149,15 @@ export class UiMain {
localStorage.setItem("bstlboard.darkTheme", this.darkTheme ? "true" : "false"); localStorage.setItem("bstlboard.darkTheme", this.darkTheme ? "true" : "false");
if (this.authenticated) { if (this.authenticated) {
this.userService.get().subscribe((user: any) => { this.userService.get().subscribe({
next: (user: any) => {
user.darkTheme = this.darkTheme; user.darkTheme = this.darkTheme;
this.userService.update(user).subscribe(() => { this.userService.update(user).subscribe({
next: () => {
window.location.reload(); window.location.reload();
}
}) })
}
}); });
} else { } else {
window.location.reload(); window.location.reload();
@ -154,10 +167,12 @@ export class UiMain {
logout() { logout() {
localStorage.removeItem("bstlboard.autologin"); localStorage.removeItem("bstlboard.autologin");
this.authService.logout().subscribe(data => { this.authService.logout().subscribe({
next: () => {
this.router.navigate([""]).then(() => { this.router.navigate([""]).then(() => {
window.location.reload(); window.location.reload();
}); });
}
}) })
} }
@ -185,19 +200,24 @@ export class UiMain {
} }
touchEvents(): void { touchEvents(): void {
fromEvent(document, 'touchstart').subscribe((event: TouchEvent) => { fromEvent(document, 'touchstart').subscribe({
next: (event: TouchEvent) => {
if (event.touches[0]) { if (event.touches[0]) {
this.touchStartX = event.touches[0].screenX; this.touchStartX = event.touches[0].screenX;
} }
})
fromEvent(document, 'touchmove').subscribe((event: TouchEvent) => {
if (event.touches[0]) {
this.touchX = event.touches[0].screenX;
} }
}) })
fromEvent(document, 'touchend').subscribe((event: TouchEvent) => { fromEvent(document, 'touchmove').subscribe({
next: (event: TouchEvent) => {
if (event.touches[0]) {
this.touchX = event.touches[0].screenX;
}
}
})
fromEvent(document, 'touchend').subscribe({
next: () => {
if (this.touchX != 0) { if (this.touchX != 0) {
const touchDiff = this.touchStartX - this.touchX; const touchDiff = this.touchStartX - this.touchX;
this.touchStartX = 0; this.touchStartX = 0;
@ -208,6 +228,7 @@ export class UiMain {
this.opened = false; this.opened = false;
} }
} }
}
}) })
} }

View File

@ -4,7 +4,7 @@ import { VoteService } from '../../services/vote.service';
@Component({ @Component({
selector: 'ui-points', selector: 'ui-points',
templateUrl: './points.ui.html', templateUrl: './points.ui.html',
styleUrls: [ './points.ui.scss' ] styleUrls: ['./points.ui.scss']
}) })
export class UiPoints implements OnInit { export class UiPoints implements OnInit {
@ -16,12 +16,16 @@ export class UiPoints implements OnInit {
ngOnInit(): void { ngOnInit(): void {
if (this.type == 'e') { if (this.type == 'e') {
this.voteService.getEntryPoints(this.target).subscribe((data) => { this.voteService.getEntryPoints(this.target).subscribe({
next: (data) => {
this.count = +data; this.count = +data;
}
}); });
} else if (this.type == 'c') { } else if (this.type == 'c') {
this.voteService.getCommentPoints(this.target).subscribe((data) => { this.voteService.getCommentPoints(this.target).subscribe({
next: (data) => {
this.count = +data; this.count = +data;
}
}); });
} }
} }

View File

@ -20,12 +20,16 @@ export class UiViewMenu implements OnInit {
} }
ngOnInit(): void { ngOnInit(): void {
this.settingsSubscription = this.settingsService.settings.subscribe((settings) => { this.settingsSubscription = this.settingsService.settings.subscribe({
next: (settings) => {
this.settings = settings; this.settings = settings;
this.viewService.views.subscribe((data: any) => { this.viewService.views.subscribe({
next: (data: any) => {
this.views = data.content; this.views = data.content;
}
}) })
this.viewService.getViews(); this.viewService.getViews();
}
}) })
} }

View File

@ -1,15 +1,18 @@
import { Pipe, PipeTransform } from '@angular/core'; import { Pipe, PipeTransform } from '@angular/core';
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
@Pipe({ name: 'urltext' }) @Pipe({ name: 'urltext' })
export class UrlTextPipe implements PipeTransform { export class UrlTextPipe implements PipeTransform {
httpPattern = /(\b(https?:\/\/)([-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|]))/ig; httpPattern = /(\b(https?:\/\/)([-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|]))/ig;
wwwPattern =/(^|[^\/>])(www\.[\S]+(\b|$))/gim; wwwPattern = /(^|[^\/>])(www\.[\S]+(\b|$))/gim;
transform(value: string): any { constructor(private santisizer: DomSanitizer) { }
transform(value: string): SafeHtml {
value = value.replace(this.httpPattern, '<a href="$1" target="_blank">$3</a>'); value = value.replace(this.httpPattern, '<a href="$1" target="_blank">$3</a>');
value = value.replace(this.wwwPattern, '$1<a target="_blank" href="https://$2">$2</a>'); value = value.replace(this.wwwPattern, '$1<a target="_blank" href="https://$2">$2</a>');
return value; return this.santisizer.bypassSecurityTrustHtml(value);
} }
} }
@ -23,7 +26,7 @@ export class UrlBasePipe implements PipeTransform {
return ''; return '';
} }
const parts = value.split( '/' ) const parts = value.split('/')
if (parts.length < 3) { if (parts.length < 3) {
return ''; return '';