feat: Added file formatting

This commit is contained in:
2025-06-11 11:56:39 +02:00
parent 772fc52cf6
commit a25a90c0d7
164 changed files with 4163 additions and 3242 deletions

View File

@@ -1,66 +1,98 @@
import { Injectable } from '@angular/core';
import { Injectable } from '@angular/core'
import { HttpClient } from '@angular/common/http'
import { Menu } from '../types/menu';
import { environment } from 'src/environments/environment';
import { News } from '../types/news';
import { UKey } from '../types/key';
import { CleanNote } from '../types/clean-note';
import { Status } from '../types/status';
import { DateTime } from 'luxon';
import { Menu } from '../types/menu'
import { environment } from 'src/environments/environment'
import { News } from '../types/news'
import { UKey } from '../types/key'
import { CleanNote } from '../types/clean-note'
import { Status } from '../types/status'
import { DateTime } from 'luxon'
@Injectable({
providedIn: 'root'
providedIn: 'root',
})
export class UpdatesService {
constructor(private http:HttpClient) { }
constructor(private http: HttpClient) {}
getNews() {
const headers = {
'Content-Type': 'application/json',
}
return this.http.get<News[]>(environment.apiEndpoint+"/app/news", {headers: headers, withCredentials: true})
return this.http.get<News[]>(environment.apiEndpoint + '/app/news', {
headers: headers,
withCredentials: true,
})
}
newsCheck() {
return this.http.get<{ hash: string; count: number; }>(environment.apiEndpoint+`/app/news/check`, {withCredentials: true})
return this.http.get<{ hash: string; count: number }>(
environment.apiEndpoint + `/app/news/check`,
{ withCredentials: true }
)
}
getMenu(dom: string) {
const headers = {
'Content-Type': 'application/json',
}
return this.http.get<Menu>(environment.apiEndpoint+`/app/menu/${dom}`, {headers: headers, withCredentials: true})
return this.http.get<Menu>(environment.apiEndpoint + `/app/menu/${dom}`, {
headers: headers,
withCredentials: true,
})
}
postVote(date: string, type: "ob" | "kol", vote: "-" | "+" | "n") {
return this.http.post(environment.apiEndpoint+`/app/menu/${date}`, {
doc: DateTime.now(),
tom: type,
vote: vote
}, {withCredentials: true})
postVote(date: string, type: 'ob' | 'kol', vote: '-' | '+' | 'n') {
return this.http.post(
environment.apiEndpoint + `/app/menu/${date}`,
{
doc: DateTime.now(),
tom: type,
vote: vote,
},
{ withCredentials: true }
)
}
postNotif(nd: object) {
const headers = {
'Content-Type': 'application/json',
}
this.http.post(environment.apiEndpoint+`/notif`, nd, {headers: headers, withCredentials: true}).subscribe()
this.http
.post(environment.apiEndpoint + `/notif`, nd, {
headers: headers,
withCredentials: true,
})
.subscribe()
}
getKeys() {
return this.http.get<UKey[]>(environment.apiEndpoint+`/app/keys`, {withCredentials: true})
return this.http.get<UKey[]>(environment.apiEndpoint + `/app/keys`, {
withCredentials: true,
})
}
getClean(date: string) {
return this.http.get<{grade: number, notes: CleanNote[], tips: string}>(environment.apiEndpoint+`/app/clean/${date}`, {withCredentials: true})
return this.http.get<{ grade: number; notes: CleanNote[]; tips: string }>(
environment.apiEndpoint + `/app/clean/${date}`,
{ withCredentials: true }
)
}
getNotifCheck() {
return this.http.get<{_id: string, message: {title: string, body: string}, sentDate: string}[]>(environment.apiEndpoint+`/app/notif/check`, {withCredentials: true})
return this.http.get<
{
_id: string
message: { title: string; body: string }
sentDate: string
}[]
>(environment.apiEndpoint + `/app/notif/check`, { withCredentials: true })
}
postInfoAck(id: string) {
return this.http.post<Status>(environment.apiEndpoint+`/app/notif/${id}/ack`, undefined, {withCredentials: true})
return this.http.post<Status>(
environment.apiEndpoint + `/app/notif/${id}/ack`,
undefined,
{ withCredentials: true }
)
}
}