Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/some fixes #13

Closed
wants to merge 55 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
2aca743
ref: Update packages
Lissy93 Mar 16, 2025
70a0dd6
feat: Resolve CORS for self-hosted environments
Lissy93 Mar 16, 2025
6a3cdd0
ref: Zone.js bump
Lissy93 Mar 16, 2025
6ec5866
ref: Remove submodule
Lissy93 Mar 16, 2025
72522e6
ref: Remove zone.js
Lissy93 Mar 16, 2025
d09a462
ref: Remove static pages
Lissy93 Mar 16, 2025
7bddb59
ref: Pre-render homepage
Lissy93 Mar 16, 2025
25f5990
ref: Remove pre-rendering
Lissy93 Mar 16, 2025
3f13734
ref: ffs
Lissy93 Mar 16, 2025
54c16cc
ref: Pin Zone.js to 0.14.8
Lissy93 Mar 16, 2025
538d15b
ref: Pin Zone.js to 0.14.8, pin again
Lissy93 Mar 16, 2025
ed5852c
ref: i hate everything
Lissy93 Mar 16, 2025
c8ed13a
ref: wtf why is everything broken
Lissy93 Mar 16, 2025
903e39e
ref: A different error, yay
Lissy93 Mar 16, 2025
91c99f3
fix: Apex charts
Lissy93 Mar 16, 2025
2acecad
fix: Make TypeScript happy.
Lissy93 Mar 16, 2025
bd681ae
fix: Don't optimize large deps not needed at build-time
Lissy93 Mar 16, 2025
cd2c856
perf: Attempt to imrpvoe build-time performance
Lissy93 Mar 16, 2025
332b638
perf: Manual chunking
Lissy93 Mar 16, 2025
5d43bf3
perf: Setting outputs
Lissy93 Mar 16, 2025
3e695c7
perf: Dont optimize heavy deps
Lissy93 Mar 16, 2025
5624993
perf: Remove manual chunking
Lissy93 Mar 16, 2025
b202d1a
ref: I am loosing the will to live.
Lissy93 Mar 16, 2025
ea2811e
ref: Attempt to pre-render less stuff
Lissy93 Mar 16, 2025
65cbf5d
ref: Maybe some nitro options will help
Lissy93 Mar 16, 2025
0087cb7
ref: Even more manual chunking. This is getting stupid now
Lissy93 Mar 16, 2025
a0377d2
ref: Don't prerender
Lissy93 Mar 17, 2025
9fe9618
ref: Remove dependencies
Lissy93 Mar 17, 2025
3f46ce0
ref: Vercel is fucking stupid
Lissy93 Mar 17, 2025
b51df93
ref: Move screenshots out of app
Lissy93 Mar 17, 2025
28f7578
ref: Revert vite config, i am so deperate not
Lissy93 Mar 17, 2025
41f9573
ref: Remove mermaid, becos it big
Lissy93 Mar 17, 2025
242473f
ref: Remove mermaid, becos it big
Lissy93 Mar 17, 2025
e6bbc75
ref: Remove prime table
Lissy93 Mar 17, 2025
b0bdc71
ref: i am never using javascript ever again
Lissy93 Mar 17, 2025
64440bc
ref: Remove vite static copy. All attempts are futile at this point
Lissy93 Mar 17, 2025
cfaf299
ref: Remove client config from server config. I wish I was dead
Lissy93 Mar 17, 2025
2ee01dd
ref: Revert
Lissy93 Mar 17, 2025
38c9c3c
feat: Let's try a github workflow
Lissy93 Mar 17, 2025
27d089d
feat: Deploy to feature environment
Lissy93 Mar 17, 2025
3152713
ref: Why cant i do anything right
Lissy93 Mar 17, 2025
de01f72
ref: Adds env vars to github workflow. why am i doing this
Lissy93 Mar 17, 2025
224b318
ref: So close to rm -rf'ing everything
Lissy93 Mar 17, 2025
1bdec5a
ref: Add Vercel bypass token. And I re-wrote my will.
Lissy93 Mar 17, 2025
6e17e0c
ref: Run the fucking workflow, god fucking dam
Lissy93 Mar 17, 2025
def79de
ref: Install fucking node_modueles ffs
Lissy93 Mar 17, 2025
8a6623b
ref: Disable sourcemaps
Lissy93 Mar 17, 2025
00a4e20
ref: Remove nitro options. Die a little bit more inside
Lissy93 Mar 17, 2025
1ec183f
ref: Revert back to out-of-date dependencies, in deperate attempt to …
Lissy93 Mar 17, 2025
ecf721d
ref: Update dependencies. Again. nothing works, ihml
Lissy93 Mar 17, 2025
af346ac
ref: Put screenshot assets back, was nor source of issue
Lissy93 Mar 17, 2025
de8f55c
fix: Reload domains after adding new domain
Lissy93 Mar 22, 2025
19972db
fix: Resolve issue in filter field selections
Lissy93 Mar 22, 2025
1da7bcc
fix: Add optional limit for domain updates return
Lissy93 Mar 22, 2025
bf2c292
merge: Resolve conflicts
Lissy93 Mar 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core';
import { ChangeDetectorRef, Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core';
import { CommonModule } from '@angular/common';
import Fuse from 'fuse.js';
import { DomainCardComponent } from '~/app/components/domain-things/domain-card/domain-card.component';
Expand Down Expand Up @@ -59,6 +59,10 @@ export class DomainCollectionComponent implements OnInit {

visibleColumns: any[] = [];

constructor(
private cdr: ChangeDetectorRef,
) {}

ngOnInit() {
this.filteredDomains = this.domains;
this.sortDomains();
Expand Down Expand Up @@ -135,8 +139,10 @@ export class DomainCollectionComponent implements OnInit {

reloadDomains(event: any) {
setTimeout(() => {
// this.triggerReload();
this.$triggerReload.emit(event);
}, 1500);
this.cdr.detectChanges();
}, 2000);
}

initializeFuse() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
<p-multiSelect
id="field-filters"
[options]="fieldOptions"
[(ngModel)]="selectedFields"
[(ngModel)]="selectedFieldsList"
(onChange)="onSelectionChange()"
optionLabel="label"
selectedItemsLabel="{0} fields shown"
[style]="{minWidth: '200px'}"
placeholder="Choose visible fields"
></p-multiSelect>
/>
</div>
<!-- Sort Select Dropdown -->
<div class="flex flex-col gap-1" *ngIf="selectedLayout">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export class FieldVisibilityFilterComponent implements OnInit {
@Output() $triggerReload = new EventEmitter();

selectedFields: FieldOption[] = [];
selectedFieldsList: string[] = [];
sortOrder: FieldOption = this.sortOptions[0];
selectedLayout: boolean = true;
quickAddDialogOpen: boolean = false;
Expand Down Expand Up @@ -95,13 +96,18 @@ export class FieldVisibilityFilterComponent implements OnInit {
this.selectedFields = this.fieldOptions.filter(option =>
this.defaultSelectedFields.includes(option.value)
);
this.selectedFieldsList = this.selectedFields.map(field => field.value);
this.onSelectionChange();
}

onSelectionChange() {
if (this.selectedFields.length === 0) {
this.initializeSelectedFields();
}
this.selectedFields = this.fieldOptions.filter(option =>
this.selectedFieldsList.includes(option.value)
);

this.visibilityChange.emit(this.selectedFields);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ SELECT domains.*, registrars.name AS registrar_name, tags.name AS tag_name, host



async getDomainUptime(userId: string, domainId: string, timeframe: string): Promise<{
async getDomainUptime(userId: string, domainId: string, timeframe: string, limit?: number): Promise<{
checked_at: string;
is_up: boolean;
response_code: number;
Expand Down
67 changes: 60 additions & 7 deletions src/app/services/db-query-services/sb-database.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -694,13 +694,66 @@ export default class MainDatabaseService extends DatabaseService {
* @param domainId The ID of the domain
* @param timeframe The timeframe to filter data (e.g., 'day', 'week', etc.)
*/
getDomainUptime(userId: string, domainId: string, timeframe: string) {
return this.supabase.supabase.rpc('get_domain_uptime', {
user_id: userId,
domain_id: domainId,
timeframe: timeframe,
});
}
/**
* Fetches domain uptime records for the given timeframe,
* verifying that domain belongs to userId.
*/
async getDomainUptime(userId: string, domainId: string, timeframe: string, limit?: number) {
const fromDate = this.getFromDateForTimeframe(timeframe);
const { data, error } = await this.supabase.supabase
.from('uptime')
.select(`
checked_at,
is_up,
response_code,
response_time_ms,
dns_lookup_time_ms,
ssl_handshake_time_ms,
domains!inner(id, user_id)
`)
// domain must match
.eq('domain_id', domainId)
// user must match
.eq('domains.user_id', userId)
// checked_at >= fromDate
.gte('checked_at', fromDate.toISOString())
.order('checked_at', { ascending: true })
.limit(limit || 1000);

if (error) {
throw new Error(`Failed to fetch domain uptime: ${error.message}`);
}
return data || [];
}

/**
* Helper that maps timeframe => JS date offset
* e.g. 'day' => fromDate = (now - 1 day)
*/
private getFromDateForTimeframe(timeframe: string): Date {
const now = Date.now();
let offsetMs = 24 * 60 * 60 * 1000; // default 1 day
switch (timeframe) {
case 'day':
offsetMs = 24 * 60 * 60 * 1000;
break;
case 'week':
offsetMs = 7 * 24 * 60 * 60 * 1000;
break;
case 'month':
offsetMs = 30 * 24 * 60 * 60 * 1000;
break;
case 'year':
offsetMs = 365 * 24 * 60 * 60 * 1000;
break;
default:
// fallback to 1 day
offsetMs = 24 * 60 * 60 * 1000;
break;
}
return new Date(now - offsetMs);
}



checkAllTables(): Observable<{table: string; count: number | string; success: string;}[]> {
Expand Down
12 changes: 6 additions & 6 deletions src/app/services/db-query-services/sb/db-history.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ export class HistoryQueries {
.from('domain_updates')
.select('id', { count: 'exact' });

// if (domainName) {
// query = this.supabase
// .from('domain_updates')
// .select('id, domains!inner(domain_name)', { count: 'exact' })
// .eq('domains.domain_name', domainName);
// }
if (domainName) {
query = this.supabase
.from<any, any>('domain_updates')
.select('id, domains!inner(domain_name)', { count: 'exact' })
.eq('domains.domain_name', domainName);
}

return from(query.then(({ count, error }: { count: number | null; error: any }) => {
if (error) throw error;
Expand Down
2 changes: 1 addition & 1 deletion src/types/Database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export abstract class DatabaseService {
statusQueries!: SbStatusQueries | PgStatusQueries;
subdomainsQueries!: SbSubdomainsQueries | PgSubdomainsQueries;

abstract getDomainUptime(userId: string, domainId: string, timeframe: string): any;
abstract getDomainUptime(userId: string, domainId: string, timeframe: string, limit?: number): any;
abstract listDomains(): Observable<DbDomain[]>;
abstract domainExists(inputUserId: string | null, domainName: string): Promise<boolean>;
abstract saveDomain(data: SaveDomainData): Observable<DbDomain>;
Expand Down