nestlens 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/api.controller.d.ts +9 -9
- package/dist/api/api.controller.js +7 -7
- package/dist/api/dto/cursor-query.dto.d.ts +1 -1
- package/dist/api/filters/api-exception.filter.js +2 -2
- package/dist/dashboard/public/assets/{BatchesPage-BQ72RujB.js → BatchesPage-CBuvtLok.js} +1 -1
- package/dist/dashboard/public/assets/{CachePage-Cb1VWfXU.js → CachePage-CVI2MWOP.js} +1 -1
- package/dist/dashboard/public/assets/{ClickableBadge-Clzjyl0E.js → ClickableBadge-BFhMLE2u.js} +1 -1
- package/dist/dashboard/public/assets/{CommandsPage-BPFdSjSC.js → CommandsPage-CpXlDpH2.js} +1 -1
- package/dist/dashboard/public/assets/{DashboardPage-B2wT42Ey.js → DashboardPage-DBq9olrb.js} +1 -1
- package/dist/dashboard/public/assets/{DumpsPage-Be3darqp.js → DumpsPage-CvCmvONu.js} +1 -1
- package/dist/dashboard/public/assets/{EntryDetailPage-BD5G5NgR.js → EntryDetailPage-DYSZpdsH.js} +1 -1
- package/dist/dashboard/public/assets/{EventsPage-DQTrH4q2.js → EventsPage-B__c8fMG.js} +1 -1
- package/dist/dashboard/public/assets/{ExceptionsPage-DjSZ5OHK.js → ExceptionsPage-gYd6g1uV.js} +1 -1
- package/dist/dashboard/public/assets/{GatesPage-SgCZtjpH.js → GatesPage-CY-lCHBF.js} +1 -1
- package/dist/dashboard/public/assets/{GraphQLPage-BA-vwEU9.js → GraphQLPage-45EotnyF.js} +1 -1
- package/dist/dashboard/public/assets/{HttpClientPage-bqF8EeJj.js → HttpClientPage-B504GqrK.js} +1 -1
- package/dist/dashboard/public/assets/{JobsPage-CfhQKDhd.js → JobsPage-BCaWNqRu.js} +1 -1
- package/dist/dashboard/public/assets/{LogsPage-ByFHQ7j0.js → LogsPage-4QbIACro.js} +1 -1
- package/dist/dashboard/public/assets/{MailPage-DrDldKkZ.js → MailPage-rwNbPrlt.js} +1 -1
- package/dist/dashboard/public/assets/{ModelsPage-CToibyEE.js → ModelsPage-Jc7WSrV2.js} +1 -1
- package/dist/dashboard/public/assets/{NotificationsPage-99oeNat2.js → NotificationsPage-CHkJmY88.js} +1 -1
- package/dist/dashboard/public/assets/{PageHeader-9Hq00zou.js → PageHeader-FW-7_zU_.js} +1 -1
- package/dist/dashboard/public/assets/{QueriesPage-DzgzP7wD.js → QueriesPage-Cq_dTmNR.js} +1 -1
- package/dist/dashboard/public/assets/{RedisPage-Bw0L1nlO.js → RedisPage-WyIqRY51.js} +1 -1
- package/dist/dashboard/public/assets/{RequestsPage-CfJCEzEA.js → RequestsPage-Ddf6EpBe.js} +1 -1
- package/dist/dashboard/public/assets/{SchedulePage-Bwrl5Jv7.js → SchedulePage-Bnj6BP7j.js} +1 -1
- package/dist/dashboard/public/assets/{ViewsPage-CT_fCLKM.js → ViewsPage-DgdMD9iC.js} +1 -1
- package/dist/dashboard/public/assets/{calendar-Bs_KQSCD.js → calendar-C6HprwOI.js} +1 -1
- package/dist/dashboard/public/assets/{circle-check-big-BfYLNjik.js → circle-check-big-cy9U-hu6.js} +1 -1
- package/dist/dashboard/public/assets/{eye-ONa9Uejs.js → eye-D01Pihl7.js} +1 -1
- package/dist/dashboard/public/assets/{index-DRB0IsZ5.js → index-yKzNgrAF.js} +2 -2
- package/dist/dashboard/public/assets/{types-Cn_Kw7hJ.js → types-CvWsUZ4q.js} +1 -1
- package/dist/dashboard/public/assets/{zap-Dj2ZeoGW.js → zap-DOqgN4r4.js} +1 -1
- package/dist/dashboard/public/index.html +1 -1
- package/dist/watchers/graphql/adapters/apollo-plugin.provider.d.ts +1 -1
- package/dist/watchers/graphql/adapters/apollo-plugin.provider.js +1 -1
- package/dist/watchers/graphql/adapters/base.adapter.d.ts +2 -2
- package/package.json +4 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { StorageInterface } from '
|
|
2
|
-
import { PruningService } from '
|
|
3
|
-
import { CollectorService } from '
|
|
4
|
-
import { NestLensConfig } from '
|
|
5
|
-
import { EntryType, CursorPaginatedResponse, Entry } from '
|
|
1
|
+
import { StorageInterface } from '../core';
|
|
2
|
+
import { PruningService } from '../core';
|
|
3
|
+
import { CollectorService } from '../core';
|
|
4
|
+
import { NestLensConfig } from '../nestlens.config';
|
|
5
|
+
import { EntryType, CursorPaginatedResponse, Entry } from '../types';
|
|
6
6
|
import { CursorQueryDto } from './dto';
|
|
7
7
|
export declare class NestLensApiController {
|
|
8
8
|
private readonly storage;
|
|
@@ -62,14 +62,14 @@ export declare class NestLensApiController {
|
|
|
62
62
|
data: Entry[];
|
|
63
63
|
}>;
|
|
64
64
|
getEntry(id: number): Promise<{
|
|
65
|
-
data: import("
|
|
65
|
+
data: import("../types").RequestEntry;
|
|
66
66
|
related: Entry[];
|
|
67
67
|
} | {
|
|
68
|
-
data: import("
|
|
68
|
+
data: import("../types").GraphQLEntry | import("../types").RequestEntry | import("../types").QueryEntry | import("../types").ExceptionEntry | import("../types").LogEntry | import("../types").CacheEntry | import("../types").EventEntry | import("../types").JobEntry | import("../types").ScheduleEntry | import("../types").MailEntry | import("../types").HttpClientEntry | import("../types").RedisEntry | import("../types").ModelEntry | import("../types").NotificationEntry | import("../types").ViewEntry | import("../types").CommandEntry | import("../types").GateEntry | import("../types").BatchEntry | import("../types").DumpEntry;
|
|
69
69
|
related?: undefined;
|
|
70
70
|
}>;
|
|
71
71
|
getStats(): Promise<{
|
|
72
|
-
data: import("
|
|
72
|
+
data: import("../types").EntryStats;
|
|
73
73
|
}>;
|
|
74
74
|
getRequests(limit?: string, offset?: string): Promise<{
|
|
75
75
|
data: Entry[];
|
|
@@ -107,7 +107,7 @@ export declare class NestLensApiController {
|
|
|
107
107
|
* Storage stats endpoint
|
|
108
108
|
*/
|
|
109
109
|
getStorageStats(): Promise<{
|
|
110
|
-
data: import("
|
|
110
|
+
data: import("../types").StorageStats;
|
|
111
111
|
}>;
|
|
112
112
|
/**
|
|
113
113
|
* Pruning endpoints
|
|
@@ -15,15 +15,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15
15
|
exports.NestLensApiController = void 0;
|
|
16
16
|
const common_1 = require("@nestjs/common");
|
|
17
17
|
const swagger_1 = require("@nestjs/swagger");
|
|
18
|
-
const core_1 = require("
|
|
19
|
-
const core_2 = require("
|
|
20
|
-
const core_3 = require("
|
|
21
|
-
const nestlens_config_1 = require("
|
|
18
|
+
const core_1 = require("../core");
|
|
19
|
+
const core_2 = require("../core");
|
|
20
|
+
const core_3 = require("../core");
|
|
21
|
+
const nestlens_config_1 = require("../nestlens.config");
|
|
22
22
|
const api_guard_1 = require("./api.guard");
|
|
23
23
|
const dto_1 = require("./dto");
|
|
24
|
-
const filters_1 = require("
|
|
25
|
-
const interceptors_1 = require("
|
|
26
|
-
const exceptions_1 = require("
|
|
24
|
+
const filters_1 = require("../api/filters");
|
|
25
|
+
const interceptors_1 = require("../api/interceptors");
|
|
26
|
+
const exceptions_1 = require("../api/exceptions");
|
|
27
27
|
let NestLensApiController = class NestLensApiController {
|
|
28
28
|
/**
|
|
29
29
|
* Safely parse and bound pagination limit
|
|
@@ -8,8 +8,8 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.NestLensApiExceptionFilter = void 0;
|
|
10
10
|
const common_1 = require("@nestjs/common");
|
|
11
|
-
const constants_1 = require("
|
|
12
|
-
const exceptions_1 = require("
|
|
11
|
+
const constants_1 = require("../../api/constants");
|
|
12
|
+
const exceptions_1 = require("../../api/exceptions");
|
|
13
13
|
/**
|
|
14
14
|
* Global exception filter for NestLens API.
|
|
15
15
|
* Transforms all exceptions into standardized ApiResponse format.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as a,L as d}from"./index-
|
|
1
|
+
import{j as a,L as d}from"./index-yKzNgrAF.js";import{e as B,b as D}from"./vendor-B2nVRih0.js";import{u as F,C as c,f as M,p as T}from"./ClickableBadge-BFhMLE2u.js";import{u as A,P as L,N as R,L as $}from"./PageHeader-FW-7_zU_.js";import{s as I,T as s,D as H,b as S}from"./types-CvWsUZ4q.js";function G(){const h=B(),{addFilter:r,clearAll:p,serverFilters:u,headerFilters:x,hasFilters:m}=F("batches"),{entries:g,loading:y,refreshing:o,newEntriesCount:f,hasMore:j,loadMore:b,loadNew:k,autoRefreshEnabled:C,setAutoRefresh:N,meta:i,isHighlighted:w}=A({type:"batch",limit:50,filters:u}),n=g.filter(e=>I(e)),E=D.useMemo(()=>[{key:"name",header:"Name",minWidth:"200px",render:e=>a.jsx(s,{mono:!0,truncate:!0,maxWidth:"250px",children:e.payload.name})},{key:"operation",header:"Operation",width:"150px",render:e=>e.payload.operation?a.jsx(c,{onClick:t=>{t.stopPropagation(),r("operations",e.payload.operation)},children:e.payload.operation}):a.jsx(s,{secondary:!0,children:"-"})},{key:"progress",header:"Progress",width:"150px",render:e=>{const{processedItems:t,totalItems:l}=e.payload,P=l>0?Math.round(t/l*100):0;return a.jsxs("div",{className:"flex items-center space-x-2",children:[a.jsx(s,{children:`${t}/${l}`}),a.jsxs("span",{className:"text-xs text-gray-500 dark:text-gray-400",children:["(",P,"%)"]})]})}},{key:"status",header:"Status",width:"120px",render:e=>a.jsx(c,{onClick:t=>{t.stopPropagation(),r("statuses",e.payload.status)},children:e.payload.status.toUpperCase()})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>e.payload.duration?a.jsx(H,{ms:e.payload.duration}):a.jsx(s,{secondary:!0,children:"-"})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>a.jsx(s,{secondary:!0,className:"text-xs",children:M(T(e.createdAt),{addSuffix:!0})})}],[r]);if(y&&n.length===0)return a.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:a.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const v=m?"pt-28":"pt-16";return a.jsxs("div",{children:[a.jsx(L,{title:"Batches",icon:d,iconColor:"text-blue-600 dark:text-blue-400",count:n.length,totalCount:i==null?void 0:i.total,refreshing:o,autoRefreshEnabled:C,onAutoRefreshToggle:N,filters:x,onClearAllFilters:p}),a.jsxs("div",{className:`${v} space-y-4 transition-all duration-200`,children:[a.jsx(R,{count:f,onClick:k,loading:o}),a.jsx(S,{columns:E,data:n,keyExtractor:e=>e.id,onRowClick:e=>h(`/batches/${e.id}`),rowClassName:e=>w(e.id)?"highlight-new":"",emptyMessage:"No batch operations recorded yet",emptyIcon:a.jsx(d,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),a.jsx($,{hasMore:j,onClick:b,loading:o})]})]})}export{G as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as a,H as o}from"./index-
|
|
1
|
+
import{j as a,H as o}from"./index-yKzNgrAF.js";import{e as b,b as T}from"./vendor-B2nVRih0.js";import{u as E,C as n,f as v,p as D}from"./ClickableBadge-BFhMLE2u.js";import{u as M,P as R,N as A,L as F}from"./PageHeader-FW-7_zU_.js";import{h as H,T as i,D as P,b as B}from"./types-CvWsUZ4q.js";function K(){const l=b(),{clearAll:d,serverFilters:c,headerFilters:h,hasFilters:p}=E("cache"),{entries:u,loading:x,refreshing:t,newEntriesCount:y,hasMore:m,loadMore:g,loadNew:f,autoRefreshEnabled:j,setAutoRefresh:k,meta:r,isHighlighted:C}=M({type:"cache",limit:50,filters:c}),s=u.filter(e=>H(e)),w=T.useMemo(()=>[{key:"operation",header:"Operation",width:"100px",render:e=>a.jsx(n,{listType:"cache",filterType:"operations",children:e.payload.operation})},{key:"key",header:"Key",minWidth:"200px",render:e=>a.jsx(i,{mono:!0,truncate:!0,maxWidth:"400px",children:e.payload.key.length>50?e.payload.key.substring(0,50)+"...":e.payload.key})},{key:"result",header:"Result",width:"80px",align:"center",render:e=>e.payload.operation==="get"?a.jsx(n,{listType:"cache",filterType:"tags",filterValue:e.payload.hit?"hit":"miss",children:e.payload.hit?"HIT":"MISS"}):a.jsx(i,{secondary:!0,children:"—"})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>a.jsx(P,{ms:e.payload.duration||0})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>a.jsx(i,{secondary:!0,className:"text-xs",children:v(D(e.createdAt),{addSuffix:!0})})}],[]);if(x&&s.length===0)return a.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:a.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const N=p?"pt-28":"pt-16";return a.jsxs("div",{children:[a.jsx(R,{title:"Cache",icon:o,iconColor:"text-cyan-600 dark:text-cyan-400",count:s.length,totalCount:r==null?void 0:r.total,refreshing:t,autoRefreshEnabled:j,onAutoRefreshToggle:k,filters:h,onClearAllFilters:d}),a.jsxs("div",{className:`${N} space-y-4 transition-all duration-200`,children:[a.jsx(A,{count:y,onClick:f,loading:t}),a.jsx(B,{columns:w,data:s,keyExtractor:e=>e.id,onRowClick:e=>l(`/cache/${e.id}`),rowClassName:e=>C(e.id)?"highlight-new":"",emptyMessage:"No cache operations recorded yet",emptyIcon:a.jsx(o,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),a.jsx(F,{hasMore:m,onClick:g,loading:t})]})]})}export{K as default};
|
package/dist/dashboard/public/assets/{ClickableBadge-Clzjyl0E.js → ClickableBadge-BFhMLE2u.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as T}from"./index-DRB0IsZ5.js";import{f as H,b as p,e as j,u as q}from"./vendor-B2nVRih0.js";const Ye=6048e5,Ve=864e5,S=43200,L=1440,K=Symbol.for("constructDateFrom");function C(t,e){return typeof t=="function"?t(e):t&&typeof t=="object"&&K in t?t[K](e):t instanceof Date?new t.constructor(e):new Date(e)}function k(t,e){return C(e||t,t)}let G={};function X(){return G}function I(t){const e=k(t),a=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()));return a.setUTCFullYear(e.getFullYear()),+t-+a}function O(t,...e){const a=C.bind(null,t||e.find(r=>typeof r=="object"));return e.map(a)}function P(t,e){const a=+k(t)-+k(e);return a<0?-1:a>0?1:a}function Y(t){return C(t,Date.now())}function V(t,e,a){const[r,n]=O(a==null?void 0:a.in,t,e),l=r.getFullYear()-n.getFullYear(),i=r.getMonth()-n.getMonth();return l*12+i}function B(t){return e=>{const r=(t?Math[t]:Math.trunc)(e);return r===0?0:r}}function Q(t,e){return+k(t)-+k(e)}function z(t,e){const a=k(t,e==null?void 0:e.in);return a.setHours(23,59,59,999),a}function _(t,e){const a=k(t,e==null?void 0:e.in),r=a.getMonth();return a.setFullYear(a.getFullYear(),r+1,0),a.setHours(23,59,59,999),a}function $(t,e){const a=k(t,e==null?void 0:e.in);return+z(a,e)==+_(a,e)}function J(t,e,a){const[r,n,l]=O(a==null?void 0:a.in,t,t,e),i=P(n,l),s=Math.abs(V(n,l));if(s<1)return 0;n.getMonth()===1&&n.getDate()>27&&n.setDate(30),n.setMonth(n.getMonth()-i*s);let b=P(n,l)===-i;$(r)&&s===1&&P(r,l)===1&&(b=!1);const f=i*(s-+b);return f===0?0:f}function Z(t,e,a){const r=Q(t,e)/1e3;return B(a==null?void 0:a.roundingMethod)(r)}const ee={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},te=(t,e,a)=>{let r;const n=ee[t];return typeof n=="string"?r=n:e===1?r=n.one:r=n.other.replace("{{count}}",e.toString()),a!=null&&a.addSuffix?a.comparison&&a.comparison>0?"in "+r:r+" ago":r};function M(t){return(e={})=>{const a=e.width?String(e.width):t.defaultWidth;return t.formats[a]||t.formats[t.defaultWidth]}}const ae={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},re={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},ne={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},se={date:M({formats:ae,defaultWidth:"full"}),time:M({formats:re,defaultWidth:"full"}),dateTime:M({formats:ne,defaultWidth:"full"})},ie={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},oe=(t,e,a,r)=>ie[t];function v(t){return(e,a)=>{const r=a!=null&&a.context?String(a.context):"standalone";let n;if(r==="formatting"&&t.formattingValues){const i=t.defaultFormattingWidth||t.defaultWidth,s=a!=null&&a.width?String(a.width):i;n=t.formattingValues[s]||t.formattingValues[i]}else{const i=t.defaultWidth,s=a!=null&&a.width?String(a.width):t.defaultWidth;n=t.values[s]||t.values[i]}const l=t.argumentCallback?t.argumentCallback(e):e;return n[l]}}const le={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},ue={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},de={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},ce={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},me={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},fe={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},ge=(t,e)=>{const a=Number(t),r=a%100;if(r>20||r<10)switch(r%10){case 1:return a+"st";case 2:return a+"nd";case 3:return a+"rd"}return a+"th"},he={ordinalNumber:ge,era:v({values:le,defaultWidth:"wide"}),quarter:v({values:ue,defaultWidth:"wide",argumentCallback:t=>t-1}),month:v({values:de,defaultWidth:"wide"}),day:v({values:ce,defaultWidth:"wide"}),dayPeriod:v({values:me,defaultWidth:"wide",formattingValues:fe,defaultFormattingWidth:"wide"})};function E(t){return(e,a={})=>{const r=a.width,n=r&&t.matchPatterns[r]||t.matchPatterns[t.defaultMatchWidth],l=e.match(n);if(!l)return null;const i=l[0],s=r&&t.parsePatterns[r]||t.parsePatterns[t.defaultParseWidth],b=Array.isArray(s)?be(s,h=>h.test(i)):ye(s,h=>h.test(i));let f;f=t.valueCallback?t.valueCallback(b):b,f=a.valueCallback?a.valueCallback(f):f;const g=e.slice(i.length);return{value:f,rest:g}}}function ye(t,e){for(const a in t)if(Object.prototype.hasOwnProperty.call(t,a)&&e(t[a]))return a}function be(t,e){for(let a=0;a<t.length;a++)if(e(t[a]))return a}function pe(t){return(e,a={})=>{const r=e.match(t.matchPattern);if(!r)return null;const n=r[0],l=e.match(t.parsePattern);if(!l)return null;let i=t.valueCallback?t.valueCallback(l[0]):l[0];i=a.valueCallback?a.valueCallback(i):i;const s=e.slice(n.length);return{value:i,rest:s}}}const ke=/^(\d+)(th|st|nd|rd)?/i,xe=/\d+/i,Ne={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},ve={any:[/^b/i,/^(a|c)/i]},Ee={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},we={any:[/1/i,/2/i,/3/i,/4/i]},Se={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},Te={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},Pe={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},Me={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},De={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},Ce={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},Oe={ordinalNumber:pe({matchPattern:ke,parsePattern:xe,valueCallback:t=>parseInt(t,10)}),era:E({matchPatterns:Ne,defaultMatchWidth:"wide",parsePatterns:ve,defaultParseWidth:"any"}),quarter:E({matchPatterns:Ee,defaultMatchWidth:"wide",parsePatterns:we,defaultParseWidth:"any",valueCallback:t=>t+1}),month:E({matchPatterns:Se,defaultMatchWidth:"wide",parsePatterns:Te,defaultParseWidth:"any"}),day:E({matchPatterns:Pe,defaultMatchWidth:"wide",parsePatterns:Me,defaultParseWidth:"any"}),dayPeriod:E({matchPatterns:De,defaultMatchWidth:"any",parsePatterns:Ce,defaultParseWidth:"any"})},Re={code:"en-US",formatDistance:te,formatLong:se,formatRelative:oe,localize:he,match:Oe,options:{weekStartsOn:0,firstWeekContainsDate:1}};function Ae(t,e,a){const r=X(),n=(a==null?void 0:a.locale)??r.locale??Re,l=2520,i=P(t,e);if(isNaN(i))throw new RangeError("Invalid time value");const s=Object.assign({},a,{addSuffix:a==null?void 0:a.addSuffix,comparison:i}),[b,f]=O(a==null?void 0:a.in,...i>0?[e,t]:[t,e]),g=Z(f,b),h=(I(f)-I(b))/1e3,m=Math.round((g-h)/60);let u;if(m<2)return a!=null&&a.includeSeconds?g<5?n.formatDistance("lessThanXSeconds",5,s):g<10?n.formatDistance("lessThanXSeconds",10,s):g<20?n.formatDistance("lessThanXSeconds",20,s):g<40?n.formatDistance("halfAMinute",0,s):g<60?n.formatDistance("lessThanXMinutes",1,s):n.formatDistance("xMinutes",1,s):m===0?n.formatDistance("lessThanXMinutes",1,s):n.formatDistance("xMinutes",m,s);if(m<45)return n.formatDistance("xMinutes",m,s);if(m<90)return n.formatDistance("aboutXHours",1,s);if(m<L){const o=Math.round(m/60);return n.formatDistance("aboutXHours",o,s)}else{if(m<l)return n.formatDistance("xDays",1,s);if(m<S){const o=Math.round(m/L);return n.formatDistance("xDays",o,s)}else if(m<S*2)return u=Math.round(m/S),n.formatDistance("aboutXMonths",u,s)}if(u=J(f,b),u<12){const o=Math.round(m/S);return n.formatDistance("xMonths",o,s)}else{const o=u%12,d=Math.trunc(u/12);return o<3?n.formatDistance("aboutXYears",d,s):o<9?n.formatDistance("overXYears",d,s):n.formatDistance("almostXYears",d+1,s)}}function Be(t,e){return Ae(t,Y(t),e)}function Qe(t){if(t.includes("T")&&(t.includes("Z")||t.includes("+")))return new Date(t);const e=t.replace(" ","T")+"Z";return new Date(e)}const D={request:{displayName:"Request",pluralName:"Requests",route:"requests",icon:"Globe",filters:{methods:{urlKey:"methods",displayName:"Method",values:["GET","POST","PUT","PATCH","DELETE","HEAD","OPTIONS","GRAPHQL"]},statuses:{urlKey:"statuses",displayName:"Status",values:[]},paths:{urlKey:"paths",displayName:"Path",values:[]},controllers:{urlKey:"controllers",displayName:"Controller",values:[]},hostnames:{urlKey:"hostnames",displayName:"Hostname",values:[]},ips:{urlKey:"ips",displayName:"IP",values:[]}}},query:{displayName:"Query",pluralName:"Queries",route:"queries",icon:"Database",filters:{types:{urlKey:"queryTypes",displayName:"Type",values:["SELECT","INSERT","UPDATE","DELETE","CREATE","ALTER","DROP","TRUNCATE"]},sources:{urlKey:"sources",displayName:"Source",values:["typeorm","prisma","mongoose","sequelize","knex","mikro-orm","drizzle"]}}},exception:{displayName:"Exception",pluralName:"Exceptions",route:"exceptions",icon:"AlertTriangle",filters:{names:{urlKey:"names",displayName:"Name",values:[]},methods:{urlKey:"methods",displayName:"Method",values:["GET","POST","PUT","PATCH","DELETE","HEAD","OPTIONS"]},paths:{urlKey:"paths",displayName:"Path",values:[]}}},log:{displayName:"Log",pluralName:"Logs",route:"logs",icon:"FileText",filters:{levels:{urlKey:"levels",displayName:"Level",values:["log","error","warn","debug","verbose","fatal","info"]},contexts:{urlKey:"contexts",displayName:"Context",values:[]}}},event:{displayName:"Event",pluralName:"Events",route:"events",icon:"Zap",filters:{names:{urlKey:"eventNames",displayName:"Event",values:[]}}},job:{displayName:"Job",pluralName:"Jobs",route:"jobs",icon:"Briefcase",filters:{names:{urlKey:"jobNames",displayName:"Job",values:[]},statuses:{urlKey:"jobStatuses",displayName:"Status",values:["waiting","active","completed","failed","delayed","paused","stuck"]},queues:{urlKey:"queues",displayName:"Queue",values:[]}}},schedule:{displayName:"Schedule",pluralName:"Schedule",route:"schedule",icon:"Clock",filters:{names:{urlKey:"scheduleNames",displayName:"Task",values:[]},statuses:{urlKey:"scheduleStatuses",displayName:"Status",values:["started","completed","failed","skipped","running"]}}},cache:{displayName:"Cache",pluralName:"Cache",route:"cache",icon:"HardDrive",filters:{operations:{urlKey:"cacheOperations",displayName:"Operation",values:["get","set","del","clear","has","reset","mget","mset"]}}},mail:{displayName:"Mail",pluralName:"Mail",route:"mail",icon:"Mail",filters:{statuses:{urlKey:"mailStatuses",displayName:"Status",values:["sent","failed","pending","queued","delivered","bounced","error"]}}},"http-client":{displayName:"HTTP Client",pluralName:"HTTP Client",route:"http-client",icon:"Globe",filters:{methods:{urlKey:"methods",displayName:"Method",values:["GET","POST","PUT","PATCH","DELETE","HEAD","OPTIONS"]},statuses:{urlKey:"statuses",displayName:"Status",values:[]},hostnames:{urlKey:"hostnames",displayName:"Hostname",values:[]}}},redis:{displayName:"Redis",pluralName:"Redis",route:"redis",icon:"Database",filters:{commands:{urlKey:"redisCommands",displayName:"Command",values:["GET","SET","DEL","HGET","HSET","HDEL","HGETALL","LPUSH","RPUSH","LPOP","RPOP","LRANGE","SADD","SREM","SMEMBERS","ZADD","ZRANGE","ZREM","EXPIRE","TTL","KEYS","SCAN","PING","INFO","INCR","DECR","MGET","MSET","PUBLISH","SUBSCRIBE"]},statuses:{urlKey:"redisStatuses",displayName:"Status",values:["success","failed","error","timeout"]}}},model:{displayName:"Model",pluralName:"Models",route:"models",icon:"Box",filters:{actions:{urlKey:"modelActions",displayName:"Action",values:["find","findOne","findMany","create","update","delete","save","remove","count","aggregate","upsert","createMany","updateMany","deleteMany"]},entities:{urlKey:"entities",displayName:"Entity",values:[]},sources:{urlKey:"modelSources",displayName:"Source",values:["typeorm","prisma","mongoose","sequelize","mikro-orm","drizzle"]}}},notification:{displayName:"Notification",pluralName:"Notifications",route:"notifications",icon:"Bell",filters:{types:{urlKey:"notificationTypes",displayName:"Type",values:["email","sms","push","socket","webhook","slack","telegram","discord"]},statuses:{urlKey:"notificationStatuses",displayName:"Status",values:["sent","failed","pending","delivered","read","error","queued"]}}},view:{displayName:"View",pluralName:"Views",route:"views",icon:"Layout",filters:{formats:{urlKey:"viewFormats",displayName:"Format",values:["html","json","xml","pdf","csv","text","markdown"]},statuses:{urlKey:"viewStatuses",displayName:"Status",values:["rendered","error","failed","cached","success"]}}},command:{displayName:"Command",pluralName:"Commands",route:"commands",icon:"Terminal",filters:{statuses:{urlKey:"commandStatuses",displayName:"Status",values:["executing","completed","failed","cancelled","timeout","running"]},names:{urlKey:"commandNames",displayName:"Command",values:[]}}},gate:{displayName:"Gate",pluralName:"Gates",route:"gates",icon:"Shield",filters:{names:{urlKey:"gateNames",displayName:"Gate",values:[]},results:{urlKey:"gateResults",displayName:"Result",values:["allowed","denied"]}}},batch:{displayName:"Batch",pluralName:"Batches",route:"batches",icon:"Layers",filters:{operations:{urlKey:"batchOperations",displayName:"Operation",values:["insert","update","delete","upsert","sync"]},statuses:{urlKey:"batchStatuses",displayName:"Status",values:["pending","processing","completed","failed","partial","cancelled"]}}},dump:{displayName:"Dump",pluralName:"Dumps",route:"dumps",icon:"HardDrive",filters:{operations:{urlKey:"dumpOperations",displayName:"Operation",values:["export","import","backup","restore","migrate","sync"]},formats:{urlKey:"dumpFormats",displayName:"Format",values:["json","csv","xml","sql","yaml","binary","xlsx"]},statuses:{urlKey:"dumpStatuses",displayName:"Status",values:["pending","completed","failed","error","success","cancelled","running"]}}},graphql:{displayName:"GraphQL",pluralName:"GraphQL",route:"graphql",icon:"Hexagon",filters:{operationTypes:{urlKey:"operationTypes",displayName:"Type",values:["query","mutation","subscription"]},operationNames:{urlKey:"operationNames",displayName:"Operation",values:[]},statuses:{urlKey:"statuses",displayName:"Status",values:[]}}}},Le={requests:"request",queries:"query",exceptions:"exception",logs:"log",events:"event",jobs:"job",schedule:"schedule",cache:"cache",mail:"mail","http-client":"http-client",redis:"redis",models:"model",notifications:"notification",views:"view",commands:"command",gates:"gate",batches:"batch",dumps:"dump",graphql:"graphql"};function Ke(t){if(t in D)return D[t];const e=Le[t];if(e)return D[e]}const W=Ke;function ze(t){const[e,a]=H(),r=W(t),n=p.useCallback(u=>{if(u==="tags")return"tags";if(!r)return u;const o=r.filters[u];return(o==null?void 0:o.urlKey)||u},[r]),l=p.useMemo(()=>{const u={};if(!r)return u;const o=Object.values(r.filters).map(d=>d.urlKey);o.push("tags","search");for(const d of o){const c=e.get(d);c&&(u[d]=c.split(",").filter(Boolean))}return u},[e,r]),i=p.useCallback((u,o)=>{!r&&u!=="tags"&&console.warn("[useEntryFilters] No config found for entry type, using category as urlKey");const d=n(u),c=l[d]||[];if(!c.includes(o)){const y=new URLSearchParams(e);y.set(d,[...c,o].join(",")),a(y,{replace:!0})}},[r,n,l,e,a]),s=p.useCallback((u,o)=>{const c=(l[u]||[]).filter(x=>x!==o),y=new URLSearchParams(e);c.length>0?y.set(u,c.join(",")):y.delete(u),a(y,{replace:!0})},[l,e,a]),b=p.useCallback(()=>{a({},{replace:!0})},[a]),f=p.useMemo(()=>l,[l]),g=p.useMemo(()=>{if(!r)return[];const u=[];for(const[o,d]of Object.entries(l)){if(d.length===0)continue;let c=o,y=o==="tags"?"Tag":o;for(const[x,N]of Object.entries(r.filters))if(N.urlKey===o){c=x,y=N.displayName;break}u.push({category:c,urlKey:o,displayName:y,values:d})}return u},[l,r]),h=p.useMemo(()=>{const u=[];for(const o of g)for(const d of o.values)u.push({category:o.displayName,value:d.toUpperCase(),onRemove:()=>s(o.urlKey,d)});return u},[g,s]),m=g.length>0;return{addFilter:i,removeFilter:s,clearAll:b,serverFilters:f,activeFilters:g,headerFilters:h,hasFilters:m,getUrlKey:n}}function Ie(t,e){if(e==="tags")return"tags";const a=W(t);if(!a)return e;const r=a.filters[e];return(r==null?void 0:r.urlKey)||e}const F=["GET","POST","PUT","PATCH","DELETE","HEAD","OPTIONS","GRAPHQL"],U=["bg-rose-100 text-rose-800 dark:bg-rose-900 dark:text-rose-400","bg-amber-100 text-amber-800 dark:bg-amber-900 dark:text-amber-400","bg-lime-100 text-lime-800 dark:bg-lime-900 dark:text-lime-400","bg-emerald-100 text-emerald-800 dark:bg-emerald-900 dark:text-emerald-400","bg-sky-100 text-sky-800 dark:bg-sky-900 dark:text-sky-400","bg-violet-100 text-violet-800 dark:bg-violet-900 dark:text-violet-400","bg-fuchsia-100 text-fuchsia-800 dark:bg-fuchsia-900 dark:text-fuchsia-400","bg-teal-100 text-teal-800 dark:bg-teal-900 dark:text-teal-400"];function We(t){let e=0;for(let a=0;a<t.length;a++)e=(e<<5)-e+t.charCodeAt(a),e=e&e;return Math.abs(e)%U.length}const Fe=["localhost"],Ue=(t,e)=>{if(e&&e!=="tag")return e;if(/^(\d{1,3}\.){3}\d{1,3}$/.test(t))return"ips";const a=t.toUpperCase();if(F.includes(a))return"methods";const r=parseInt(t,10);return!isNaN(r)&&r>=100&&r<600?"statuses":/^[a-fA-F0-9:]+$/.test(t)&&t.includes(":")&&!t.includes(".")?"ips":t.includes("#")||t.includes("::")||/Controller\./i.test(t)?"controllers":Fe.includes(t.toLowerCase())||(t.includes(".")||t.includes(":"))&&!t.startsWith("/")&&!/^\d+$/.test(t)?"hostnames":"tags"};function He(t){const e=t.toUpperCase();if(t.startsWith("/"))return"bg-cyan-100 text-cyan-800 dark:bg-cyan-900/30 dark:text-cyan-400";if(/^(\d{1,3}\.){3}\d{1,3}$/.test(t)||/^[a-fA-F0-9:]+$/.test(t)&&t.includes(":")&&!t.includes("."))return"bg-indigo-100 text-indigo-800 dark:bg-indigo-900/30 dark:text-indigo-400";if(t.includes("#")||t.includes("::")||/Controller\./i.test(t))return"bg-teal-100 text-teal-800 dark:bg-teal-900/30 dark:text-teal-400";if(e.startsWith("USER:"))return"bg-purple-100 text-purple-800 dark:bg-purple-900/30 dark:text-purple-400";const a=t.toLowerCase(),r=/:\d+$/.test(t),n=/\.(com|org|net|io|dev|app|co|local|internal)$/i.test(t),l=/^[A-Z0-9_.]+$/.test(t)&&t.includes(".");if(a==="localhost"||r&&!t.startsWith("/")||n&&!l)return"bg-slate-100 text-slate-800 dark:bg-slate-700 dark:text-slate-300";if(e==="GET")return"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200";if(e==="POST")return"bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200";if(e==="PUT")return"bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-200";if(e==="PATCH")return"bg-orange-100 text-orange-800 dark:bg-orange-900 dark:text-orange-200";if(e==="DELETE")return"bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-200";if(["HEAD","OPTIONS"].includes(e))return"bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300";if(e==="GRAPHQL")return"bg-pink-100 text-pink-800 dark:bg-pink-900 dark:text-pink-200";const i=parseInt(e,10);if(!isNaN(i)&&i>=100&&i<600)return i>=500?"bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-400":i>=400?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400":i>=300?"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400":"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400";if(e==="SUCCESS"||e==="2XX"||e==="HIT")return"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400";if(e==="REDIRECT"||e==="3XX")return"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400";if(e==="WARNING"||e==="WARN"||e==="4XX"||e==="CLIENT-ERROR")return"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400";if(e==="ERROR"||e==="5XX"||e==="HTTP-ERROR"||e==="VALIDATION-ERROR"||e==="FAILED")return"bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-400";if(e==="SLOW"||e==="SLOW QUERY")return"bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-400";if(e==="N+1"||e==="N1")return"bg-amber-100 text-amber-700 dark:bg-amber-900/50 dark:text-amber-300";if(["SELECT","INSERT","UPDATE"].includes(e))return"bg-cyan-100 text-cyan-800 dark:bg-cyan-900/30 dark:text-cyan-400";if(e==="DEBUG")return"bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200";if(e==="LOG"||e==="INFO")return"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200";if(e==="VERBOSE")return"bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300";if(e==="QUERY"||e==="MUTATION"||e==="SUBSCRIPTION"){if(e==="QUERY")return"bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200";if(e==="MUTATION")return"bg-purple-100 text-purple-800 dark:bg-purple-900 dark:text-purple-200";if(e==="SUBSCRIPTION")return"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200"}return e==="REQUEST"?"bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200":e==="EXCEPTION"?"bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-200":e==="LOG"||e==="EVENT"?"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200":e==="JOB"?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-200":e==="CACHE"?"bg-cyan-100 text-cyan-800 dark:bg-cyan-900 dark:text-cyan-200":e==="MAIL"?"bg-pink-100 text-pink-800 dark:bg-pink-900 dark:text-pink-200":e==="SCHEDULE"?"bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300":e==="HTTP-CLIENT"?"bg-cyan-100 text-cyan-800 dark:bg-cyan-900 dark:text-cyan-200":e==="RESOLVED"||e==="COMPLETED"||e==="SENT"||e==="ACTIVE"?"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400":e==="WAITING"||e==="DELAYED"||e==="PENDING"?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400":e==="MISS"?"bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300":e==="GET"&&!F.includes(e)?"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400":e==="SET"?"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400":e==="DEL"||e==="DELETE"?"bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-400":e==="CLEAR"?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400":e==="STARTED"?"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400":e==="TYPEORM"?"bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-400":e==="PRISMA"?"bg-indigo-100 text-indigo-800 dark:bg-indigo-900/30 dark:text-indigo-400":e==="MONGOOSE"?"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400":e==="SEQUELIZE"?"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400":e==="KNEX"?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400":e==="MIKRO-ORM"?"bg-purple-100 text-purple-800 dark:bg-purple-900/30 dark:text-purple-400":e==="NORMAL"?"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200":U[We(e)]}function je({children:t,listType:e,filterType:a="tag",filterValue:r,onClick:n,clickable:l=!0,className:i="",ariaLabel:s}){const b=j(),f=q(),g=c=>{if(c.preventDefault(),c.stopPropagation(),n){n(c);return}if(e&&l){const y=r||String(t),x=a&&a!=="tag"?Ie(e,a):Ue(y,a),N=f.pathname,w=N===`/${e}`||N.startsWith(`/${e}/`)?new URLSearchParams(f.search):new URLSearchParams,R=w.get(x);if(R){const A=R.split(",");A.includes(y)||w.set(x,[...A,y].join(","))}else w.set(x,y);b(`/${e}?${w.toString()}`)}},h=l&&(!!n||!!e),m=He(String(t)),u=h?"cursor-pointer hover:scale-105 transition-transform":"",o=String(t).toUpperCase(),d=s||(h?`Click to filter by ${o}`:void 0);return T.jsx("span",{onClick:h?g:void 0,role:h?"button":void 0,"aria-label":d,tabIndex:h?0:void 0,onKeyDown:h?c=>{(c.key==="Enter"||c.key===" ")&&(c.preventDefault(),g(c))}:void 0,title:o,className:`inline-flex items-center px-2 py-0.5 rounded text-xs font-bold uppercase tracking-wide max-w-[200px] overflow-hidden text-ellipsis whitespace-nowrap shadow ${m} ${u} ${h?"focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-1":""} ${i}`,children:o})}function _e({items:t,listType:e,filterType:a="tag",maxItems:r=99,clickable:n=!0}){if(!t||t.length===0)return null;const l=t.slice(0,r),i=t.length-r;return T.jsxs("div",{className:"flex flex-wrap items-center gap-1",children:[l.map(s=>T.jsx(je,{listType:e,filterType:a,clickable:n,children:s},s)),i>0&&T.jsxs("span",{className:"text-xs text-gray-500 dark:text-gray-400",children:["+",i]})]})}export{_e as B,je as C,X as a,I as b,C as c,Ye as d,Re as e,Be as f,He as g,Ve as m,O as n,Qe as p,k as t,ze as u};
|
|
1
|
+
import{j as T}from"./index-yKzNgrAF.js";import{f as H,b as p,e as j,u as q}from"./vendor-B2nVRih0.js";const Ye=6048e5,Ve=864e5,S=43200,L=1440,K=Symbol.for("constructDateFrom");function C(t,e){return typeof t=="function"?t(e):t&&typeof t=="object"&&K in t?t[K](e):t instanceof Date?new t.constructor(e):new Date(e)}function k(t,e){return C(e||t,t)}let G={};function X(){return G}function I(t){const e=k(t),a=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()));return a.setUTCFullYear(e.getFullYear()),+t-+a}function O(t,...e){const a=C.bind(null,t||e.find(r=>typeof r=="object"));return e.map(a)}function P(t,e){const a=+k(t)-+k(e);return a<0?-1:a>0?1:a}function Y(t){return C(t,Date.now())}function V(t,e,a){const[r,n]=O(a==null?void 0:a.in,t,e),l=r.getFullYear()-n.getFullYear(),i=r.getMonth()-n.getMonth();return l*12+i}function B(t){return e=>{const r=(t?Math[t]:Math.trunc)(e);return r===0?0:r}}function Q(t,e){return+k(t)-+k(e)}function z(t,e){const a=k(t,e==null?void 0:e.in);return a.setHours(23,59,59,999),a}function _(t,e){const a=k(t,e==null?void 0:e.in),r=a.getMonth();return a.setFullYear(a.getFullYear(),r+1,0),a.setHours(23,59,59,999),a}function $(t,e){const a=k(t,e==null?void 0:e.in);return+z(a,e)==+_(a,e)}function J(t,e,a){const[r,n,l]=O(a==null?void 0:a.in,t,t,e),i=P(n,l),s=Math.abs(V(n,l));if(s<1)return 0;n.getMonth()===1&&n.getDate()>27&&n.setDate(30),n.setMonth(n.getMonth()-i*s);let b=P(n,l)===-i;$(r)&&s===1&&P(r,l)===1&&(b=!1);const f=i*(s-+b);return f===0?0:f}function Z(t,e,a){const r=Q(t,e)/1e3;return B(a==null?void 0:a.roundingMethod)(r)}const ee={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},te=(t,e,a)=>{let r;const n=ee[t];return typeof n=="string"?r=n:e===1?r=n.one:r=n.other.replace("{{count}}",e.toString()),a!=null&&a.addSuffix?a.comparison&&a.comparison>0?"in "+r:r+" ago":r};function M(t){return(e={})=>{const a=e.width?String(e.width):t.defaultWidth;return t.formats[a]||t.formats[t.defaultWidth]}}const ae={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},re={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},ne={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},se={date:M({formats:ae,defaultWidth:"full"}),time:M({formats:re,defaultWidth:"full"}),dateTime:M({formats:ne,defaultWidth:"full"})},ie={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},oe=(t,e,a,r)=>ie[t];function v(t){return(e,a)=>{const r=a!=null&&a.context?String(a.context):"standalone";let n;if(r==="formatting"&&t.formattingValues){const i=t.defaultFormattingWidth||t.defaultWidth,s=a!=null&&a.width?String(a.width):i;n=t.formattingValues[s]||t.formattingValues[i]}else{const i=t.defaultWidth,s=a!=null&&a.width?String(a.width):t.defaultWidth;n=t.values[s]||t.values[i]}const l=t.argumentCallback?t.argumentCallback(e):e;return n[l]}}const le={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},ue={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},de={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},ce={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},me={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},fe={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},ge=(t,e)=>{const a=Number(t),r=a%100;if(r>20||r<10)switch(r%10){case 1:return a+"st";case 2:return a+"nd";case 3:return a+"rd"}return a+"th"},he={ordinalNumber:ge,era:v({values:le,defaultWidth:"wide"}),quarter:v({values:ue,defaultWidth:"wide",argumentCallback:t=>t-1}),month:v({values:de,defaultWidth:"wide"}),day:v({values:ce,defaultWidth:"wide"}),dayPeriod:v({values:me,defaultWidth:"wide",formattingValues:fe,defaultFormattingWidth:"wide"})};function E(t){return(e,a={})=>{const r=a.width,n=r&&t.matchPatterns[r]||t.matchPatterns[t.defaultMatchWidth],l=e.match(n);if(!l)return null;const i=l[0],s=r&&t.parsePatterns[r]||t.parsePatterns[t.defaultParseWidth],b=Array.isArray(s)?be(s,h=>h.test(i)):ye(s,h=>h.test(i));let f;f=t.valueCallback?t.valueCallback(b):b,f=a.valueCallback?a.valueCallback(f):f;const g=e.slice(i.length);return{value:f,rest:g}}}function ye(t,e){for(const a in t)if(Object.prototype.hasOwnProperty.call(t,a)&&e(t[a]))return a}function be(t,e){for(let a=0;a<t.length;a++)if(e(t[a]))return a}function pe(t){return(e,a={})=>{const r=e.match(t.matchPattern);if(!r)return null;const n=r[0],l=e.match(t.parsePattern);if(!l)return null;let i=t.valueCallback?t.valueCallback(l[0]):l[0];i=a.valueCallback?a.valueCallback(i):i;const s=e.slice(n.length);return{value:i,rest:s}}}const ke=/^(\d+)(th|st|nd|rd)?/i,xe=/\d+/i,Ne={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},ve={any:[/^b/i,/^(a|c)/i]},Ee={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},we={any:[/1/i,/2/i,/3/i,/4/i]},Se={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},Te={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},Pe={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},Me={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},De={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},Ce={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},Oe={ordinalNumber:pe({matchPattern:ke,parsePattern:xe,valueCallback:t=>parseInt(t,10)}),era:E({matchPatterns:Ne,defaultMatchWidth:"wide",parsePatterns:ve,defaultParseWidth:"any"}),quarter:E({matchPatterns:Ee,defaultMatchWidth:"wide",parsePatterns:we,defaultParseWidth:"any",valueCallback:t=>t+1}),month:E({matchPatterns:Se,defaultMatchWidth:"wide",parsePatterns:Te,defaultParseWidth:"any"}),day:E({matchPatterns:Pe,defaultMatchWidth:"wide",parsePatterns:Me,defaultParseWidth:"any"}),dayPeriod:E({matchPatterns:De,defaultMatchWidth:"any",parsePatterns:Ce,defaultParseWidth:"any"})},Re={code:"en-US",formatDistance:te,formatLong:se,formatRelative:oe,localize:he,match:Oe,options:{weekStartsOn:0,firstWeekContainsDate:1}};function Ae(t,e,a){const r=X(),n=(a==null?void 0:a.locale)??r.locale??Re,l=2520,i=P(t,e);if(isNaN(i))throw new RangeError("Invalid time value");const s=Object.assign({},a,{addSuffix:a==null?void 0:a.addSuffix,comparison:i}),[b,f]=O(a==null?void 0:a.in,...i>0?[e,t]:[t,e]),g=Z(f,b),h=(I(f)-I(b))/1e3,m=Math.round((g-h)/60);let u;if(m<2)return a!=null&&a.includeSeconds?g<5?n.formatDistance("lessThanXSeconds",5,s):g<10?n.formatDistance("lessThanXSeconds",10,s):g<20?n.formatDistance("lessThanXSeconds",20,s):g<40?n.formatDistance("halfAMinute",0,s):g<60?n.formatDistance("lessThanXMinutes",1,s):n.formatDistance("xMinutes",1,s):m===0?n.formatDistance("lessThanXMinutes",1,s):n.formatDistance("xMinutes",m,s);if(m<45)return n.formatDistance("xMinutes",m,s);if(m<90)return n.formatDistance("aboutXHours",1,s);if(m<L){const o=Math.round(m/60);return n.formatDistance("aboutXHours",o,s)}else{if(m<l)return n.formatDistance("xDays",1,s);if(m<S){const o=Math.round(m/L);return n.formatDistance("xDays",o,s)}else if(m<S*2)return u=Math.round(m/S),n.formatDistance("aboutXMonths",u,s)}if(u=J(f,b),u<12){const o=Math.round(m/S);return n.formatDistance("xMonths",o,s)}else{const o=u%12,d=Math.trunc(u/12);return o<3?n.formatDistance("aboutXYears",d,s):o<9?n.formatDistance("overXYears",d,s):n.formatDistance("almostXYears",d+1,s)}}function Be(t,e){return Ae(t,Y(t),e)}function Qe(t){if(t.includes("T")&&(t.includes("Z")||t.includes("+")))return new Date(t);const e=t.replace(" ","T")+"Z";return new Date(e)}const D={request:{displayName:"Request",pluralName:"Requests",route:"requests",icon:"Globe",filters:{methods:{urlKey:"methods",displayName:"Method",values:["GET","POST","PUT","PATCH","DELETE","HEAD","OPTIONS","GRAPHQL"]},statuses:{urlKey:"statuses",displayName:"Status",values:[]},paths:{urlKey:"paths",displayName:"Path",values:[]},controllers:{urlKey:"controllers",displayName:"Controller",values:[]},hostnames:{urlKey:"hostnames",displayName:"Hostname",values:[]},ips:{urlKey:"ips",displayName:"IP",values:[]}}},query:{displayName:"Query",pluralName:"Queries",route:"queries",icon:"Database",filters:{types:{urlKey:"queryTypes",displayName:"Type",values:["SELECT","INSERT","UPDATE","DELETE","CREATE","ALTER","DROP","TRUNCATE"]},sources:{urlKey:"sources",displayName:"Source",values:["typeorm","prisma","mongoose","sequelize","knex","mikro-orm","drizzle"]}}},exception:{displayName:"Exception",pluralName:"Exceptions",route:"exceptions",icon:"AlertTriangle",filters:{names:{urlKey:"names",displayName:"Name",values:[]},methods:{urlKey:"methods",displayName:"Method",values:["GET","POST","PUT","PATCH","DELETE","HEAD","OPTIONS"]},paths:{urlKey:"paths",displayName:"Path",values:[]}}},log:{displayName:"Log",pluralName:"Logs",route:"logs",icon:"FileText",filters:{levels:{urlKey:"levels",displayName:"Level",values:["log","error","warn","debug","verbose","fatal","info"]},contexts:{urlKey:"contexts",displayName:"Context",values:[]}}},event:{displayName:"Event",pluralName:"Events",route:"events",icon:"Zap",filters:{names:{urlKey:"eventNames",displayName:"Event",values:[]}}},job:{displayName:"Job",pluralName:"Jobs",route:"jobs",icon:"Briefcase",filters:{names:{urlKey:"jobNames",displayName:"Job",values:[]},statuses:{urlKey:"jobStatuses",displayName:"Status",values:["waiting","active","completed","failed","delayed","paused","stuck"]},queues:{urlKey:"queues",displayName:"Queue",values:[]}}},schedule:{displayName:"Schedule",pluralName:"Schedule",route:"schedule",icon:"Clock",filters:{names:{urlKey:"scheduleNames",displayName:"Task",values:[]},statuses:{urlKey:"scheduleStatuses",displayName:"Status",values:["started","completed","failed","skipped","running"]}}},cache:{displayName:"Cache",pluralName:"Cache",route:"cache",icon:"HardDrive",filters:{operations:{urlKey:"cacheOperations",displayName:"Operation",values:["get","set","del","clear","has","reset","mget","mset"]}}},mail:{displayName:"Mail",pluralName:"Mail",route:"mail",icon:"Mail",filters:{statuses:{urlKey:"mailStatuses",displayName:"Status",values:["sent","failed","pending","queued","delivered","bounced","error"]}}},"http-client":{displayName:"HTTP Client",pluralName:"HTTP Client",route:"http-client",icon:"Globe",filters:{methods:{urlKey:"methods",displayName:"Method",values:["GET","POST","PUT","PATCH","DELETE","HEAD","OPTIONS"]},statuses:{urlKey:"statuses",displayName:"Status",values:[]},hostnames:{urlKey:"hostnames",displayName:"Hostname",values:[]}}},redis:{displayName:"Redis",pluralName:"Redis",route:"redis",icon:"Database",filters:{commands:{urlKey:"redisCommands",displayName:"Command",values:["GET","SET","DEL","HGET","HSET","HDEL","HGETALL","LPUSH","RPUSH","LPOP","RPOP","LRANGE","SADD","SREM","SMEMBERS","ZADD","ZRANGE","ZREM","EXPIRE","TTL","KEYS","SCAN","PING","INFO","INCR","DECR","MGET","MSET","PUBLISH","SUBSCRIBE"]},statuses:{urlKey:"redisStatuses",displayName:"Status",values:["success","failed","error","timeout"]}}},model:{displayName:"Model",pluralName:"Models",route:"models",icon:"Box",filters:{actions:{urlKey:"modelActions",displayName:"Action",values:["find","findOne","findMany","create","update","delete","save","remove","count","aggregate","upsert","createMany","updateMany","deleteMany"]},entities:{urlKey:"entities",displayName:"Entity",values:[]},sources:{urlKey:"modelSources",displayName:"Source",values:["typeorm","prisma","mongoose","sequelize","mikro-orm","drizzle"]}}},notification:{displayName:"Notification",pluralName:"Notifications",route:"notifications",icon:"Bell",filters:{types:{urlKey:"notificationTypes",displayName:"Type",values:["email","sms","push","socket","webhook","slack","telegram","discord"]},statuses:{urlKey:"notificationStatuses",displayName:"Status",values:["sent","failed","pending","delivered","read","error","queued"]}}},view:{displayName:"View",pluralName:"Views",route:"views",icon:"Layout",filters:{formats:{urlKey:"viewFormats",displayName:"Format",values:["html","json","xml","pdf","csv","text","markdown"]},statuses:{urlKey:"viewStatuses",displayName:"Status",values:["rendered","error","failed","cached","success"]}}},command:{displayName:"Command",pluralName:"Commands",route:"commands",icon:"Terminal",filters:{statuses:{urlKey:"commandStatuses",displayName:"Status",values:["executing","completed","failed","cancelled","timeout","running"]},names:{urlKey:"commandNames",displayName:"Command",values:[]}}},gate:{displayName:"Gate",pluralName:"Gates",route:"gates",icon:"Shield",filters:{names:{urlKey:"gateNames",displayName:"Gate",values:[]},results:{urlKey:"gateResults",displayName:"Result",values:["allowed","denied"]}}},batch:{displayName:"Batch",pluralName:"Batches",route:"batches",icon:"Layers",filters:{operations:{urlKey:"batchOperations",displayName:"Operation",values:["insert","update","delete","upsert","sync"]},statuses:{urlKey:"batchStatuses",displayName:"Status",values:["pending","processing","completed","failed","partial","cancelled"]}}},dump:{displayName:"Dump",pluralName:"Dumps",route:"dumps",icon:"HardDrive",filters:{operations:{urlKey:"dumpOperations",displayName:"Operation",values:["export","import","backup","restore","migrate","sync"]},formats:{urlKey:"dumpFormats",displayName:"Format",values:["json","csv","xml","sql","yaml","binary","xlsx"]},statuses:{urlKey:"dumpStatuses",displayName:"Status",values:["pending","completed","failed","error","success","cancelled","running"]}}},graphql:{displayName:"GraphQL",pluralName:"GraphQL",route:"graphql",icon:"Hexagon",filters:{operationTypes:{urlKey:"operationTypes",displayName:"Type",values:["query","mutation","subscription"]},operationNames:{urlKey:"operationNames",displayName:"Operation",values:[]},statuses:{urlKey:"statuses",displayName:"Status",values:[]}}}},Le={requests:"request",queries:"query",exceptions:"exception",logs:"log",events:"event",jobs:"job",schedule:"schedule",cache:"cache",mail:"mail","http-client":"http-client",redis:"redis",models:"model",notifications:"notification",views:"view",commands:"command",gates:"gate",batches:"batch",dumps:"dump",graphql:"graphql"};function Ke(t){if(t in D)return D[t];const e=Le[t];if(e)return D[e]}const W=Ke;function ze(t){const[e,a]=H(),r=W(t),n=p.useCallback(u=>{if(u==="tags")return"tags";if(!r)return u;const o=r.filters[u];return(o==null?void 0:o.urlKey)||u},[r]),l=p.useMemo(()=>{const u={};if(!r)return u;const o=Object.values(r.filters).map(d=>d.urlKey);o.push("tags","search");for(const d of o){const c=e.get(d);c&&(u[d]=c.split(",").filter(Boolean))}return u},[e,r]),i=p.useCallback((u,o)=>{!r&&u!=="tags"&&console.warn("[useEntryFilters] No config found for entry type, using category as urlKey");const d=n(u),c=l[d]||[];if(!c.includes(o)){const y=new URLSearchParams(e);y.set(d,[...c,o].join(",")),a(y,{replace:!0})}},[r,n,l,e,a]),s=p.useCallback((u,o)=>{const c=(l[u]||[]).filter(x=>x!==o),y=new URLSearchParams(e);c.length>0?y.set(u,c.join(",")):y.delete(u),a(y,{replace:!0})},[l,e,a]),b=p.useCallback(()=>{a({},{replace:!0})},[a]),f=p.useMemo(()=>l,[l]),g=p.useMemo(()=>{if(!r)return[];const u=[];for(const[o,d]of Object.entries(l)){if(d.length===0)continue;let c=o,y=o==="tags"?"Tag":o;for(const[x,N]of Object.entries(r.filters))if(N.urlKey===o){c=x,y=N.displayName;break}u.push({category:c,urlKey:o,displayName:y,values:d})}return u},[l,r]),h=p.useMemo(()=>{const u=[];for(const o of g)for(const d of o.values)u.push({category:o.displayName,value:d.toUpperCase(),onRemove:()=>s(o.urlKey,d)});return u},[g,s]),m=g.length>0;return{addFilter:i,removeFilter:s,clearAll:b,serverFilters:f,activeFilters:g,headerFilters:h,hasFilters:m,getUrlKey:n}}function Ie(t,e){if(e==="tags")return"tags";const a=W(t);if(!a)return e;const r=a.filters[e];return(r==null?void 0:r.urlKey)||e}const F=["GET","POST","PUT","PATCH","DELETE","HEAD","OPTIONS","GRAPHQL"],U=["bg-rose-100 text-rose-800 dark:bg-rose-900 dark:text-rose-400","bg-amber-100 text-amber-800 dark:bg-amber-900 dark:text-amber-400","bg-lime-100 text-lime-800 dark:bg-lime-900 dark:text-lime-400","bg-emerald-100 text-emerald-800 dark:bg-emerald-900 dark:text-emerald-400","bg-sky-100 text-sky-800 dark:bg-sky-900 dark:text-sky-400","bg-violet-100 text-violet-800 dark:bg-violet-900 dark:text-violet-400","bg-fuchsia-100 text-fuchsia-800 dark:bg-fuchsia-900 dark:text-fuchsia-400","bg-teal-100 text-teal-800 dark:bg-teal-900 dark:text-teal-400"];function We(t){let e=0;for(let a=0;a<t.length;a++)e=(e<<5)-e+t.charCodeAt(a),e=e&e;return Math.abs(e)%U.length}const Fe=["localhost"],Ue=(t,e)=>{if(e&&e!=="tag")return e;if(/^(\d{1,3}\.){3}\d{1,3}$/.test(t))return"ips";const a=t.toUpperCase();if(F.includes(a))return"methods";const r=parseInt(t,10);return!isNaN(r)&&r>=100&&r<600?"statuses":/^[a-fA-F0-9:]+$/.test(t)&&t.includes(":")&&!t.includes(".")?"ips":t.includes("#")||t.includes("::")||/Controller\./i.test(t)?"controllers":Fe.includes(t.toLowerCase())||(t.includes(".")||t.includes(":"))&&!t.startsWith("/")&&!/^\d+$/.test(t)?"hostnames":"tags"};function He(t){const e=t.toUpperCase();if(t.startsWith("/"))return"bg-cyan-100 text-cyan-800 dark:bg-cyan-900/30 dark:text-cyan-400";if(/^(\d{1,3}\.){3}\d{1,3}$/.test(t)||/^[a-fA-F0-9:]+$/.test(t)&&t.includes(":")&&!t.includes("."))return"bg-indigo-100 text-indigo-800 dark:bg-indigo-900/30 dark:text-indigo-400";if(t.includes("#")||t.includes("::")||/Controller\./i.test(t))return"bg-teal-100 text-teal-800 dark:bg-teal-900/30 dark:text-teal-400";if(e.startsWith("USER:"))return"bg-purple-100 text-purple-800 dark:bg-purple-900/30 dark:text-purple-400";const a=t.toLowerCase(),r=/:\d+$/.test(t),n=/\.(com|org|net|io|dev|app|co|local|internal)$/i.test(t),l=/^[A-Z0-9_.]+$/.test(t)&&t.includes(".");if(a==="localhost"||r&&!t.startsWith("/")||n&&!l)return"bg-slate-100 text-slate-800 dark:bg-slate-700 dark:text-slate-300";if(e==="GET")return"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200";if(e==="POST")return"bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200";if(e==="PUT")return"bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-200";if(e==="PATCH")return"bg-orange-100 text-orange-800 dark:bg-orange-900 dark:text-orange-200";if(e==="DELETE")return"bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-200";if(["HEAD","OPTIONS"].includes(e))return"bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300";if(e==="GRAPHQL")return"bg-pink-100 text-pink-800 dark:bg-pink-900 dark:text-pink-200";const i=parseInt(e,10);if(!isNaN(i)&&i>=100&&i<600)return i>=500?"bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-400":i>=400?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400":i>=300?"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400":"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400";if(e==="SUCCESS"||e==="2XX"||e==="HIT")return"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400";if(e==="REDIRECT"||e==="3XX")return"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400";if(e==="WARNING"||e==="WARN"||e==="4XX"||e==="CLIENT-ERROR")return"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400";if(e==="ERROR"||e==="5XX"||e==="HTTP-ERROR"||e==="VALIDATION-ERROR"||e==="FAILED")return"bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-400";if(e==="SLOW"||e==="SLOW QUERY")return"bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-400";if(e==="N+1"||e==="N1")return"bg-amber-100 text-amber-700 dark:bg-amber-900/50 dark:text-amber-300";if(["SELECT","INSERT","UPDATE"].includes(e))return"bg-cyan-100 text-cyan-800 dark:bg-cyan-900/30 dark:text-cyan-400";if(e==="DEBUG")return"bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200";if(e==="LOG"||e==="INFO")return"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200";if(e==="VERBOSE")return"bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300";if(e==="QUERY"||e==="MUTATION"||e==="SUBSCRIPTION"){if(e==="QUERY")return"bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200";if(e==="MUTATION")return"bg-purple-100 text-purple-800 dark:bg-purple-900 dark:text-purple-200";if(e==="SUBSCRIPTION")return"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200"}return e==="REQUEST"?"bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200":e==="EXCEPTION"?"bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-200":e==="LOG"||e==="EVENT"?"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200":e==="JOB"?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-200":e==="CACHE"?"bg-cyan-100 text-cyan-800 dark:bg-cyan-900 dark:text-cyan-200":e==="MAIL"?"bg-pink-100 text-pink-800 dark:bg-pink-900 dark:text-pink-200":e==="SCHEDULE"?"bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300":e==="HTTP-CLIENT"?"bg-cyan-100 text-cyan-800 dark:bg-cyan-900 dark:text-cyan-200":e==="RESOLVED"||e==="COMPLETED"||e==="SENT"||e==="ACTIVE"?"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400":e==="WAITING"||e==="DELAYED"||e==="PENDING"?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400":e==="MISS"?"bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300":e==="GET"&&!F.includes(e)?"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400":e==="SET"?"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400":e==="DEL"||e==="DELETE"?"bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-400":e==="CLEAR"?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400":e==="STARTED"?"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400":e==="TYPEORM"?"bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-400":e==="PRISMA"?"bg-indigo-100 text-indigo-800 dark:bg-indigo-900/30 dark:text-indigo-400":e==="MONGOOSE"?"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400":e==="SEQUELIZE"?"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400":e==="KNEX"?"bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400":e==="MIKRO-ORM"?"bg-purple-100 text-purple-800 dark:bg-purple-900/30 dark:text-purple-400":e==="NORMAL"?"bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200":U[We(e)]}function je({children:t,listType:e,filterType:a="tag",filterValue:r,onClick:n,clickable:l=!0,className:i="",ariaLabel:s}){const b=j(),f=q(),g=c=>{if(c.preventDefault(),c.stopPropagation(),n){n(c);return}if(e&&l){const y=r||String(t),x=a&&a!=="tag"?Ie(e,a):Ue(y,a),N=f.pathname,w=N===`/${e}`||N.startsWith(`/${e}/`)?new URLSearchParams(f.search):new URLSearchParams,R=w.get(x);if(R){const A=R.split(",");A.includes(y)||w.set(x,[...A,y].join(","))}else w.set(x,y);b(`/${e}?${w.toString()}`)}},h=l&&(!!n||!!e),m=He(String(t)),u=h?"cursor-pointer hover:scale-105 transition-transform":"",o=String(t).toUpperCase(),d=s||(h?`Click to filter by ${o}`:void 0);return T.jsx("span",{onClick:h?g:void 0,role:h?"button":void 0,"aria-label":d,tabIndex:h?0:void 0,onKeyDown:h?c=>{(c.key==="Enter"||c.key===" ")&&(c.preventDefault(),g(c))}:void 0,title:o,className:`inline-flex items-center px-2 py-0.5 rounded text-xs font-bold uppercase tracking-wide max-w-[200px] overflow-hidden text-ellipsis whitespace-nowrap shadow ${m} ${u} ${h?"focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-1":""} ${i}`,children:o})}function _e({items:t,listType:e,filterType:a="tag",maxItems:r=99,clickable:n=!0}){if(!t||t.length===0)return null;const l=t.slice(0,r),i=t.length-r;return T.jsxs("div",{className:"flex flex-wrap items-center gap-1",children:[l.map(s=>T.jsx(je,{listType:e,filterType:a,clickable:n,children:s},s)),i>0&&T.jsxs("span",{className:"text-xs text-gray-500 dark:text-gray-400",children:["+",i]})]})}export{_e as B,je as C,X as a,I as b,C as c,Ye as d,Re as e,Be as f,He as g,Ve as m,O as n,Qe as p,k as t,ze as u};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as a,a as d}from"./index-
|
|
1
|
+
import{j as a,a as d}from"./index-yKzNgrAF.js";import{e as v,b as P}from"./vendor-B2nVRih0.js";import{u as T,C as l,f as D,p as F}from"./ClickableBadge-BFhMLE2u.js";import{u as A,P as M,N as R,L as B}from"./PageHeader-FW-7_zU_.js";import{q as H,T as i,D as L,b as W}from"./types-CvWsUZ4q.js";function z(){const m=v(),{addFilter:t,clearAll:c,serverFilters:u,headerFilters:h,hasFilters:p}=T("commands"),{entries:x,loading:g,refreshing:r,newEntriesCount:f,hasMore:y,loadMore:C,loadNew:j,autoRefreshEnabled:k,setAutoRefresh:N,meta:s,isHighlighted:w}=A({type:"command",limit:50,filters:u}),n=x.filter(e=>H(e)),b=P.useMemo(()=>[{key:"name",header:"Command",minWidth:"250px",render:e=>a.jsx(l,{onClick:o=>{o.stopPropagation(),t("names",e.payload.name)},className:"font-mono",children:e.payload.name})},{key:"handler",header:"Handler",minWidth:"200px",render:e=>e.payload.handler?a.jsx(i,{mono:!0,truncate:!0,maxWidth:"250px",children:e.payload.handler}):a.jsx(i,{secondary:!0,children:"-"})},{key:"status",header:"Status",width:"100px",render:e=>a.jsx(l,{onClick:o=>{o.stopPropagation(),t("statuses",e.payload.status)},children:e.payload.status.toUpperCase()})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>a.jsx(L,{ms:e.payload.duration||0})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>a.jsx(i,{secondary:!0,className:"text-xs",children:D(F(e.createdAt),{addSuffix:!0})})}],[t]);if(g&&n.length===0)return a.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:a.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const E=p?"pt-28":"pt-16";return a.jsxs("div",{children:[a.jsx(M,{title:"Commands",icon:d,iconColor:"text-green-600 dark:text-green-400",count:n.length,totalCount:s==null?void 0:s.total,refreshing:r,autoRefreshEnabled:k,onAutoRefreshToggle:N,filters:h,onClearAllFilters:c}),a.jsxs("div",{className:`${E} space-y-4 transition-all duration-200`,children:[a.jsx(R,{count:f,onClick:j,loading:r}),a.jsx(W,{columns:b,data:n,keyExtractor:e=>e.id,onRowClick:e=>m(`/commands/${e.id}`),rowClassName:e=>w(e.id)?"highlight-new":"",emptyMessage:"No commands recorded yet",emptyIcon:a.jsx(d,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),a.jsx(B,{hasMore:y,onClick:C,loading:r})]})]})}export{z as default};
|
package/dist/dashboard/public/assets/{DashboardPage-B2wT42Ey.js → DashboardPage-DBq9olrb.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{c as D,u as ge,j as e,D as ae,T as A,C as R,A as M,G as xe,F as me,B as ue,P as ye,a as be,H as B,b as he,L as pe,d as ke,M as fe,e as ve,R as je,f as Ne,S as we,g as V,h as W,i as Se,k as _,l as K,r as qe,m as Y}from"./index-
|
|
1
|
+
import{c as D,u as ge,j as e,D as ae,T as A,C as R,A as M,G as xe,F as me,B as ue,P as ye,a as be,H as B,b as he,L as pe,d as ke,M as fe,e as ve,R as je,f as Ne,S as we,g as V,h as W,i as Se,k as _,l as K,r as qe,m as Y}from"./index-yKzNgrAF.js";import{e as Ce,b as c,L as Ee}from"./vendor-B2nVRih0.js";import{g as Pe,f,p as v}from"./ClickableBadge-BFhMLE2u.js";import{Z as Te}from"./zap-DOqgN4r4.js";import{C as $e}from"./calendar-C6HprwOI.js";/**
|
|
2
2
|
* @license lucide-react v0.468.0 - ISC
|
|
3
3
|
*
|
|
4
4
|
* This source code is licensed under the ISC license.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as a,H as l}from"./index-
|
|
1
|
+
import{j as a,H as l}from"./index-yKzNgrAF.js";import{e as v,b as P}from"./vendor-B2nVRih0.js";import{u as B,C as d,f as M,p as R}from"./ClickableBadge-BFhMLE2u.js";import{u as S,P as T,N as $,L as A}from"./PageHeader-FW-7_zU_.js";import{t as z,T as o,D as H,b as L}from"./types-CvWsUZ4q.js";function O(){const p=v(),{addFilter:r,clearAll:u,serverFilters:c,headerFilters:h,hasFilters:m}=B("dumps"),{entries:x,loading:g,refreshing:s,newEntriesCount:f,hasMore:j,loadMore:y,loadNew:C,autoRefreshEnabled:k,setAutoRefresh:w,meta:i,isHighlighted:N}=S({type:"dump",limit:50,filters:c}),n=x.filter(e=>z(e)),D=e=>e?e<1024?`${e}B`:e<1024*1024?`${(e/1024).toFixed(1)}KB`:e<1024*1024*1024?`${(e/(1024*1024)).toFixed(1)}MB`:`${(e/(1024*1024*1024)).toFixed(1)}GB`:"-",E=P.useMemo(()=>[{key:"operation",header:"Operation",width:"120px",render:e=>a.jsx(d,{onClick:t=>{t.stopPropagation(),r("operations",e.payload.operation)},children:e.payload.operation.toUpperCase()})},{key:"format",header:"Format",width:"100px",render:e=>a.jsx(d,{onClick:t=>{t.stopPropagation(),r("formats",e.payload.format)},className:"font-mono",children:e.payload.format})},{key:"records",header:"Records",width:"100px",align:"right",render:e=>e.payload.recordCount!==void 0?a.jsx(o,{children:e.payload.recordCount.toLocaleString()}):a.jsx(o,{secondary:!0,children:"-"})},{key:"size",header:"Size",width:"100px",align:"right",render:e=>a.jsx(o,{children:D(e.payload.fileSize)})},{key:"status",header:"Status",width:"100px",render:e=>a.jsx(d,{onClick:t=>{t.stopPropagation(),r("statuses",e.payload.status)},children:e.payload.status.toUpperCase()})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>a.jsx(H,{ms:e.payload.duration||0})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>a.jsx(o,{secondary:!0,className:"text-xs",children:M(R(e.createdAt),{addSuffix:!0})})}],[r]);if(g&&n.length===0)return a.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:a.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const F=m?"pt-28":"pt-16";return a.jsxs("div",{children:[a.jsx(T,{title:"Dumps",icon:l,iconColor:"text-slate-600 dark:text-slate-400",count:n.length,totalCount:i==null?void 0:i.total,refreshing:s,autoRefreshEnabled:k,onAutoRefreshToggle:w,filters:h,onClearAllFilters:u}),a.jsxs("div",{className:`${F} space-y-4 transition-all duration-200`,children:[a.jsx($,{count:f,onClick:C,loading:s}),a.jsx(L,{columns:E,data:n,keyExtractor:e=>e.id,onRowClick:e=>p(`/dumps/${e.id}`),rowClassName:e=>N(e.id)?"highlight-new":"",emptyMessage:"No data dumps recorded yet",emptyIcon:a.jsx(l,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),a.jsx(A,{hasMore:j,onClick:y,loading:s})]})]})}export{O as default};
|
package/dist/dashboard/public/assets/{EntryDetailPage-BD5G5NgR.js → EntryDetailPage-DYSZpdsH.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{c as Ee,j as E,g as Ve,X as jE,z as De,s as zt,C as Ie,D as nE,i as Vs,B as DT,M as PT,t as dr,a as Yt,b as MT,F as eT,e as xT,S as mT,L as Vt,A as Dr,H as uT,T as Pr,v as Mr}from"./index-
|
|
1
|
+
import{c as Ee,j as E,g as Ve,X as jE,z as De,s as zt,C as Ie,D as nE,i as Vs,B as DT,M as PT,t as dr,a as Yt,b as MT,F as eT,e as xT,S as mT,L as Vt,A as Dr,H as uT,T as Pr,v as Mr}from"./index-yKzNgrAF.js";import{b as p,L as fe,g as xr,e as mr,h as ur}from"./vendor-B2nVRih0.js";import{a as QE,t as He,c as OE,n as Ur,b as UT,m as pr,d as vs,e as hr,C as m,f as q,p as H,B as ME}from"./ClickableBadge-BFhMLE2u.js";import{d as WE,e as wE,c as XE,f as vt,g as jt,h as Wt,j as wt,G as yr,N as gr,i as Xt,k as pT,l as kt,m as hT,n as yT,o as gT,p as GT,q as fT,r as HT,s as BT,t as bT,u as Kt}from"./types-CvWsUZ4q.js";import{Z as js}from"./zap-DOqgN4r4.js";import{C as ue}from"./circle-check-big-cy9U-hu6.js";import{f as We,c as Gr}from"./format-BFldcnCk.js";import{C as fr}from"./calendar-C6HprwOI.js";import{E as FT}from"./eye-D01Pihl7.js";/**
|
|
2
2
|
* @license lucide-react v0.468.0 - ISC
|
|
3
3
|
*
|
|
4
4
|
* This source code is licensed under the ISC license.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,R as i}from"./index-
|
|
1
|
+
import{j as t,R as i}from"./index-yKzNgrAF.js";import{e as w,b}from"./vendor-B2nVRih0.js";import{u as R,C as D,f as F,p as P}from"./ClickableBadge-BFhMLE2u.js";import{u as T,P as A,N as M,L}from"./PageHeader-FW-7_zU_.js";import{f as B,T as o,D as H,b as $}from"./types-CvWsUZ4q.js";function G(){const l=w(),{addFilter:n,clearAll:d,serverFilters:c,headerFilters:m,hasFilters:h}=R("events"),{entries:u,loading:g,refreshing:a,newEntriesCount:x,hasMore:p,loadMore:f,loadNew:y,autoRefreshEnabled:j,setAutoRefresh:v,meta:s,isHighlighted:C}=T({type:"event",limit:50,filters:c}),r=u.filter(e=>B(e)),E=b.useMemo(()=>[{key:"event",header:"Event",minWidth:"200px",render:e=>t.jsx(D,{onClick:k=>{k.stopPropagation(),n("names",e.payload.name)},className:"font-mono",children:e.payload.name})},{key:"listeners",header:"Listeners",width:"120px",align:"center",render:e=>t.jsxs(o,{secondary:!0,children:[e.payload.listeners.length," listener",e.payload.listeners.length!==1?"s":""]})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>t.jsx(H,{ms:e.payload.duration||0})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>t.jsx(o,{secondary:!0,className:"text-xs",children:F(P(e.createdAt),{addSuffix:!0})})}],[n]);if(g&&r.length===0)return t.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:t.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const N=h?"pt-28":"pt-16";return t.jsxs("div",{children:[t.jsx(A,{title:"Events",icon:i,iconColor:"text-emerald-600 dark:text-emerald-400",count:r.length,totalCount:s==null?void 0:s.total,refreshing:a,autoRefreshEnabled:j,onAutoRefreshToggle:v,filters:m,onClearAllFilters:d}),t.jsxs("div",{className:`${N} space-y-4 transition-all duration-200`,children:[t.jsx(M,{count:x,onClick:y,loading:a}),t.jsx($,{columns:E,data:r,keyExtractor:e=>e.id,onRowClick:e=>l(`/events/${e.id}`),rowClassName:e=>C(e.id)?"highlight-new":"",emptyMessage:"No events recorded yet",emptyIcon:t.jsx(i,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),t.jsx(L,{hasMore:p,onClick:f,loading:a})]})]})}export{G as default};
|
package/dist/dashboard/public/assets/{ExceptionsPage-DjSZ5OHK.js → ExceptionsPage-gYd6g1uV.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{c as B,u as I,j as t,i as W,T as m,n as $,o as H}from"./index-
|
|
1
|
+
import{c as B,u as I,j as t,i as W,T as m,n as $,o as H}from"./index-yKzNgrAF.js";import{e as U,b as c}from"./vendor-B2nVRih0.js";import{u as z,C as u,f as G,p as J}from"./ClickableBadge-BFhMLE2u.js";import{u as K,P as O,F as Q,N as V,L as X}from"./PageHeader-FW-7_zU_.js";import{d as Y,T as r,b as Z}from"./types-CvWsUZ4q.js";import{C as _}from"./circle-check-big-cy9U-hu6.js";/**
|
|
2
2
|
* @license lucide-react v0.468.0 - ISC
|
|
3
3
|
*
|
|
4
4
|
* This source code is licensed under the ISC license.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,S as d}from"./index-
|
|
1
|
+
import{j as t,S as d}from"./index-yKzNgrAF.js";import{e as P,b as A}from"./vendor-B2nVRih0.js";import{u as F,C as n,f as R,p as T}from"./ClickableBadge-BFhMLE2u.js";import{u as M,P as S,N as W,L as G}from"./PageHeader-FW-7_zU_.js";import{r as B,T as a,b as D}from"./types-CvWsUZ4q.js";function J(){const c=P(),{addFilter:s,clearAll:u,serverFilters:h,headerFilters:p,hasFilters:x}=F("gates"),{entries:m,loading:g,refreshing:i,newEntriesCount:y,hasMore:j,loadMore:f,loadNew:b,autoRefreshEnabled:k,setAutoRefresh:w,meta:o,isHighlighted:C}=M({type:"gate",limit:50,filters:h}),l=m.filter(e=>B(e)),N=A.useMemo(()=>[{key:"gate",header:"Gate",minWidth:"200px",render:e=>t.jsx(n,{onClick:r=>{r.stopPropagation(),s("names",e.payload.gate)},children:e.payload.gate})},{key:"action",header:"Action",width:"150px",render:e=>e.payload.action?t.jsx(a,{truncate:!0,maxWidth:"150px",children:e.payload.action}):t.jsx(a,{secondary:!0,children:"-"})},{key:"subject",header:"Subject",minWidth:"150px",render:e=>e.payload.subject?t.jsx(a,{mono:!0,truncate:!0,maxWidth:"200px",children:typeof e.payload.subject=="string"?e.payload.subject:JSON.stringify(e.payload.subject)}):t.jsx(a,{secondary:!0,children:"-"})},{key:"result",header:"Result",width:"100px",render:e=>{const r=e.payload.allowed?"allowed":"denied";return t.jsx(n,{onClick:v=>{v.stopPropagation(),s("results",r)},children:r.toUpperCase()})}},{key:"user",header:"User",width:"150px",render:e=>e.payload.userId?t.jsx(a,{truncate:!0,maxWidth:"150px",children:e.payload.userId}):t.jsx(a,{secondary:!0,children:"-"})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>t.jsx(a,{secondary:!0,className:"text-xs",children:R(T(e.createdAt),{addSuffix:!0})})}],[s]);if(g&&l.length===0)return t.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:t.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const E=x?"pt-28":"pt-16";return t.jsxs("div",{children:[t.jsx(S,{title:"Gates",icon:d,iconColor:"text-amber-600 dark:text-amber-400",count:l.length,totalCount:o==null?void 0:o.total,refreshing:i,autoRefreshEnabled:k,onAutoRefreshToggle:w,filters:p,onClearAllFilters:u}),t.jsxs("div",{className:`${E} space-y-4 transition-all duration-200`,children:[t.jsx(W,{count:y,onClick:b,loading:i}),t.jsx(D,{columns:N,data:l,keyExtractor:e=>e.id,onRowClick:e=>c(`/gates/${e.id}`),rowClassName:e=>C(e.id)?"highlight-new":"",emptyMessage:"No gate checks recorded yet",emptyIcon:t.jsx(d,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),t.jsx(G,{hasMore:j,onClick:f,loading:i})]})]})}export{J as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{c as H,j as a}from"./index-
|
|
1
|
+
import{c as H,j as a}from"./index-yKzNgrAF.js";import{e as D,f as G,b as M}from"./vendor-B2nVRih0.js";import{u as q,C as m,f as Q,p as U}from"./ClickableBadge-BFhMLE2u.js";import{u as W,P as I,N as O,L as $}from"./PageHeader-FW-7_zU_.js";import{u as z,T as h,G as V,N as J,D as K,b as X}from"./types-CvWsUZ4q.js";/**
|
|
2
2
|
* @license lucide-react v0.468.0 - ISC
|
|
3
3
|
*
|
|
4
4
|
* This source code is licensed under the ISC license.
|
package/dist/dashboard/public/assets/{HttpClientPage-bqF8EeJj.js → HttpClientPage-B504GqrK.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,d}from"./index-
|
|
1
|
+
import{j as t,d}from"./index-yKzNgrAF.js";import{e as T,b as R}from"./vendor-B2nVRih0.js";import{u as v,C as n,f as H,p as D}from"./ClickableBadge-BFhMLE2u.js";import{u as F,P as M,N as A,L as B}from"./PageHeader-FW-7_zU_.js";import{l as L,T as l,D as S,b as W}from"./types-CvWsUZ4q.js";function z(){const h=T(),{addFilter:s,clearAll:c,serverFilters:p,headerFilters:u,hasFilters:m}=v("http-client"),{entries:x,loading:g,refreshing:o,newEntriesCount:y,hasMore:f,loadMore:C,loadNew:j,autoRefreshEnabled:k,setAutoRefresh:w,meta:r,isHighlighted:N}=F({type:"http-client",limit:50,filters:p}),i=x.filter(e=>L(e)),E=R.useMemo(()=>[{key:"method",header:"Method",width:"90px",render:e=>t.jsx(n,{onClick:a=>{a.stopPropagation(),s("methods",e.payload.method)},className:"font-mono",children:e.payload.method})},{key:"status",header:"Status",width:"80px",render:e=>t.jsx(n,{onClick:a=>{a.stopPropagation();const P=e.payload.statusCode?String(e.payload.statusCode):"ERR";s("statuses",P)},children:e.payload.statusCode||"ERR"})},{key:"hostname",header:"Host",width:"180px",render:e=>e.payload.hostname?t.jsx(n,{onClick:a=>{a.stopPropagation(),s("hostnames",e.payload.hostname)},className:"font-mono",children:e.payload.hostname}):t.jsx(l,{secondary:!0,children:"-"})},{key:"path",header:"Path",minWidth:"200px",render:e=>t.jsx(l,{mono:!0,truncate:!0,maxWidth:"300px",children:e.payload.path||e.payload.url})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>t.jsx(S,{ms:e.payload.duration||0})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>t.jsx(l,{secondary:!0,className:"text-xs",children:H(D(e.createdAt),{addSuffix:!0})})}],[s]);if(g&&i.length===0)return t.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:t.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const b=m?"pt-28":"pt-16";return t.jsxs("div",{children:[t.jsx(M,{title:"HTTP Client",icon:d,iconColor:"text-cyan-600 dark:text-cyan-400",count:i.length,totalCount:r==null?void 0:r.total,refreshing:o,autoRefreshEnabled:k,onAutoRefreshToggle:w,filters:u,onClearAllFilters:c}),t.jsxs("div",{className:`${b} space-y-4 transition-all duration-200`,children:[t.jsx(A,{count:y,onClick:j,loading:o}),t.jsx(W,{columns:E,data:i,keyExtractor:e=>e.id,onRowClick:e=>h(`/http-client/${e.id}`),rowClassName:e=>N(e.id)?"highlight-new":"",emptyMessage:"No outgoing HTTP requests recorded yet",emptyIcon:t.jsx(d,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),t.jsx(B,{hasMore:f,onClick:C,loading:o})]})]})}export{z as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,B as l}from"./index-
|
|
1
|
+
import{j as t,B as l}from"./index-yKzNgrAF.js";import{e as N,b as T}from"./vendor-B2nVRih0.js";import{u as E,C as o,f as v,p as A}from"./ClickableBadge-BFhMLE2u.js";import{u as D,P as B,N as F,L as M}from"./PageHeader-FW-7_zU_.js";import{g as P,T as i,D as R,b as J}from"./types-CvWsUZ4q.js";function I(){const n=N(),{clearAll:d,serverFilters:u,headerFilters:c,hasFilters:h}=E("jobs"),{entries:p,loading:m,refreshing:a,newEntriesCount:x,hasMore:y,loadMore:g,loadNew:f,autoRefreshEnabled:j,setAutoRefresh:b,meta:s,isHighlighted:w}=D({type:"job",limit:50,filters:u}),r=p.filter(e=>P(e)),k=T.useMemo(()=>[{key:"job",header:"Job",minWidth:"200px",render:e=>t.jsx(o,{listType:"jobs",filterType:"names",className:"font-mono",children:e.payload.name})},{key:"queue",header:"Queue",width:"120px",render:e=>t.jsx(o,{listType:"jobs",filterType:"queues",children:e.payload.queue})},{key:"status",header:"Status",width:"100px",render:e=>t.jsx(o,{listType:"jobs",filterType:"statuses",children:e.payload.status})},{key:"attempts",header:"Attempts",width:"80px",align:"center",render:e=>t.jsx(i,{secondary:!0,children:e.payload.attempts})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>e.payload.duration?t.jsx(R,{ms:e.payload.duration}):t.jsx(i,{secondary:!0,children:"—"})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>t.jsx(i,{secondary:!0,className:"text-xs",children:v(A(e.createdAt),{addSuffix:!0})})}],[]);if(m&&r.length===0)return t.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:t.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const C=h?"pt-28":"pt-16";return t.jsxs("div",{children:[t.jsx(B,{title:"Jobs",icon:l,iconColor:"text-yellow-600 dark:text-yellow-400",count:r.length,totalCount:s==null?void 0:s.total,refreshing:a,autoRefreshEnabled:j,onAutoRefreshToggle:b,filters:c,onClearAllFilters:d}),t.jsxs("div",{className:`${C} space-y-4 transition-all duration-200`,children:[t.jsx(F,{count:x,onClick:f,loading:a}),t.jsx(J,{columns:k,data:r,keyExtractor:e=>e.id,onRowClick:e=>n(`/jobs/${e.id}`),rowClassName:e=>w(e.id)?"highlight-new":"",emptyMessage:"No jobs recorded yet",emptyIcon:t.jsx(l,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),t.jsx(M,{hasMore:y,onClick:g,loading:a})]})]})}export{I as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,F as l}from"./index-
|
|
1
|
+
import{j as t,F as l}from"./index-yKzNgrAF.js";import{e as k,b as v}from"./vendor-B2nVRih0.js";import{u as T,C as i,f as E,p as F}from"./ClickableBadge-BFhMLE2u.js";import{u as L,P as M,N as A,L as P}from"./PageHeader-FW-7_zU_.js";import{e as R,T as o,b as B}from"./types-CvWsUZ4q.js";function S(){const n=k(),{clearAll:d,serverFilters:c,headerFilters:g,hasFilters:x}=T("logs"),{entries:h,loading:m,refreshing:s,newEntriesCount:u,hasMore:p,loadMore:f,loadNew:y,autoRefreshEnabled:j,setAutoRefresh:C,meta:a,isHighlighted:N}=L({type:"log",limit:50,filters:c}),r=h.filter(e=>R(e)),w=v.useMemo(()=>[{key:"level",header:"Level",width:"100px",render:e=>t.jsx(i,{listType:"logs",filterType:"levels",children:e.payload.level})},{key:"message",header:"Message",minWidth:"300px",render:e=>t.jsx(o,{truncate:!0,maxWidth:"500px",children:e.payload.message.length>100?e.payload.message.substring(0,100)+"...":e.payload.message})},{key:"context",header:"Context",width:"150px",render:e=>e.payload.context?t.jsx(i,{listType:"logs",filterType:"contexts",className:"font-mono",children:e.payload.context}):t.jsx(o,{secondary:!0,children:"—"})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>t.jsx(o,{secondary:!0,className:"text-xs",children:E(F(e.createdAt),{addSuffix:!0})})}],[]);if(m&&r.length===0)return t.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:t.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const b=x?"pt-28":"pt-16";return t.jsxs("div",{children:[t.jsx(M,{title:"Logs",icon:l,iconColor:"text-green-600 dark:text-green-400",count:r.length,totalCount:a==null?void 0:a.total,refreshing:s,autoRefreshEnabled:j,onAutoRefreshToggle:C,filters:g,onClearAllFilters:d}),t.jsxs("div",{className:`${b} space-y-4 transition-all duration-200`,children:[t.jsx(A,{count:u,onClick:y,loading:s}),t.jsx(B,{columns:w,data:r,keyExtractor:e=>e.id,onRowClick:e=>n(`/logs/${e.id}`),rowClassName:e=>N(e.id)?"highlight-new":"",emptyMessage:"No logs recorded yet",emptyIcon:t.jsx(l,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),t.jsx(P,{hasMore:p,onClick:f,loading:s})]})]})}export{S as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,M as u}from"./index-
|
|
1
|
+
import{j as t,M as u}from"./index-yKzNgrAF.js";import{e as v,b as A}from"./vendor-B2nVRih0.js";import{u as D,C as F,f as P,p as R}from"./ClickableBadge-BFhMLE2u.js";import{u as L,P as S,N as W,L as $}from"./PageHeader-FW-7_zU_.js";import{j as B,T as l,D as H,a as q,b as I}from"./types-CvWsUZ4q.js";const z=["sent","failed","pending","queued","error"];function U(){const c=v(),{addFilter:o,clearAll:h,serverFilters:m,headerFilters:g,hasFilters:p}=D("mail"),{entries:x,loading:f,refreshing:s,newEntriesCount:y,hasMore:j,loadMore:b,loadNew:k,autoRefreshEnabled:C,setAutoRefresh:w,meta:r,isHighlighted:T}=L({type:"mail",limit:50,filters:m}),i=x.filter(e=>B(e)),d=e=>{const a=Array.isArray(e)?e:[e];return a.length===1?a[0]:`${a[0]} +${a.length-1}`},N=A.useMemo(()=>[{key:"status",header:"Status",width:"80px",render:e=>t.jsx(F,{listType:"mail",filterType:"statuses",children:e.payload.status})},{key:"subject",header:"Subject",minWidth:"250px",render:e=>t.jsx(l,{truncate:!0,maxWidth:"350px",children:e.payload.subject.length>60?e.payload.subject.substring(0,60)+"...":e.payload.subject})},{key:"to",header:"To",width:"200px",render:e=>t.jsx(l,{mono:!0,secondary:!0,truncate:!0,maxWidth:"180px",children:d(e.payload.to)})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>t.jsx(H,{ms:e.payload.duration||0})},{key:"tags",header:"Tags",minWidth:"150px",render:e=>{const a=(e.tags||[]).filter(n=>!z.includes(n.toLowerCase()));return t.jsx(q,{tags:a,max:3,onTagClick:(n,M)=>{M.stopPropagation(),o("tags",n)}})}},{key:"time",header:"Time",width:"170px",align:"right",render:e=>t.jsx(l,{secondary:!0,className:"text-xs",children:P(R(e.createdAt),{addSuffix:!0})})}],[o,d]);if(f&&i.length===0)return t.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:t.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const E=p?"pt-28":"pt-16";return t.jsxs("div",{children:[t.jsx(S,{title:"Mail",icon:u,iconColor:"text-pink-600 dark:text-pink-400",count:i.length,totalCount:r==null?void 0:r.total,refreshing:s,autoRefreshEnabled:C,onAutoRefreshToggle:w,filters:g,onClearAllFilters:h}),t.jsxs("div",{className:`${E} space-y-4 transition-all duration-200`,children:[t.jsx(W,{count:y,onClick:k,loading:s}),t.jsx(I,{columns:N,data:i,keyExtractor:e=>e.id,onRowClick:e=>c(`/mail/${e.id}`),rowClassName:e=>T(e.id)?"highlight-new":"",emptyMessage:"No emails recorded yet",emptyIcon:t.jsx(u,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),t.jsx($,{hasMore:j,onClick:b,loading:s})]})]})}export{U as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as a,b as d}from"./index-
|
|
1
|
+
import{j as a,b as d}from"./index-yKzNgrAF.js";import{e as v,b as M}from"./vendor-B2nVRih0.js";import{u as P,C as l,f as A,p as D}from"./ClickableBadge-BFhMLE2u.js";import{u as F,P as R,N as T,L as B}from"./PageHeader-FW-7_zU_.js";import{n as L,T as o,D as H,b as S}from"./types-CvWsUZ4q.js";function G(){const c=v(),{addFilter:r,clearAll:p,serverFilters:u,headerFilters:h,hasFilters:x}=P("models"),{entries:m,loading:g,refreshing:s,newEntriesCount:y,hasMore:f,loadMore:j,loadNew:C,autoRefreshEnabled:k,setAutoRefresh:w,meta:i,isHighlighted:N}=F({type:"model",limit:50,filters:u}),n=m.filter(e=>L(e)),b=M.useMemo(()=>[{key:"action",header:"Action",width:"120px",render:e=>a.jsx(l,{onClick:t=>{t.stopPropagation(),r("actions",e.payload.action)},children:e.payload.action.toUpperCase()})},{key:"entity",header:"Entity",width:"150px",render:e=>a.jsx(l,{onClick:t=>{t.stopPropagation(),r("entities",e.payload.entity)},className:"font-mono",children:e.payload.entity})},{key:"source",header:"Source",width:"150px",render:e=>e.payload.source?a.jsx(l,{onClick:t=>{t.stopPropagation(),r("sources",e.payload.source)},className:"font-mono text-xs",children:e.payload.source}):a.jsx(o,{secondary:!0,children:"-"})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>a.jsx(H,{ms:e.payload.duration||0})},{key:"records",header:"Records",width:"80px",align:"center",render:e=>e.payload.records!==void 0?a.jsx(o,{children:e.payload.records}):a.jsx(o,{secondary:!0,children:"-"})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>a.jsx(o,{secondary:!0,className:"text-xs",children:A(D(e.createdAt),{addSuffix:!0})})}],[r]);if(g&&n.length===0)return a.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:a.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const E=x?"pt-28":"pt-16";return a.jsxs("div",{children:[a.jsx(R,{title:"Models",icon:d,iconColor:"text-purple-600 dark:text-purple-400",count:n.length,totalCount:i==null?void 0:i.total,refreshing:s,autoRefreshEnabled:k,onAutoRefreshToggle:w,filters:h,onClearAllFilters:p}),a.jsxs("div",{className:`${E} space-y-4 transition-all duration-200`,children:[a.jsx(T,{count:y,onClick:C,loading:s}),a.jsx(S,{columns:b,data:n,keyExtractor:e=>e.id,onRowClick:e=>c(`/models/${e.id}`),rowClassName:e=>N(e.id)?"highlight-new":"",emptyMessage:"No model events recorded yet",emptyIcon:a.jsx(d,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),a.jsx(B,{hasMore:f,onClick:j,loading:s})]})]})}export{G as default};
|
package/dist/dashboard/public/assets/{NotificationsPage-99oeNat2.js → NotificationsPage-CHkJmY88.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,e as l}from"./index-
|
|
1
|
+
import{j as t,e as l}from"./index-yKzNgrAF.js";import{e as T,b as v}from"./vendor-B2nVRih0.js";import{u as P,C as d,f as D,p as F}from"./ClickableBadge-BFhMLE2u.js";import{u as R,P as A,N as M,L as B}from"./PageHeader-FW-7_zU_.js";import{o as W,T as a,D as L,b as H}from"./types-CvWsUZ4q.js";function z(){const c=T(),{addFilter:i,clearAll:p,serverFilters:u,headerFilters:h,hasFilters:x}=P("notifications"),{entries:m,loading:g,refreshing:r,newEntriesCount:y,hasMore:f,loadMore:j,loadNew:C,autoRefreshEnabled:k,setAutoRefresh:N,meta:s,isHighlighted:w}=R({type:"notification",limit:50,filters:u}),o=m.filter(e=>W(e)),b=v.useMemo(()=>[{key:"type",header:"Type",width:"150px",render:e=>t.jsx(d,{onClick:n=>{n.stopPropagation(),i("types",e.payload.type)},children:e.payload.type})},{key:"recipient",header:"Recipient",minWidth:"200px",render:e=>t.jsx(a,{mono:!0,truncate:!0,maxWidth:"250px",children:e.payload.recipient})},{key:"title",header:"Title",minWidth:"200px",render:e=>e.payload.title?t.jsx(a,{truncate:!0,maxWidth:"300px",children:e.payload.title}):t.jsx(a,{secondary:!0,children:"-"})},{key:"status",header:"Status",width:"100px",render:e=>t.jsx(d,{onClick:n=>{n.stopPropagation(),i("statuses",e.payload.status)},children:e.payload.status.toUpperCase()})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>t.jsx(L,{ms:e.payload.duration||0})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>t.jsx(a,{secondary:!0,className:"text-xs",children:D(F(e.createdAt),{addSuffix:!0})})}],[i]);if(g&&o.length===0)return t.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:t.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const E=x?"pt-28":"pt-16";return t.jsxs("div",{children:[t.jsx(A,{title:"Notifications",icon:l,iconColor:"text-indigo-600 dark:text-indigo-400",count:o.length,totalCount:s==null?void 0:s.total,refreshing:r,autoRefreshEnabled:k,onAutoRefreshToggle:N,filters:h,onClearAllFilters:p}),t.jsxs("div",{className:`${E} space-y-4 transition-all duration-200`,children:[t.jsx(M,{count:y,onClick:C,loading:r}),t.jsx(H,{columns:b,data:o,keyExtractor:e=>e.id,onRowClick:e=>c(`/notifications/${e.id}`),rowClassName:e=>w(e.id)?"highlight-new":"",emptyMessage:"No notifications recorded yet",emptyIcon:t.jsx(l,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),t.jsx(B,{hasMore:f,onClick:j,loading:r})]})]})}export{z as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{b as s}from"./vendor-B2nVRih0.js";import{m as F,z as q,p as J,q as _,j as r,i as A,e as Q,s as V,X as Z}from"./index-
|
|
1
|
+
import{b as s}from"./vendor-B2nVRih0.js";import{m as F,z as q,p as J,q as _,j as r,i as A,e as Q,s as V,X as Z}from"./index-yKzNgrAF.js";function $(t){return t==null?"":typeof t!="object"?String(t):Array.isArray(t)?"["+t.map($).join(",")+"]":"{"+Object.keys(t).sort().map(n=>`"${n}":${$(t[n])}`).join(",")+"}"}const z="nestlens-auto-refresh";function ee(){try{const t=localStorage.getItem(z);return t===null?!0:t==="true"}catch{return!0}}function re(t){try{localStorage.setItem(z,String(t))}catch{}}function se(t={}){const{type:a,limit:n=50,autoRefresh:c,autoRefreshInterval:f=5e3,filters:y}=t,m=$(y),[v,h]=s.useState([]),[j,N]=s.useState(!0),[S,g]=s.useState(!1),[I,b]=s.useState(null),[d,k]=s.useState(null),[R,o]=s.useState(0),[x,w]=s.useState(c??ee()),l=s.useRef(null),E=s.useRef(null),L=s.useRef(!0),B=s.useRef(m),C=s.useRef(new Map),[,G]=s.useState(0),H=1e4,O=s.useCallback(async()=>{L.current?N(!0):g(!0);try{b(null);const e=await F({type:a,limit:n,filters:y});h(e.data),k(e.meta),l.current=e.meta.newestSequence,o(0),L.current=!1,B.current=m}catch(e){const i=e instanceof Error?e:new Error("Failed to fetch entries");b(i),console.error("Failed to fetch entries:",e),q.error("Failed to load entries")}finally{N(!1),g(!1)}},[a,n,m]),K=s.useCallback(async()=>{if(!(!(d!=null&&d.oldestSequence)||!d.hasMore)){g(!0);try{const e=await F({type:a,limit:n,beforeSequence:d.oldestSequence,filters:y});h(i=>[...i,...e.data]),k(e.meta)}catch(e){console.error("Failed to load more entries:",e),q.error("Failed to load more entries")}finally{g(!1)}}},[a,n,d,m]),P=s.useCallback(async()=>{if(l.current){g(!0);try{const e=await F({type:a,limit:R||n,afterSequence:l.current,filters:y});if(e.data.length>0){const i=Date.now();e.data.forEach(u=>{C.current.set(u.id,i)}),h(u=>[...e.data,...u]),l.current=e.meta.newestSequence,o(0)}}catch(e){console.error("Failed to load new entries:",e),q.error("Failed to load new entries")}finally{g(!1)}}},[a,n,R,m]),U=s.useCallback(async()=>{g(!0);try{b(null);const e=await F({type:a,limit:n,filters:y});h(e.data),k(e.meta),l.current=e.meta.newestSequence,o(0)}catch(e){const i=e instanceof Error?e:new Error("Failed to refresh entries");b(i),console.error("Failed to refresh entries:",e),q.error("Failed to refresh entries")}finally{g(!1)}},[a,n,m]),D=s.useCallback(async()=>{if(!l.current){try{(await J(a)).data&&o(1)}catch{}return}try{const e=await _(l.current,a);o(e.data.count)}catch{}},[a]),W=s.useCallback(e=>{w(e),re(e)},[]),X=s.useCallback(e=>{h(i=>i.map(u=>u.id===e.id?e:u))},[]);s.useEffect(()=>{O()},[O]);const Y=s.useCallback(e=>{const i=C.current.get(e);return i?Date.now()-i<H:!1},[]),M=s.useCallback(()=>{const e=Date.now();let i=!1;C.current.forEach((u,p)=>{e-u>=H&&(C.current.delete(p),i=!0)}),i&&G(u=>u+1)},[]),T=s.useCallback(async()=>{if(l.current)try{const e=await _(l.current,a);if(e.data.count>0){const i=await F({type:a,limit:e.data.count,afterSequence:l.current,filters:y});if(i.data.length>0){const u=Date.now();i.data.forEach(p=>{C.current.set(p.id,u)}),h(p=>[...i.data,...p]),l.current=i.meta.newestSequence,k(p=>p?{...p,total:p.total+i.data.length,newestSequence:i.meta.newestSequence}:i.meta)}}}catch{}},[a,m]);return s.useEffect(()=>(x?E.current=setInterval(T,f):E.current=setInterval(D,f),()=>{E.current&&(clearInterval(E.current),E.current=null)}),[x,f,T,D]),s.useEffect(()=>{const e=setInterval(M,1e3);return()=>clearInterval(e)},[M]),{entries:v,loading:j,refreshing:S,error:I,meta:d,newEntriesCount:R,hasMore:(d==null?void 0:d.hasMore)??!1,loadMore:K,loadNew:P,refresh:U,setAutoRefresh:W,autoRefreshEnabled:x,updateEntry:X,isHighlighted:Y}}function ne({count:t,onClick:a,loading:n}){return t===0?null:r.jsxs("button",{onClick:a,disabled:n,className:"w-full py-3 px-4 bg-primary-50 dark:bg-primary-900/20 text-primary-600 dark:text-primary-400 font-medium rounded-lg hover:bg-primary-100 dark:hover:bg-primary-900/30 transition-colors flex items-center justify-center space-x-2 disabled:opacity-50",children:[n?r.jsx(A,{className:"h-4 w-4 animate-spin"}):r.jsx(Q,{className:"h-4 w-4"}),r.jsxs("span",{children:["Load ",t," new ",t===1?"entry":"entries"]})]})}function ie({hasMore:t,onClick:a,loading:n}){return t?r.jsxs("button",{onClick:a,disabled:n,className:"w-full py-3 px-4 bg-gray-100 dark:bg-gray-800 text-gray-700 dark:text-gray-300 font-medium rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors flex items-center justify-center space-x-2 disabled:opacity-50",children:[n?r.jsx(A,{className:"h-4 w-4 animate-spin"}):r.jsx(V,{className:"h-4 w-4"}),r.jsx("span",{children:"Load older entries"})]}):null}function ce({title:t,icon:a,iconColor:n="text-primary-600 dark:text-primary-400",count:c,totalCount:f,subtitle:y,loading:m,refreshing:v,onRefresh:h,autoRefreshEnabled:j,onAutoRefreshToggle:N,filters:S=[],onClearAllFilters:g,actions:I,filterControls:b}){const d=S.length>0,k=c??f,R=S.reduce((o,x)=>(o[x.category]||(o[x.category]=[]),o[x.category].push(x),o),{});return r.jsxs("div",{className:"fixed top-0 left-0 right-0 lg:left-64 z-30 bg-gray-50 dark:bg-gray-900 border-b border-gray-200 dark:border-gray-700",children:[r.jsxs("div",{className:"h-16 px-4 lg:px-6 flex items-center justify-between",children:[r.jsxs("div",{className:"flex items-center space-x-3",children:[r.jsx("div",{className:"hidden sm:flex p-2 rounded-lg bg-gray-100 dark:bg-gray-800",children:r.jsx(a,{className:`h-5 w-5 ${n}`})}),r.jsxs("div",{className:"flex items-center space-x-3",children:[r.jsx("h1",{className:"text-xl font-bold text-gray-900 dark:text-white",children:t}),k!==void 0&&r.jsxs("span",{role:"status","aria-live":"polite",className:"inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-300",children:[k.toLocaleString(),f!==void 0&&c!==void 0&&c!==f&&r.jsxs("span",{className:"text-gray-400 dark:text-gray-500 ml-1",children:["/ ",f.toLocaleString()]})]}),y&&r.jsx("span",{className:"hidden md:inline text-sm text-gray-500 dark:text-gray-400",children:y})]})]}),r.jsxs("div",{className:"flex items-center space-x-2",children:[I,N&&r.jsxs("button",{onClick:()=>N(!j),className:`hidden sm:flex items-center space-x-1.5 px-3 py-1.5 rounded-lg text-sm font-medium transition-colors whitespace-nowrap ${j?"bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400":"bg-gray-100 text-gray-600 dark:bg-gray-800 dark:text-gray-400 hover:bg-gray-200 dark:hover:bg-gray-700"}`,title:j?"Auto-refresh enabled":"Auto-refresh disabled",children:[r.jsx("span",{className:`w-2 h-2 rounded-full flex-shrink-0 ${j?"bg-green-500 animate-pulse":"bg-gray-400"}`}),r.jsx("span",{children:"Auto Refresh"})]}),h&&r.jsx("button",{onClick:h,disabled:m||v,"aria-busy":v,"aria-label":v?"Refreshing...":"Refresh",className:"p-2 rounded-lg text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-800 hover:text-gray-700 dark:hover:text-gray-200 transition-colors disabled:opacity-50 disabled:cursor-not-allowed",title:"Refresh",children:r.jsx(A,{className:`h-4 w-4 ${v?"animate-spin":""}`})})]})]}),b&&r.jsx("div",{className:"px-4 lg:px-6 py-2 border-t border-gray-100 dark:border-gray-800 bg-gray-50/50 dark:bg-gray-900/50",children:b}),d&&r.jsx("div",{className:"px-4 lg:px-6 py-2 border-t border-gray-100 dark:border-gray-800 bg-gray-50/50 dark:bg-gray-900/50",children:r.jsxs("div",{className:"flex items-center flex-wrap gap-2",children:[r.jsx("span",{className:"text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider mr-1",children:"Filters:"}),Object.entries(R).map(([o,x])=>r.jsxs("div",{className:"flex items-center space-x-1",children:[r.jsxs("span",{className:"text-xs text-gray-400 dark:text-gray-500",children:[o,":"]}),x.map((w,l)=>r.jsxs("button",{onClick:w.onRemove,"aria-label":`Remove ${o} filter: ${w.value}`,className:"inline-flex items-center space-x-1 px-2 py-0.5 rounded-md text-xs font-medium bg-primary-100 dark:bg-primary-900/30 text-primary-700 dark:text-primary-300 hover:bg-primary-200 dark:hover:bg-primary-900/50 transition-colors group uppercase",children:[r.jsx("span",{children:w.value}),r.jsx(Z,{className:"h-3 w-3 opacity-60 group-hover:opacity-100"})]},`${w.category}-${w.value}-${l}`))]},o)),g&&S.length>1&&r.jsx("button",{onClick:g,className:"ml-2 text-xs text-gray-500 dark:text-gray-400 hover:text-red-600 dark:hover:text-red-400 transition-colors",children:"Clear all"})]})})]})}function oe({tabs:t,activeTab:a,onChange:n}){return r.jsx("div",{className:"flex items-center space-x-1",children:t.map(c=>r.jsxs("button",{onClick:()=>n(c.id),className:`px-3 py-1.5 rounded-lg text-sm font-medium transition-colors ${a===c.id?"bg-primary-100 text-primary-700 dark:bg-primary-900/50 dark:text-primary-300":"text-gray-600 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-800"}`,children:[c.label,c.count!==void 0&&r.jsx("span",{className:`ml-1.5 text-xs ${a===c.id?"text-primary-600 dark:text-primary-400":"text-gray-400 dark:text-gray-500"}`,children:c.count})]},c.id))})}function le({label:t,enabled:a,onChange:n,icon:c}){return r.jsxs("button",{onClick:()=>n(!a),className:`flex items-center space-x-2 px-3 py-1.5 rounded-lg text-sm font-medium transition-colors ${a?"bg-primary-100 text-primary-700 dark:bg-primary-900/30 dark:text-primary-300":"bg-gray-100 text-gray-600 dark:bg-gray-800 dark:text-gray-400 hover:bg-gray-200 dark:hover:bg-gray-700"}`,children:[c&&r.jsx(c,{className:"h-4 w-4"}),r.jsx("span",{children:t})]})}export{oe as F,ie as L,ne as N,ce as P,le as T,se as u};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as s,D as n}from"./index-
|
|
1
|
+
import{j as s,D as n}from"./index-yKzNgrAF.js";import{e as P,b as d}from"./vendor-B2nVRih0.js";import{u as A,C as M,f as R,p as Q}from"./ClickableBadge-BFhMLE2u.js";import{u as B,P as O,T as W,N as H,L as Z}from"./PageHeader-FW-7_zU_.js";import{c as $,T as u,D as I,a as z,b as G}from"./types-CvWsUZ4q.js";import{Z as c}from"./zap-DOqgN4r4.js";function _(){const h=P(),[i,p]=d.useState(!1),{addFilter:l,clearAll:x,serverFilters:g,headerFilters:m,hasFilters:y}=A("queries"),f={...g,slow:i?!0:void 0},{entries:w,loading:j,refreshing:a,newEntriesCount:C,hasMore:k,loadMore:b,loadNew:T,autoRefreshEnabled:N,setAutoRefresh:v,meta:t,isHighlighted:E}=B({type:"query",limit:50,filters:f}),r=w.filter(e=>$(e)),q=d.useMemo(()=>[{key:"source",header:"Source",width:"120px",render:e=>s.jsx(M,{listType:"queries",filterType:"sources",children:e.payload.source||"unknown"})},{key:"query",header:"Query",minWidth:"300px",render:e=>s.jsxs("div",{className:"flex items-start space-x-2",children:[e.payload.slow&&s.jsx(c,{className:"h-4 w-4 text-yellow-500 flex-shrink-0 mt-0.5"}),s.jsx(u,{mono:!0,truncate:!0,maxWidth:"400px",children:e.payload.query.length>100?e.payload.query.substring(0,100)+"...":e.payload.query})]})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>s.jsx(I,{ms:e.payload.duration||0,slowThreshold:e.payload.slow?0:1e3})},{key:"tags",header:"Tags",minWidth:"150px",render:e=>{const D=(e.payload.source||"unknown").toLowerCase(),F=(e.tags||[]).filter(o=>o.toLowerCase()!==D);return s.jsx(z,{tags:F,max:3,onTagClick:(o,L)=>{L.stopPropagation(),l("tags",o)}})}},{key:"time",header:"Time",width:"170px",align:"right",render:e=>s.jsx(u,{secondary:!0,className:"text-xs",children:R(Q(e.createdAt),{addSuffix:!0})})}],[l]);if(j&&r.length===0)return s.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:s.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const S=y?"pt-28":"pt-16";return s.jsxs("div",{children:[s.jsx(O,{title:"Queries",icon:n,iconColor:"text-purple-600 dark:text-purple-400",count:r.length,totalCount:t==null?void 0:t.total,refreshing:a,autoRefreshEnabled:N,onAutoRefreshToggle:v,filters:m,onClearAllFilters:x,actions:s.jsx(W,{label:"Slow Only",enabled:i,onChange:p,icon:c})}),s.jsxs("div",{className:`${S} space-y-4 transition-all duration-200`,children:[s.jsx(H,{count:C,onClick:T,loading:a}),s.jsx(G,{columns:q,data:r,keyExtractor:e=>e.id,onRowClick:e=>h(`/queries/${e.id}`),rowClassName:e=>E(e.id)?"highlight-new":"",emptyMessage:"No queries recorded yet",emptyIcon:s.jsx(n,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),s.jsx(Z,{hasMore:k,onClick:b,loading:a})]})]})}export{_ as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as a,D as d}from"./index-
|
|
1
|
+
import{j as a,D as d}from"./index-yKzNgrAF.js";import{e as E,b as R}from"./vendor-B2nVRih0.js";import{u as D,C as l,f as v,p as F}from"./ClickableBadge-BFhMLE2u.js";import{u as T,P as A,N as M,L as B}from"./PageHeader-FW-7_zU_.js";import{m as L,T as n,D as H,b as S}from"./types-CvWsUZ4q.js";function q(){const c=E(),{addFilter:t,clearAll:m,serverFilters:u,headerFilters:h,hasFilters:p}=D("redis"),{entries:x,loading:g,refreshing:s,newEntriesCount:y,hasMore:f,loadMore:j,loadNew:k,autoRefreshEnabled:C,setAutoRefresh:w,meta:r,isHighlighted:N}=T({type:"redis",limit:50,filters:u}),o=x.filter(e=>L(e)),b=R.useMemo(()=>[{key:"command",header:"Command",width:"120px",render:e=>a.jsx(l,{onClick:i=>{i.stopPropagation(),t("commands",e.payload.command)},className:"font-mono",children:e.payload.command})},{key:"keyPattern",header:"Key Pattern",minWidth:"200px",render:e=>e.payload.keyPattern?a.jsx(n,{mono:!0,truncate:!0,maxWidth:"300px",children:e.payload.keyPattern}):a.jsx(n,{secondary:!0,children:"-"})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>a.jsx(H,{ms:e.payload.duration||0})},{key:"status",header:"Status",width:"100px",render:e=>a.jsx(l,{onClick:i=>{i.stopPropagation(),t("statuses",e.payload.status)},children:e.payload.status.toUpperCase()})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>a.jsx(n,{secondary:!0,className:"text-xs",children:v(F(e.createdAt),{addSuffix:!0})})}],[t]);if(g&&o.length===0)return a.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:a.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const P=p?"pt-28":"pt-16";return a.jsxs("div",{children:[a.jsx(A,{title:"Redis",icon:d,iconColor:"text-red-600 dark:text-red-400",count:o.length,totalCount:r==null?void 0:r.total,refreshing:s,autoRefreshEnabled:C,onAutoRefreshToggle:w,filters:h,onClearAllFilters:m}),a.jsxs("div",{className:`${P} space-y-4 transition-all duration-200`,children:[a.jsx(M,{count:y,onClick:k,loading:s}),a.jsx(S,{columns:b,data:o,keyExtractor:e=>e.id,onRowClick:e=>c(`/redis/${e.id}`),rowClassName:e=>N(e.id)?"highlight-new":"",emptyMessage:"No Redis commands recorded yet",emptyIcon:a.jsx(d,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),a.jsx(B,{hasMore:f,onClick:j,loading:s})]})]})}export{q as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,A as N,d as P}from"./index-
|
|
1
|
+
import{j as t,A as N,d as P}from"./index-yKzNgrAF.js";import{e as A,b as q}from"./vendor-B2nVRih0.js";import{u as R,C as l,f as D,p as v}from"./ClickableBadge-BFhMLE2u.js";import{u as L,P as M,N as F,L as H}from"./PageHeader-FW-7_zU_.js";import{i as G,T as d,D as S,a as B,b as O}from"./types-CvWsUZ4q.js";const U=["GET","POST","PUT","PATCH","DELETE","HEAD","OPTIONS","GRAPHQL"],W=a=>{var s;return(s=a.payload.path)!=null&&s.toLowerCase().includes("/graphql")?"GRAPHQL":a.payload.method.toUpperCase()};function K(){const a=A(),{addFilter:s,clearAll:u,serverFilters:h,headerFilters:c,hasFilters:p}=R("requests"),{entries:g,loading:x,refreshing:r,newEntriesCount:m,hasMore:y,loadMore:f,loadNew:C,autoRefreshEnabled:T,setAutoRefresh:j,meta:i,isHighlighted:E}=L({type:"request",limit:50,filters:h}),o=g.filter(e=>G(e)),k=q.useMemo(()=>[{key:"method",header:"Method",width:"100px",render:e=>t.jsx(l,{listType:"requests",filterType:"methods",children:W(e)})},{key:"path",header:"Path",minWidth:"200px",render:e=>t.jsx(d,{mono:!0,truncate:!0,maxWidth:"400px",children:e.payload.path})},{key:"status",header:"Status",width:"80px",align:"center",render:e=>t.jsx(l,{listType:"requests",filterType:"statuses",children:e.payload.statusCode||0})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>t.jsx(S,{ms:e.payload.duration||0})},{key:"tags",header:"Tags",minWidth:"150px",render:e=>t.jsx(B,{tags:(e.tags||[]).filter(n=>!U.includes(n.toUpperCase())),max:3,onTagClick:(n,b)=>{b.stopPropagation(),s("tags",n)}})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>t.jsx(d,{secondary:!0,className:"text-xs",children:D(v(e.createdAt),{addSuffix:!0})})}],[s]);if(x&&o.length===0)return t.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:t.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const w=p?"pt-28":"pt-16";return t.jsxs("div",{children:[t.jsx(M,{title:"Requests",icon:N,iconColor:"text-blue-600 dark:text-blue-400",count:o.length,totalCount:i==null?void 0:i.total,refreshing:r,autoRefreshEnabled:T,onAutoRefreshToggle:j,filters:c,onClearAllFilters:u}),t.jsxs("div",{className:`${w} space-y-4 transition-all duration-200`,children:[t.jsx(F,{count:m,onClick:C,loading:r}),t.jsx(O,{columns:k,data:o,keyExtractor:e=>e.id,onRowClick:e=>a(`/requests/${e.id}`),emptyMessage:"No requests recorded yet",emptyIcon:t.jsx(P,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"}),rowClassName:e=>E(e.id)?"highlight-new":""}),t.jsx(H,{hasMore:y,onClick:f,loading:r})]})]})}export{K as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as a,C as c}from"./index-
|
|
1
|
+
import{j as a,C as c}from"./index-yKzNgrAF.js";import{e as M,b as P}from"./vendor-B2nVRih0.js";import{f as u,c as A}from"./format-BFldcnCk.js";import{u as L,C as h,f as R,p as H}from"./ClickableBadge-BFhMLE2u.js";import{u as B,P as W,N as $,L as I}from"./PageHeader-FW-7_zU_.js";import{k as q,T as i,D as z,a as G,b as J}from"./types-CvWsUZ4q.js";const K=["started","completed","failed"];function m(t){try{return A.toString(t)}catch{return null}}function Z(){const t=M(),{addFilter:n,clearAll:p,serverFilters:x,headerFilters:g,hasFilters:f}=L("schedule"),{entries:y,loading:k,refreshing:s,newEntriesCount:j,hasMore:C,loadMore:N,loadNew:T,autoRefreshEnabled:v,setAutoRefresh:w,meta:r,isHighlighted:b}=B({type:"schedule",limit:50,filters:x}),l=y.filter(e=>q(e)),d=e=>e.payload.cron?e.payload.cron:e.payload.interval?`${e.payload.interval}ms`:"-",E=P.useMemo(()=>[{key:"task",header:"Task",minWidth:"200px",render:e=>a.jsx(h,{listType:"schedule",filterType:"names",className:"font-mono",children:e.payload.name})},{key:"schedule",header:"Schedule",minWidth:"150px",render:e=>a.jsxs("div",{children:[a.jsx(i,{mono:!0,children:d(e)}),e.payload.cron&&m(e.payload.cron)&&a.jsx("span",{className:"text-xs text-gray-500 dark:text-gray-400 block mt-0.5",children:m(e.payload.cron)}),e.payload.interval&&u(e.payload.interval)&&a.jsx("span",{className:"text-xs text-gray-500 dark:text-gray-400 block mt-0.5",children:u(e.payload.interval)})]})},{key:"status",header:"Status",width:"100px",render:e=>a.jsx(h,{listType:"schedule",filterType:"statuses",children:e.payload.status})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>e.payload.duration?a.jsx(z,{ms:e.payload.duration}):a.jsx(i,{secondary:!0,children:"—"})},{key:"tags",header:"Tags",minWidth:"150px",render:e=>{const D=(e.tags||[]).filter(o=>!K.includes(o.toLowerCase()));return a.jsx(G,{tags:D,max:3,onTagClick:(o,F)=>{F.stopPropagation(),n("tags",o)}})}},{key:"time",header:"Time",width:"170px",align:"right",render:e=>a.jsx(i,{secondary:!0,className:"text-xs",children:R(H(e.createdAt),{addSuffix:!0})})}],[n,d]);if(k&&l.length===0)return a.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:a.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const S=f?"pt-28":"pt-16";return a.jsxs("div",{children:[a.jsx(W,{title:"Schedule",icon:c,iconColor:"text-gray-600 dark:text-gray-400",count:l.length,totalCount:r==null?void 0:r.total,refreshing:s,autoRefreshEnabled:v,onAutoRefreshToggle:w,filters:g,onClearAllFilters:p}),a.jsxs("div",{className:`${S} space-y-4 transition-all duration-200`,children:[a.jsx($,{count:j,onClick:T,loading:s}),a.jsx(J,{columns:E,data:l,keyExtractor:e=>e.id,onRowClick:e=>t(`/schedule/${e.id}`),rowClassName:e=>b(e.id)?"highlight-new":"",emptyMessage:"No scheduled tasks recorded yet",emptyIcon:a.jsx(c,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),a.jsx(I,{hasMore:C,onClick:N,loading:s})]})]})}export{Z as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as a}from"./index-
|
|
1
|
+
import{j as a}from"./index-yKzNgrAF.js";import{e as b,b as F}from"./vendor-B2nVRih0.js";import{u as P,C as n,f as T,p as D}from"./ClickableBadge-BFhMLE2u.js";import{u as A,P as M,N as R,L as H}from"./PageHeader-FW-7_zU_.js";import{p as B,T as t,D as L,b as V}from"./types-CvWsUZ4q.js";import{E as d}from"./eye-D01Pihl7.js";function q(){const c=b(),{addFilter:r,clearAll:h,serverFilters:m,headerFilters:p,hasFilters:u}=P("views"),{entries:x,loading:g,refreshing:s,newEntriesCount:f,hasMore:y,loadMore:w,loadNew:j,autoRefreshEnabled:C,setAutoRefresh:k,meta:i,isHighlighted:N}=A({type:"view",limit:50,filters:m}),o=x.filter(e=>B(e)),v=F.useMemo(()=>[{key:"template",header:"Template",minWidth:"250px",render:e=>a.jsx(t,{mono:!0,truncate:!0,maxWidth:"350px",children:e.payload.template})},{key:"format",header:"Format",width:"100px",render:e=>e.payload.format?a.jsx(n,{onClick:l=>{l.stopPropagation(),r("formats",e.payload.format)},className:"font-mono",children:e.payload.format}):a.jsx(t,{secondary:!0,children:"-"})},{key:"duration",header:"Duration",width:"100px",align:"right",render:e=>a.jsx(L,{ms:e.payload.duration||0})},{key:"status",header:"Status",width:"100px",render:e=>a.jsx(n,{onClick:l=>{l.stopPropagation(),r("statuses",e.payload.status)},children:e.payload.status.toUpperCase()})},{key:"cache",header:"Cache",width:"80px",align:"center",render:e=>e.payload.cacheHit!==void 0?a.jsx(t,{children:e.payload.cacheHit?"Yes":"No"}):a.jsx(t,{secondary:!0,children:"-"})},{key:"time",header:"Time",width:"170px",align:"right",render:e=>a.jsx(t,{secondary:!0,className:"text-xs",children:T(D(e.createdAt),{addSuffix:!0})})}],[r]);if(g&&o.length===0)return a.jsx("div",{className:"flex items-center justify-center h-64",role:"status","aria-label":"Loading...",children:a.jsx("div",{className:"animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"})});const E=u?"pt-28":"pt-16";return a.jsxs("div",{children:[a.jsx(M,{title:"Views",icon:d,iconColor:"text-teal-600 dark:text-teal-400",count:o.length,totalCount:i==null?void 0:i.total,refreshing:s,autoRefreshEnabled:C,onAutoRefreshToggle:k,filters:p,onClearAllFilters:h}),a.jsxs("div",{className:`${E} space-y-4 transition-all duration-200`,children:[a.jsx(R,{count:f,onClick:j,loading:s}),a.jsx(V,{columns:v,data:o,keyExtractor:e=>e.id,onRowClick:e=>c(`/views/${e.id}`),rowClassName:e=>N(e.id)?"highlight-new":"",emptyMessage:"No view renders recorded yet",emptyIcon:a.jsx(d,{className:"h-8 w-8 text-gray-400 dark:text-gray-500"})}),a.jsx(H,{hasMore:y,onClick:w,loading:s})]})]})}export{q as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/DashboardPage-
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/DashboardPage-DBq9olrb.js","assets/vendor-B2nVRih0.js","assets/ClickableBadge-BFhMLE2u.js","assets/zap-DOqgN4r4.js","assets/calendar-C6HprwOI.js","assets/RequestsPage-Ddf6EpBe.js","assets/PageHeader-FW-7_zU_.js","assets/types-CvWsUZ4q.js","assets/QueriesPage-Cq_dTmNR.js","assets/ExceptionsPage-gYd6g1uV.js","assets/circle-check-big-cy9U-hu6.js","assets/LogsPage-4QbIACro.js","assets/EventsPage-B__c8fMG.js","assets/JobsPage-BCaWNqRu.js","assets/CachePage-CVI2MWOP.js","assets/MailPage-rwNbPrlt.js","assets/SchedulePage-Bnj6BP7j.js","assets/format-BFldcnCk.js","assets/HttpClientPage-B504GqrK.js","assets/RedisPage-WyIqRY51.js","assets/ModelsPage-Jc7WSrV2.js","assets/NotificationsPage-CHkJmY88.js","assets/ViewsPage-DgdMD9iC.js","assets/eye-D01Pihl7.js","assets/CommandsPage-CpXlDpH2.js","assets/GatesPage-CY-lCHBF.js","assets/BatchesPage-CBuvtLok.js","assets/DumpsPage-CvCmvONu.js","assets/GraphQLPage-45EotnyF.js","assets/EntryDetailPage-DYSZpdsH.js"])))=>i.map(i=>d[i]);
|
|
2
2
|
var we=Object.defineProperty;var Se=(s,a,e)=>a in s?we(s,a,{enumerable:!0,configurable:!0,writable:!0,value:e}):s[a]=e;var z=(s,a,e)=>Se(s,typeof a!="symbol"?a+"":a,e);import{r as Ne,a as _e,g as Ee,b as r,u as Pe,L as D,O as Ce,R as Re,c as x,N as Le,d as Oe,B as Ae}from"./vendor-B2nVRih0.js";(function(){const a=document.createElement("link").relList;if(a&&a.supports&&a.supports("modulepreload"))return;for(const l of document.querySelectorAll('link[rel="modulepreload"]'))i(l);new MutationObserver(l=>{for(const o of l)if(o.type==="childList")for(const n of o.addedNodes)n.tagName==="LINK"&&n.rel==="modulepreload"&&i(n)}).observe(document,{childList:!0,subtree:!0});function e(l){const o={};return l.integrity&&(o.integrity=l.integrity),l.referrerPolicy&&(o.referrerPolicy=l.referrerPolicy),l.crossOrigin==="use-credentials"?o.credentials="include":l.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function i(l){if(l.ep)return;l.ep=!0;const o=e(l);fetch(l.href,o)}})();var G={exports:{}},M={};/**
|
|
3
3
|
* @license React
|
|
4
4
|
* react-jsx-runtime.production.min.js
|
|
@@ -358,4 +358,4 @@ to {
|
|
|
358
358
|
*
|
|
359
359
|
* This source code is licensed under the ISC license.
|
|
360
360
|
* See the LICENSE file in the root directory of this source tree.
|
|
361
|
-
*/const Yt=g("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]),es=()=>`${window.location.origin}/__nestlens__/api`,ke=es();async function P(s,a){const e=await fetch(`${ke}${s}`,a);if(!e.ok)throw new Error(`API error: ${e.status}`);return e.json()}async function Ds(s){return P(`/entries/${s}`)}async function ts(){return P("/stats")}async function ss(){return(await fetch(`${ke}/entries`,{method:"DELETE"})).json()}async function Ms(s){const a=new URLSearchParams;if(s.type&&a.set("type",s.type),s.limit&&a.set("limit",s.limit.toString()),s.beforeSequence!==void 0&&a.set("beforeSequence",s.beforeSequence.toString()),s.afterSequence!==void 0&&a.set("afterSequence",s.afterSequence.toString()),s.filters){const e=s.filters;e.levels&&e.levels.length>0&&a.set("levels",e.levels.join(",")),e.contexts&&e.contexts.length>0&&a.set("contexts",e.contexts.join(",")),e.queryTypes&&e.queryTypes.length>0&&a.set("queryTypes",e.queryTypes.join(",")),e.sources&&e.sources.length>0&&a.set("sources",e.sources.join(",")),e.slow!==void 0&&a.set("slow",e.slow.toString()),e.names&&e.names.length>0&&a.set("names",e.names.join(",")),e.methods&&e.methods.length>0&&a.set("methods",e.methods.join(",")),e.paths&&e.paths.length>0&&a.set("paths",e.paths.join(",")),e.resolved!==void 0&&a.set("resolved",e.resolved.toString()),e.statuses&&e.statuses.length>0&&a.set("statuses",e.statuses.join(",")),e.hostnames&&e.hostnames.length>0&&a.set("hostnames",e.hostnames.join(",")),e.controllers&&e.controllers.length>0&&a.set("controllers",e.controllers.join(",")),e.ips&&e.ips.length>0&&a.set("ips",e.ips.join(",")),e.eventNames&&e.eventNames.length>0&&a.set("eventNames",e.eventNames.join(",")),e.scheduleStatuses&&e.scheduleStatuses.length>0&&a.set("scheduleStatuses",e.scheduleStatuses.join(",")),e.scheduleNames&&e.scheduleNames.length>0&&a.set("scheduleNames",e.scheduleNames.join(",")),e.jobStatuses&&e.jobStatuses.length>0&&a.set("jobStatuses",e.jobStatuses.join(",")),e.jobNames&&e.jobNames.length>0&&a.set("jobNames",e.jobNames.join(",")),e.queues&&e.queues.length>0&&a.set("queues",e.queues.join(",")),e.cacheOperations&&e.cacheOperations.length>0&&a.set("cacheOperations",e.cacheOperations.join(",")),e.mailStatuses&&e.mailStatuses.length>0&&a.set("mailStatuses",e.mailStatuses.join(",")),e.redisStatuses&&e.redisStatuses.length>0&&a.set("redisStatuses",e.redisStatuses.join(",")),e.redisCommands&&e.redisCommands.length>0&&a.set("redisCommands",e.redisCommands.join(",")),e.modelActions&&e.modelActions.length>0&&a.set("modelActions",e.modelActions.join(",")),e.entities&&e.entities.length>0&&a.set("entities",e.entities.join(",")),e.modelSources&&e.modelSources.length>0&&a.set("modelSources",e.modelSources.join(",")),e.notificationTypes&&e.notificationTypes.length>0&&a.set("notificationTypes",e.notificationTypes.join(",")),e.notificationStatuses&&e.notificationStatuses.length>0&&a.set("notificationStatuses",e.notificationStatuses.join(",")),e.viewFormats&&e.viewFormats.length>0&&a.set("viewFormats",e.viewFormats.join(",")),e.viewStatuses&&e.viewStatuses.length>0&&a.set("viewStatuses",e.viewStatuses.join(",")),e.commandStatuses&&e.commandStatuses.length>0&&a.set("commandStatuses",e.commandStatuses.join(",")),e.commandNames&&e.commandNames.length>0&&a.set("commandNames",e.commandNames.join(",")),e.gateNames&&e.gateNames.length>0&&a.set("gateNames",e.gateNames.join(",")),e.gateResults&&e.gateResults.length>0&&a.set("gateResults",e.gateResults.join(",")),e.batchStatuses&&e.batchStatuses.length>0&&a.set("batchStatuses",e.batchStatuses.join(",")),e.batchOperations&&e.batchOperations.length>0&&a.set("batchOperations",e.batchOperations.join(",")),e.dumpStatuses&&e.dumpStatuses.length>0&&a.set("dumpStatuses",e.dumpStatuses.join(",")),e.dumpOperations&&e.dumpOperations.length>0&&a.set("dumpOperations",e.dumpOperations.join(",")),e.dumpFormats&&e.dumpFormats.length>0&&a.set("dumpFormats",e.dumpFormats.join(",")),e.operationTypes&&e.operationTypes.length>0&&a.set("operationTypes",e.operationTypes.join(",")),e.operationNames&&e.operationNames.length>0&&a.set("operationNames",e.operationNames.join(",")),e.hasErrors!==void 0&&a.set("hasErrors",e.hasErrors.toString()),e.hasN1!==void 0&&a.set("hasN1",e.hasN1.toString()),e.tags&&e.tags.length>0&&a.set("tags",e.tags.join(",")),e.search&&a.set("search",e.search)}return P(`/entries/cursor?${a.toString()}`)}async function qs(s){const a=new URLSearchParams;return s&&a.set("type",s),P(`/entries/latest-sequence?${a.toString()}`)}async function $s(s,a){const e=new URLSearchParams;return e.set("afterSequence",s.toString()),a&&e.set("type",a),P(`/entries/check-new?${e.toString()}`)}async function zs(){return P("/storage/stats")}async function Is(){return P("/pruning/status")}async function Ks(){return P("/pruning/run",{method:"POST"})}async function Vs(s){return P(`/entries/${s}/resolve`,{method:"PATCH"})}async function Bs(s){return P(`/entries/${s}/unresolve`,{method:"PATCH"})}async function as(s){return P("/recording/pause",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({reason:s})})}async function rs(){return P("/recording/resume",{method:"POST"})}async function ns(){return P("/recording/status")}function os(s){const a=r.useCallback(e=>{const i=e.target,l=i.tagName==="INPUT"||i.tagName==="TEXTAREA"||i.isContentEditable;for(const o of s){const{key:n,ctrl:c,meta:d,shift:h,alt:u,handler:m,preventDefault:f=!0}=o;if(l&&n.toLowerCase()!=="escape")continue;const j=e.key.toLowerCase()===n.toLowerCase(),E=h?e.shiftKey:!e.shiftKey,p=u?e.altKey:!e.altKey;if(c){if((e.ctrlKey||e.metaKey)&&j&&E&&p){f&&e.preventDefault(),m(e);return}continue}if(d){if(e.metaKey&&!e.ctrlKey&&j&&E&&p){f&&e.preventDefault(),m(e);return}continue}if(!e.ctrlKey&&!e.metaKey&&j&&E&&p){f&&e.preventDefault(),m(e);return}}},[s]);r.useEffect(()=>(document.addEventListener("keydown",a),()=>{document.removeEventListener("keydown",a)}),[a])}const ve=r.createContext(void 0);function is({children:s}){const[a,e]=r.useState(null),[i,l]=r.useState(null),o=r.useRef(!0),n=r.useCallback(async()=>{try{const c=await ts();e(c.data),l(null)}catch(c){const d=c instanceof Error?c:new Error("Failed to fetch stats");l(d),console.error("Failed to fetch stats:",c),o.current&&q.error("Failed to load statistics")}finally{o.current=!1}},[]);return r.useEffect(()=>{n();const c=setInterval(n,1e4);return()=>clearInterval(c)},[n]),t.jsx(ve.Provider,{value:{stats:a,error:i,refreshStats:n},children:s})}function ls(){const s=r.useContext(ve);if(s===void 0)throw new Error("useStats must be used within a StatsProvider");return s}function ce(){const[s,a]=r.useState(null),[e,i]=r.useState(!1);r.useEffect(()=>{const o=async()=>{try{const c=await ns();a(c.data)}catch(c){console.error("Failed to fetch recording status:",c)}};o();const n=setInterval(o,5e3);return()=>clearInterval(n)},[]);const l=async()=>{if(!(!s||e)){i(!0);try{if(s.isPaused){const o=await rs();a(o.data),q.success("Recording resumed")}else{const o=await as();a(o.data),q.success("Recording paused")}}catch{q.error("Failed to toggle recording")}finally{i(!1)}}};return s?t.jsx("button",{onClick:l,disabled:e,className:`p-2.5 rounded-lg transition-colors ${s.isPaused?"text-yellow-600 hover:text-yellow-700 dark:text-yellow-400 dark:hover:text-yellow-300 hover:bg-yellow-50 dark:hover:bg-yellow-900/20":"text-green-600 hover:text-green-700 dark:text-green-400 dark:hover:text-green-300 hover:bg-green-50 dark:hover:bg-green-900/20"} ${e?"opacity-50 cursor-not-allowed":""}`,"aria-label":s.isPaused?"Resume recording":"Pause recording",title:s.isPaused?"Resume Recording":"Pause Recording",children:s.isPaused?t.jsx(Jt,{className:"h-5 w-5"}):t.jsx(Ut,{className:"h-5 w-5"})}):null}const de={dashboard:"text-primary-500",request:"text-blue-500",query:"text-purple-500",graphql:"text-fuchsia-500",exception:"text-red-500",log:"text-green-500",job:"text-yellow-500",schedule:"text-gray-500",batch:"text-lime-500",command:"text-slate-500",cache:"text-cyan-500",redis:"text-rose-500",model:"text-violet-500","http-client":"text-indigo-500",mail:"text-pink-500",notification:"text-orange-500",event:"text-emerald-500",view:"text-teal-500",gate:"text-amber-500",dump:"text-stone-500"},ue=[{name:"Overview",items:[{name:"Dashboard",href:"/",icon:Vt,colorKey:"dashboard"}]},{name:"Core",items:[{name:"Requests",href:"/requests",icon:Ot,colorKey:"request"},{name:"Queries",href:"/queries",icon:qt,colorKey:"query"},{name:"GraphQL",href:"/graphql",icon:zt,colorKey:"graphql"},{name:"Exceptions",href:"/exceptions",icon:be,badge:"exceptions",colorKey:"exception"},{name:"Logs",href:"/logs",icon:$t,colorKey:"log"}]},{name:"Background",items:[{name:"Jobs",href:"/jobs",icon:Dt,colorKey:"job"},{name:"Schedule",href:"/schedule",icon:Mt,colorKey:"schedule"},{name:"Batches",href:"/batches",icon:Ht,colorKey:"batch"},{name:"Commands",href:"/commands",icon:Xt,colorKey:"command"}]},{name:"Data",items:[{name:"Cache",href:"/cache",icon:ne,colorKey:"cache"},{name:"Redis",href:"/redis",icon:Tt,colorKey:"redis"},{name:"Models",href:"/models",icon:Kt,colorKey:"model"}]},{name:"Communication",items:[{name:"HTTP Client",href:"/http-client",icon:It,colorKey:"http-client"},{name:"Mail",href:"/mail",icon:Bt,colorKey:"mail"},{name:"Notifications",href:"/notifications",icon:At,colorKey:"notification"},{name:"Events",href:"/events",icon:Qt,colorKey:"event"}]},{name:"System",items:[{name:"Views",href:"/views",icon:Gt,colorKey:"view"},{name:"Gates",href:"/gates",icon:Zt,colorKey:"gate"},{name:"Dumps",href:"/dumps",icon:ne,colorKey:"dump"}]}];function cs(){const s=Pe(),[a,e]=r.useState(!1),{stats:i}=ls(),[l,o]=r.useState(()=>{if(typeof window<"u"){const p=localStorage.getItem("nestlens-collapsed-groups");return p?new Set(JSON.parse(p)):new Set}return new Set}),[n,c]=r.useState(()=>typeof window<"u"?document.documentElement.classList.contains("dark"):!1),[d,h]=r.useState(()=>{if(typeof window<"u"){const p=localStorage.getItem("nestlens-theme");if(p==="system"||p==="light"||p==="dark")return p}return"system"}),u=r.useCallback(p=>{o(N=>{const S=new Set(N);return S.has(p)?S.delete(p):S.add(p),localStorage.setItem("nestlens-collapsed-groups",JSON.stringify([...S])),S})},[]),m=r.useCallback(p=>{if(!i)return 0;switch(p){case"exceptions":return i.unresolvedExceptions??i.byType.exception??0;default:return 0}},[i]),f=r.useCallback(p=>{let N=!1;p==="system"?N=window.matchMedia("(prefers-color-scheme: dark)").matches:N=p==="dark",N?document.documentElement.classList.add("dark"):document.documentElement.classList.remove("dark"),c(N)},[]),j=r.useCallback(()=>{const p=n?"light":"dark";h(p),localStorage.setItem("nestlens-theme",p),f(p)},[n,f]),E=r.useCallback(async()=>{window.confirm("Are you sure you want to clear all entries?")&&(await ss(),q.success("All entries cleared"),window.location.reload())},[]);return r.useEffect(()=>{if(f(d),d==="system"){const p=window.matchMedia("(prefers-color-scheme: dark)"),N=S=>{const b=S.matches;b?document.documentElement.classList.add("dark"):document.documentElement.classList.remove("dark"),c(b)};return p.addEventListener("change",N),()=>p.removeEventListener("change",N)}},[d,f]),os([{key:"k",ctrl:!0,handler:()=>E()},{key:"Escape",handler:()=>{a&&e(!1)},preventDefault:!1},{key:"d",ctrl:!0,handler:()=>j()}]),t.jsxs("div",{className:"min-h-screen bg-gray-50 dark:bg-gray-900",children:[t.jsxs("div",{className:`fixed inset-0 z-50 lg:hidden ${a?"":"hidden"}`,children:[t.jsx("div",{className:"fixed inset-0 bg-gray-900/80",onClick:()=>e(!1)}),t.jsxs("div",{id:"mobile-sidebar",className:"fixed inset-y-0 left-0 w-64 bg-white dark:bg-gray-800 flex flex-col",children:[t.jsxs("div",{className:"flex h-16 items-center justify-between px-4 border-b border-gray-200 dark:border-gray-700",children:[t.jsxs(D,{to:"/",className:"flex items-center space-x-2",children:[t.jsx(U,{className:"h-8 w-8 text-primary-600"}),t.jsx("span",{className:"text-xl font-bold text-gray-900 dark:text-white",children:"NestLens"})]}),t.jsx("button",{onClick:()=>e(!1),className:"text-gray-500 hover:text-gray-700 dark:text-gray-400","aria-label":"Close sidebar",children:t.jsx(Yt,{className:"h-6 w-6","aria-hidden":"true"})})]}),t.jsx("nav",{className:"flex-1 min-h-0 overflow-y-auto py-4 px-3",children:ue.map((p,N)=>{const S=l.has(p.name);return t.jsxs("div",{className:N>0?"mt-4":"",children:[t.jsxs("button",{onClick:()=>u(p.name),className:"flex items-center justify-between w-full px-2 py-1.5 text-xs font-semibold text-gray-400 dark:text-gray-500 uppercase tracking-wider hover:text-gray-600 dark:hover:text-gray-400 transition-colors","aria-expanded":!S,"aria-controls":`nav-group-${p.name.toLowerCase().replace(/\s+/g,"-")}`,children:[t.jsx("span",{children:p.name}),S?t.jsx(ae,{className:"h-3 w-3","aria-hidden":"true"}):t.jsx(se,{className:"h-3 w-3","aria-hidden":"true"})]}),!S&&t.jsx("div",{className:"mt-1 space-y-0.5",children:p.items.map(b=>{const _=b.href==="/"?s.pathname==="/":s.pathname.startsWith(b.href),C="badge"in b?m(b.badge):0;return t.jsxs(D,{to:b.href,"aria-current":_?"page":void 0,className:`group flex items-center justify-between px-3 py-2 rounded-lg transition-colors ${_?"bg-primary-50 text-primary-700 dark:bg-primary-900/50 dark:text-primary-200 font-medium":"text-gray-600 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-800 hover:text-gray-900 dark:hover:text-white"}`,onClick:()=>e(!1),children:[t.jsxs("div",{className:"flex items-center space-x-3",children:[t.jsx(b.icon,{className:`h-4 w-4 ${de[b.colorKey]||"text-gray-400"}`}),t.jsx("span",{className:"text-sm",children:b.name})]}),C>0&&t.jsx("span",{className:"inline-flex items-center justify-center min-w-[20px] h-5 px-1.5 text-xs font-medium bg-red-100 text-red-700 dark:bg-red-900/50 dark:text-red-400 rounded-full",children:C>99?"99+":C})]},b.name)})})]},p.name)})}),t.jsx("div",{className:"flex-shrink-0 p-3 border-t border-gray-200 dark:border-gray-700",children:t.jsxs("div",{className:"flex items-center justify-center gap-1",children:[t.jsx(ce,{}),t.jsx("button",{onClick:j,className:"p-2.5 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors","aria-label":n?"Switch to light mode":"Switch to dark mode",children:n?t.jsx(ie,{className:"h-5 w-5"}):t.jsx(oe,{className:"h-5 w-5"})}),t.jsx("button",{onClick:E,className:"p-2.5 text-gray-500 hover:text-red-600 dark:text-gray-400 dark:hover:text-red-400 hover:bg-red-50 dark:hover:bg-red-900/20 rounded-lg transition-colors","aria-label":"Clear all data",children:t.jsx(le,{className:"h-5 w-5"})}),t.jsx("a",{href:"https://github.com/mogretici/nestlens",target:"_blank",rel:"noopener noreferrer",className:"p-2.5 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors","aria-label":"Documentation",children:t.jsx(re,{className:"h-5 w-5"})})]})})]})]}),t.jsx("div",{className:"hidden lg:fixed lg:inset-y-0 lg:flex lg:w-64 lg:flex-col",children:t.jsxs("div",{className:"flex flex-col h-full bg-white dark:bg-gray-800 border-r border-gray-200 dark:border-gray-700",children:[t.jsx("div",{className:"flex h-16 items-center px-4 border-b border-gray-200 dark:border-gray-700",children:t.jsxs(D,{to:"/",className:"flex items-center space-x-2.5",children:[t.jsx("div",{className:"p-1.5 bg-primary-100 dark:bg-primary-900/50 rounded-lg",children:t.jsx(U,{className:"h-6 w-6 text-primary-600 dark:text-primary-400"})}),t.jsxs("div",{children:[t.jsx("span",{className:"text-lg font-bold text-gray-900 dark:text-white",children:"NestLens"}),t.jsxs("span",{className:"hidden xl:inline text-xs text-gray-400 dark:text-gray-500 ml-1.5",children:["v","0.3.3"]})]})]})}),t.jsx("nav",{className:"flex-1 min-h-0 overflow-y-auto py-4 px-3",children:ue.map((p,N)=>{const S=l.has(p.name);return t.jsxs("div",{className:N>0?"mt-6":"",children:[t.jsxs("button",{onClick:()=>u(p.name),className:"flex items-center justify-between w-full px-2 py-1.5 text-[11px] font-semibold text-gray-400 dark:text-gray-500 uppercase tracking-wider hover:text-gray-600 dark:hover:text-gray-400 transition-colors","aria-expanded":!S,"aria-controls":`desktop-nav-group-${p.name.toLowerCase().replace(/\s+/g,"-")}`,children:[t.jsx("span",{children:p.name}),S?t.jsx(ae,{className:"h-3 w-3","aria-hidden":"true"}):t.jsx(se,{className:"h-3 w-3","aria-hidden":"true"})]}),!S&&t.jsx("div",{className:"mt-1 space-y-0.5",children:p.items.map(b=>{const _=b.href==="/"?s.pathname==="/":s.pathname.startsWith(b.href),C="badge"in b?m(b.badge):0;return t.jsxs(D,{to:b.href,"aria-current":_?"page":void 0,className:`group flex items-center justify-between px-3 py-2 rounded-lg transition-all duration-150 ${_?"bg-primary-50 text-primary-700 dark:bg-primary-900/50 dark:text-primary-200 font-medium shadow-sm":"text-gray-600 hover:bg-gray-50 dark:text-gray-400 dark:hover:bg-gray-800/50 hover:text-gray-900 dark:hover:text-white"}`,children:[t.jsxs("div",{className:"flex items-center space-x-3",children:[t.jsx(b.icon,{className:`h-[18px] w-[18px] ${de[b.colorKey]||"text-gray-400"}`}),t.jsx("span",{className:"text-sm",children:b.name})]}),C>0&&t.jsx("span",{className:`inline-flex items-center justify-center min-w-[20px] h-5 px-1.5 text-xs font-semibold rounded-full transition-colors ${_?"bg-primary-200 text-primary-800 dark:bg-primary-800 dark:text-primary-200":"bg-red-100 text-red-700 dark:bg-red-900/50 dark:text-red-400"}`,children:C>99?"99+":C})]},b.name)})})]},p.name)})}),t.jsx("div",{className:"flex-shrink-0 p-3 border-t border-gray-200 dark:border-gray-700",children:t.jsxs("div",{className:"flex items-center justify-center gap-1",children:[t.jsx(ce,{}),t.jsx("button",{onClick:j,className:"p-2.5 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors","aria-label":n?"Switch to light mode":"Switch to dark mode",title:n?"Light Mode (⌘D)":"Dark Mode (⌘D)",children:n?t.jsx(ie,{className:"h-5 w-5"}):t.jsx(oe,{className:"h-5 w-5"})}),t.jsx("button",{onClick:E,className:"p-2.5 text-gray-500 hover:text-red-600 dark:text-gray-400 dark:hover:text-red-400 hover:bg-red-50 dark:hover:bg-red-900/20 rounded-lg transition-colors","aria-label":"Clear all data",title:"Clear All Data (⌘K)",children:t.jsx(le,{className:"h-5 w-5"})}),t.jsx("a",{href:"https://github.com/mogretici/nestlens",target:"_blank",rel:"noopener noreferrer",className:"p-2.5 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors","aria-label":"Documentation",title:"Documentation",children:t.jsx(re,{className:"h-5 w-5"})})]})})]})}),t.jsxs("div",{className:"lg:pl-64",children:[t.jsxs("header",{className:"sticky top-0 z-40 flex h-14 items-center gap-4 border-b border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 px-4 lg:hidden",children:[t.jsx("button",{onClick:()=>e(!0),className:"text-gray-500 hover:text-gray-700 dark:text-gray-400","aria-expanded":a,"aria-controls":"mobile-sidebar","aria-label":"Open navigation menu",children:t.jsx(Ft,{className:"h-6 w-6","aria-hidden":"true"})}),t.jsxs(D,{to:"/",className:"flex items-center space-x-2",children:[t.jsx(U,{className:"h-6 w-6 text-primary-600"}),t.jsx("span",{className:"text-lg font-bold text-gray-900 dark:text-white",children:"NestLens"})]})]}),t.jsx("main",{className:"p-4 lg:p-6",children:t.jsx(Ce,{})})]})]})}function y(){return t.jsx("div",{className:"flex items-center justify-center min-h-[400px]",children:t.jsxs("div",{className:"flex flex-col items-center gap-3",children:[t.jsx("div",{className:"animate-spin rounded-full h-10 w-10 border-b-2 border-primary-600 dark:border-primary-400"}),t.jsx("p",{className:"text-sm text-gray-500 dark:text-gray-400",children:"Loading..."})]})})}const ds=r.lazy(()=>k(()=>import("./DashboardPage-B2wT42Ey.js"),__vite__mapDeps([0,1,2,3,4]))),us=r.lazy(()=>k(()=>import("./RequestsPage-CfJCEzEA.js"),__vite__mapDeps([5,1,2,6,7]))),hs=r.lazy(()=>k(()=>import("./QueriesPage-DzgzP7wD.js"),__vite__mapDeps([8,1,2,6,7,3]))),ms=r.lazy(()=>k(()=>import("./ExceptionsPage-DjSZ5OHK.js"),__vite__mapDeps([9,1,2,6,7,10]))),ps=r.lazy(()=>k(()=>import("./LogsPage-ByFHQ7j0.js"),__vite__mapDeps([11,1,2,6,7]))),xs=r.lazy(()=>k(()=>import("./EventsPage-DQTrH4q2.js"),__vite__mapDeps([12,1,2,6,7]))),fs=r.lazy(()=>k(()=>import("./JobsPage-CfhQKDhd.js"),__vite__mapDeps([13,1,2,6,7]))),ys=r.lazy(()=>k(()=>import("./CachePage-Cb1VWfXU.js"),__vite__mapDeps([14,1,2,6,7]))),gs=r.lazy(()=>k(()=>import("./MailPage-DrDldKkZ.js"),__vite__mapDeps([15,1,2,6,7]))),js=r.lazy(()=>k(()=>import("./SchedulePage-Bwrl5Jv7.js"),__vite__mapDeps([16,1,17,2,6,7]))),bs=r.lazy(()=>k(()=>import("./HttpClientPage-bqF8EeJj.js"),__vite__mapDeps([18,1,2,6,7]))),ks=r.lazy(()=>k(()=>import("./RedisPage-Bw0L1nlO.js"),__vite__mapDeps([19,1,2,6,7]))),vs=r.lazy(()=>k(()=>import("./ModelsPage-CToibyEE.js"),__vite__mapDeps([20,1,2,6,7]))),ws=r.lazy(()=>k(()=>import("./NotificationsPage-99oeNat2.js"),__vite__mapDeps([21,1,2,6,7]))),Ss=r.lazy(()=>k(()=>import("./ViewsPage-CT_fCLKM.js"),__vite__mapDeps([22,1,2,6,7,23]))),Ns=r.lazy(()=>k(()=>import("./CommandsPage-BPFdSjSC.js"),__vite__mapDeps([24,1,2,6,7]))),_s=r.lazy(()=>k(()=>import("./GatesPage-SgCZtjpH.js"),__vite__mapDeps([25,1,2,6,7]))),Es=r.lazy(()=>k(()=>import("./BatchesPage-BQ72RujB.js"),__vite__mapDeps([26,1,2,6,7]))),Ps=r.lazy(()=>k(()=>import("./DumpsPage-Be3darqp.js"),__vite__mapDeps([27,1,2,6,7]))),Cs=r.lazy(()=>k(()=>import("./GraphQLPage-BA-vwEU9.js"),__vite__mapDeps([28,1,2,6,7]))),v=r.lazy(()=>k(()=>import("./EntryDetailPage-BD5G5NgR.js"),__vite__mapDeps([29,1,2,7,3,10,17,4,23])));function Rs(){return t.jsx(Re,{children:t.jsxs(x,{path:"/",element:t.jsx(cs,{}),children:[t.jsx(x,{index:!0,element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ds,{})})}),t.jsx(x,{path:"requests",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(us,{})})}),t.jsx(x,{path:"queries",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(hs,{})})}),t.jsx(x,{path:"exceptions",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ms,{})})}),t.jsx(x,{path:"logs",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ps,{})})}),t.jsx(x,{path:"events",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(xs,{})})}),t.jsx(x,{path:"jobs",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(fs,{})})}),t.jsx(x,{path:"cache",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ys,{})})}),t.jsx(x,{path:"mail",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(gs,{})})}),t.jsx(x,{path:"schedule",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(js,{})})}),t.jsx(x,{path:"http-client",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(bs,{})})}),t.jsx(x,{path:"redis",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ks,{})})}),t.jsx(x,{path:"models",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(vs,{})})}),t.jsx(x,{path:"notifications",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ws,{})})}),t.jsx(x,{path:"views",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Ss,{})})}),t.jsx(x,{path:"commands",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Ns,{})})}),t.jsx(x,{path:"gates",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(_s,{})})}),t.jsx(x,{path:"batches",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Es,{})})}),t.jsx(x,{path:"dumps",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Ps,{})})}),t.jsx(x,{path:"graphql",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Cs,{})})}),t.jsx(x,{path:"requests/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"queries/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"exceptions/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"logs/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"events/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"jobs/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"cache/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"mail/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"schedule/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"http-client/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"redis/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"models/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"notifications/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"views/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"commands/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"gates/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"batches/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"dumps/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"graphql/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"entries/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"*",element:t.jsx(Le,{to:"/",replace:!0})})]})})}class Ls extends r.Component{constructor(){super(...arguments);z(this,"state",{hasError:!1});z(this,"handleReload",()=>{window.location.reload()});z(this,"handleReset",()=>{this.setState({hasError:!1,error:void 0,errorInfo:void 0})})}static getDerivedStateFromError(e){return{hasError:!0,error:e}}componentDidCatch(e,i){console.error("ErrorBoundary caught an error:",e,i),this.setState({errorInfo:i})}render(){return this.state.hasError?this.props.fallback?this.props.fallback:t.jsx("div",{className:"min-h-screen flex items-center justify-center bg-gray-50 dark:bg-gray-900 p-4",children:t.jsxs("div",{className:"max-w-md w-full bg-white dark:bg-gray-800 rounded-lg shadow-lg p-6 text-center",children:[t.jsx("div",{className:"mx-auto w-12 h-12 flex items-center justify-center rounded-full bg-red-100 dark:bg-red-900/30 mb-4",children:t.jsx(be,{className:"h-6 w-6 text-red-600 dark:text-red-400"})}),t.jsx("h1",{className:"text-xl font-semibold text-gray-900 dark:text-white mb-2",children:"Something went wrong"}),t.jsx("p",{className:"text-gray-600 dark:text-gray-400 mb-4",children:"An unexpected error occurred. Please try refreshing the page."}),this.state.error&&t.jsx("div",{className:"mb-4 p-3 bg-red-50 dark:bg-red-900/20 rounded-lg text-left",children:t.jsx("p",{className:"text-sm font-mono text-red-600 dark:text-red-400 break-all",children:this.state.error.message})}),t.jsxs("div",{className:"flex gap-3 justify-center",children:[t.jsx("button",{onClick:this.handleReset,className:"px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 rounded-lg transition-colors",children:"Try Again"}),t.jsxs("button",{onClick:this.handleReload,className:"flex items-center gap-2 px-4 py-2 text-sm font-medium text-white bg-primary-600 hover:bg-primary-700 rounded-lg transition-colors",children:[t.jsx(Wt,{className:"h-4 w-4"}),"Refresh Page"]})]}),!1]})}):this.props.children}}const Os=()=>{const s=window.location.pathname,a=s.indexOf("/nestlens");return a!==-1?s.substring(0,a+9):"/nestlens"};$e.createRoot(document.getElementById("root")).render(t.jsx(Oe.StrictMode,{children:t.jsx(Ls,{children:t.jsx(Ae,{basename:Os(),children:t.jsxs(is,{children:[t.jsx(Rs,{}),t.jsx(_t,{position:"bottom-right",toastOptions:{duration:3e3,style:{background:"#1f2937",color:"#f3f4f6",borderRadius:"0.5rem"},success:{iconTheme:{primary:"#10b981",secondary:"#f3f4f6"}},error:{iconTheme:{primary:"#ef4444",secondary:"#f3f4f6"}}}})]})})})}));export{Ot as A,Dt as B,Mt as C,qt as D,$t as F,zt as G,ne as H,Kt as L,Bt as M,Ht as P,Qt as R,Zt as S,be as T,Yt as X,Xt as a,Tt as b,g as c,It as d,At as e,Gt as f,ae as g,le as h,Wt as i,t as j,zs as k,Is as l,Ms as m,Bs as n,Vs as o,qs as p,$s as q,Ks as r,se as s,Jt as t,ls as u,Ds as v,q as z};
|
|
361
|
+
*/const Yt=g("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]),es=()=>`${window.location.origin}/__nestlens__/api`,ke=es();async function P(s,a){const e=await fetch(`${ke}${s}`,a);if(!e.ok)throw new Error(`API error: ${e.status}`);return e.json()}async function Ds(s){return P(`/entries/${s}`)}async function ts(){return P("/stats")}async function ss(){return(await fetch(`${ke}/entries`,{method:"DELETE"})).json()}async function Ms(s){const a=new URLSearchParams;if(s.type&&a.set("type",s.type),s.limit&&a.set("limit",s.limit.toString()),s.beforeSequence!==void 0&&a.set("beforeSequence",s.beforeSequence.toString()),s.afterSequence!==void 0&&a.set("afterSequence",s.afterSequence.toString()),s.filters){const e=s.filters;e.levels&&e.levels.length>0&&a.set("levels",e.levels.join(",")),e.contexts&&e.contexts.length>0&&a.set("contexts",e.contexts.join(",")),e.queryTypes&&e.queryTypes.length>0&&a.set("queryTypes",e.queryTypes.join(",")),e.sources&&e.sources.length>0&&a.set("sources",e.sources.join(",")),e.slow!==void 0&&a.set("slow",e.slow.toString()),e.names&&e.names.length>0&&a.set("names",e.names.join(",")),e.methods&&e.methods.length>0&&a.set("methods",e.methods.join(",")),e.paths&&e.paths.length>0&&a.set("paths",e.paths.join(",")),e.resolved!==void 0&&a.set("resolved",e.resolved.toString()),e.statuses&&e.statuses.length>0&&a.set("statuses",e.statuses.join(",")),e.hostnames&&e.hostnames.length>0&&a.set("hostnames",e.hostnames.join(",")),e.controllers&&e.controllers.length>0&&a.set("controllers",e.controllers.join(",")),e.ips&&e.ips.length>0&&a.set("ips",e.ips.join(",")),e.eventNames&&e.eventNames.length>0&&a.set("eventNames",e.eventNames.join(",")),e.scheduleStatuses&&e.scheduleStatuses.length>0&&a.set("scheduleStatuses",e.scheduleStatuses.join(",")),e.scheduleNames&&e.scheduleNames.length>0&&a.set("scheduleNames",e.scheduleNames.join(",")),e.jobStatuses&&e.jobStatuses.length>0&&a.set("jobStatuses",e.jobStatuses.join(",")),e.jobNames&&e.jobNames.length>0&&a.set("jobNames",e.jobNames.join(",")),e.queues&&e.queues.length>0&&a.set("queues",e.queues.join(",")),e.cacheOperations&&e.cacheOperations.length>0&&a.set("cacheOperations",e.cacheOperations.join(",")),e.mailStatuses&&e.mailStatuses.length>0&&a.set("mailStatuses",e.mailStatuses.join(",")),e.redisStatuses&&e.redisStatuses.length>0&&a.set("redisStatuses",e.redisStatuses.join(",")),e.redisCommands&&e.redisCommands.length>0&&a.set("redisCommands",e.redisCommands.join(",")),e.modelActions&&e.modelActions.length>0&&a.set("modelActions",e.modelActions.join(",")),e.entities&&e.entities.length>0&&a.set("entities",e.entities.join(",")),e.modelSources&&e.modelSources.length>0&&a.set("modelSources",e.modelSources.join(",")),e.notificationTypes&&e.notificationTypes.length>0&&a.set("notificationTypes",e.notificationTypes.join(",")),e.notificationStatuses&&e.notificationStatuses.length>0&&a.set("notificationStatuses",e.notificationStatuses.join(",")),e.viewFormats&&e.viewFormats.length>0&&a.set("viewFormats",e.viewFormats.join(",")),e.viewStatuses&&e.viewStatuses.length>0&&a.set("viewStatuses",e.viewStatuses.join(",")),e.commandStatuses&&e.commandStatuses.length>0&&a.set("commandStatuses",e.commandStatuses.join(",")),e.commandNames&&e.commandNames.length>0&&a.set("commandNames",e.commandNames.join(",")),e.gateNames&&e.gateNames.length>0&&a.set("gateNames",e.gateNames.join(",")),e.gateResults&&e.gateResults.length>0&&a.set("gateResults",e.gateResults.join(",")),e.batchStatuses&&e.batchStatuses.length>0&&a.set("batchStatuses",e.batchStatuses.join(",")),e.batchOperations&&e.batchOperations.length>0&&a.set("batchOperations",e.batchOperations.join(",")),e.dumpStatuses&&e.dumpStatuses.length>0&&a.set("dumpStatuses",e.dumpStatuses.join(",")),e.dumpOperations&&e.dumpOperations.length>0&&a.set("dumpOperations",e.dumpOperations.join(",")),e.dumpFormats&&e.dumpFormats.length>0&&a.set("dumpFormats",e.dumpFormats.join(",")),e.operationTypes&&e.operationTypes.length>0&&a.set("operationTypes",e.operationTypes.join(",")),e.operationNames&&e.operationNames.length>0&&a.set("operationNames",e.operationNames.join(",")),e.hasErrors!==void 0&&a.set("hasErrors",e.hasErrors.toString()),e.hasN1!==void 0&&a.set("hasN1",e.hasN1.toString()),e.tags&&e.tags.length>0&&a.set("tags",e.tags.join(",")),e.search&&a.set("search",e.search)}return P(`/entries/cursor?${a.toString()}`)}async function qs(s){const a=new URLSearchParams;return s&&a.set("type",s),P(`/entries/latest-sequence?${a.toString()}`)}async function $s(s,a){const e=new URLSearchParams;return e.set("afterSequence",s.toString()),a&&e.set("type",a),P(`/entries/check-new?${e.toString()}`)}async function zs(){return P("/storage/stats")}async function Is(){return P("/pruning/status")}async function Ks(){return P("/pruning/run",{method:"POST"})}async function Vs(s){return P(`/entries/${s}/resolve`,{method:"PATCH"})}async function Bs(s){return P(`/entries/${s}/unresolve`,{method:"PATCH"})}async function as(s){return P("/recording/pause",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({reason:s})})}async function rs(){return P("/recording/resume",{method:"POST"})}async function ns(){return P("/recording/status")}function os(s){const a=r.useCallback(e=>{const i=e.target,l=i.tagName==="INPUT"||i.tagName==="TEXTAREA"||i.isContentEditable;for(const o of s){const{key:n,ctrl:c,meta:d,shift:h,alt:u,handler:m,preventDefault:f=!0}=o;if(l&&n.toLowerCase()!=="escape")continue;const j=e.key.toLowerCase()===n.toLowerCase(),E=h?e.shiftKey:!e.shiftKey,p=u?e.altKey:!e.altKey;if(c){if((e.ctrlKey||e.metaKey)&&j&&E&&p){f&&e.preventDefault(),m(e);return}continue}if(d){if(e.metaKey&&!e.ctrlKey&&j&&E&&p){f&&e.preventDefault(),m(e);return}continue}if(!e.ctrlKey&&!e.metaKey&&j&&E&&p){f&&e.preventDefault(),m(e);return}}},[s]);r.useEffect(()=>(document.addEventListener("keydown",a),()=>{document.removeEventListener("keydown",a)}),[a])}const ve=r.createContext(void 0);function is({children:s}){const[a,e]=r.useState(null),[i,l]=r.useState(null),o=r.useRef(!0),n=r.useCallback(async()=>{try{const c=await ts();e(c.data),l(null)}catch(c){const d=c instanceof Error?c:new Error("Failed to fetch stats");l(d),console.error("Failed to fetch stats:",c),o.current&&q.error("Failed to load statistics")}finally{o.current=!1}},[]);return r.useEffect(()=>{n();const c=setInterval(n,1e4);return()=>clearInterval(c)},[n]),t.jsx(ve.Provider,{value:{stats:a,error:i,refreshStats:n},children:s})}function ls(){const s=r.useContext(ve);if(s===void 0)throw new Error("useStats must be used within a StatsProvider");return s}function ce(){const[s,a]=r.useState(null),[e,i]=r.useState(!1);r.useEffect(()=>{const o=async()=>{try{const c=await ns();a(c.data)}catch(c){console.error("Failed to fetch recording status:",c)}};o();const n=setInterval(o,5e3);return()=>clearInterval(n)},[]);const l=async()=>{if(!(!s||e)){i(!0);try{if(s.isPaused){const o=await rs();a(o.data),q.success("Recording resumed")}else{const o=await as();a(o.data),q.success("Recording paused")}}catch{q.error("Failed to toggle recording")}finally{i(!1)}}};return s?t.jsx("button",{onClick:l,disabled:e,className:`p-2.5 rounded-lg transition-colors ${s.isPaused?"text-yellow-600 hover:text-yellow-700 dark:text-yellow-400 dark:hover:text-yellow-300 hover:bg-yellow-50 dark:hover:bg-yellow-900/20":"text-green-600 hover:text-green-700 dark:text-green-400 dark:hover:text-green-300 hover:bg-green-50 dark:hover:bg-green-900/20"} ${e?"opacity-50 cursor-not-allowed":""}`,"aria-label":s.isPaused?"Resume recording":"Pause recording",title:s.isPaused?"Resume Recording":"Pause Recording",children:s.isPaused?t.jsx(Jt,{className:"h-5 w-5"}):t.jsx(Ut,{className:"h-5 w-5"})}):null}const de={dashboard:"text-primary-500",request:"text-blue-500",query:"text-purple-500",graphql:"text-fuchsia-500",exception:"text-red-500",log:"text-green-500",job:"text-yellow-500",schedule:"text-gray-500",batch:"text-lime-500",command:"text-slate-500",cache:"text-cyan-500",redis:"text-rose-500",model:"text-violet-500","http-client":"text-indigo-500",mail:"text-pink-500",notification:"text-orange-500",event:"text-emerald-500",view:"text-teal-500",gate:"text-amber-500",dump:"text-stone-500"},ue=[{name:"Overview",items:[{name:"Dashboard",href:"/",icon:Vt,colorKey:"dashboard"}]},{name:"Core",items:[{name:"Requests",href:"/requests",icon:Ot,colorKey:"request"},{name:"Queries",href:"/queries",icon:qt,colorKey:"query"},{name:"GraphQL",href:"/graphql",icon:zt,colorKey:"graphql"},{name:"Exceptions",href:"/exceptions",icon:be,badge:"exceptions",colorKey:"exception"},{name:"Logs",href:"/logs",icon:$t,colorKey:"log"}]},{name:"Background",items:[{name:"Jobs",href:"/jobs",icon:Dt,colorKey:"job"},{name:"Schedule",href:"/schedule",icon:Mt,colorKey:"schedule"},{name:"Batches",href:"/batches",icon:Ht,colorKey:"batch"},{name:"Commands",href:"/commands",icon:Xt,colorKey:"command"}]},{name:"Data",items:[{name:"Cache",href:"/cache",icon:ne,colorKey:"cache"},{name:"Redis",href:"/redis",icon:Tt,colorKey:"redis"},{name:"Models",href:"/models",icon:Kt,colorKey:"model"}]},{name:"Communication",items:[{name:"HTTP Client",href:"/http-client",icon:It,colorKey:"http-client"},{name:"Mail",href:"/mail",icon:Bt,colorKey:"mail"},{name:"Notifications",href:"/notifications",icon:At,colorKey:"notification"},{name:"Events",href:"/events",icon:Qt,colorKey:"event"}]},{name:"System",items:[{name:"Views",href:"/views",icon:Gt,colorKey:"view"},{name:"Gates",href:"/gates",icon:Zt,colorKey:"gate"},{name:"Dumps",href:"/dumps",icon:ne,colorKey:"dump"}]}];function cs(){const s=Pe(),[a,e]=r.useState(!1),{stats:i}=ls(),[l,o]=r.useState(()=>{if(typeof window<"u"){const p=localStorage.getItem("nestlens-collapsed-groups");return p?new Set(JSON.parse(p)):new Set}return new Set}),[n,c]=r.useState(()=>typeof window<"u"?document.documentElement.classList.contains("dark"):!1),[d,h]=r.useState(()=>{if(typeof window<"u"){const p=localStorage.getItem("nestlens-theme");if(p==="system"||p==="light"||p==="dark")return p}return"system"}),u=r.useCallback(p=>{o(N=>{const S=new Set(N);return S.has(p)?S.delete(p):S.add(p),localStorage.setItem("nestlens-collapsed-groups",JSON.stringify([...S])),S})},[]),m=r.useCallback(p=>{if(!i)return 0;switch(p){case"exceptions":return i.unresolvedExceptions??i.byType.exception??0;default:return 0}},[i]),f=r.useCallback(p=>{let N=!1;p==="system"?N=window.matchMedia("(prefers-color-scheme: dark)").matches:N=p==="dark",N?document.documentElement.classList.add("dark"):document.documentElement.classList.remove("dark"),c(N)},[]),j=r.useCallback(()=>{const p=n?"light":"dark";h(p),localStorage.setItem("nestlens-theme",p),f(p)},[n,f]),E=r.useCallback(async()=>{window.confirm("Are you sure you want to clear all entries?")&&(await ss(),q.success("All entries cleared"),window.location.reload())},[]);return r.useEffect(()=>{if(f(d),d==="system"){const p=window.matchMedia("(prefers-color-scheme: dark)"),N=S=>{const b=S.matches;b?document.documentElement.classList.add("dark"):document.documentElement.classList.remove("dark"),c(b)};return p.addEventListener("change",N),()=>p.removeEventListener("change",N)}},[d,f]),os([{key:"k",ctrl:!0,handler:()=>E()},{key:"Escape",handler:()=>{a&&e(!1)},preventDefault:!1},{key:"d",ctrl:!0,handler:()=>j()}]),t.jsxs("div",{className:"min-h-screen bg-gray-50 dark:bg-gray-900",children:[t.jsxs("div",{className:`fixed inset-0 z-50 lg:hidden ${a?"":"hidden"}`,children:[t.jsx("div",{className:"fixed inset-0 bg-gray-900/80",onClick:()=>e(!1)}),t.jsxs("div",{id:"mobile-sidebar",className:"fixed inset-y-0 left-0 w-64 bg-white dark:bg-gray-800 flex flex-col",children:[t.jsxs("div",{className:"flex h-16 items-center justify-between px-4 border-b border-gray-200 dark:border-gray-700",children:[t.jsxs(D,{to:"/",className:"flex items-center space-x-2",children:[t.jsx(U,{className:"h-8 w-8 text-primary-600"}),t.jsx("span",{className:"text-xl font-bold text-gray-900 dark:text-white",children:"NestLens"})]}),t.jsx("button",{onClick:()=>e(!1),className:"text-gray-500 hover:text-gray-700 dark:text-gray-400","aria-label":"Close sidebar",children:t.jsx(Yt,{className:"h-6 w-6","aria-hidden":"true"})})]}),t.jsx("nav",{className:"flex-1 min-h-0 overflow-y-auto py-4 px-3",children:ue.map((p,N)=>{const S=l.has(p.name);return t.jsxs("div",{className:N>0?"mt-4":"",children:[t.jsxs("button",{onClick:()=>u(p.name),className:"flex items-center justify-between w-full px-2 py-1.5 text-xs font-semibold text-gray-400 dark:text-gray-500 uppercase tracking-wider hover:text-gray-600 dark:hover:text-gray-400 transition-colors","aria-expanded":!S,"aria-controls":`nav-group-${p.name.toLowerCase().replace(/\s+/g,"-")}`,children:[t.jsx("span",{children:p.name}),S?t.jsx(ae,{className:"h-3 w-3","aria-hidden":"true"}):t.jsx(se,{className:"h-3 w-3","aria-hidden":"true"})]}),!S&&t.jsx("div",{className:"mt-1 space-y-0.5",children:p.items.map(b=>{const _=b.href==="/"?s.pathname==="/":s.pathname.startsWith(b.href),C="badge"in b?m(b.badge):0;return t.jsxs(D,{to:b.href,"aria-current":_?"page":void 0,className:`group flex items-center justify-between px-3 py-2 rounded-lg transition-colors ${_?"bg-primary-50 text-primary-700 dark:bg-primary-900/50 dark:text-primary-200 font-medium":"text-gray-600 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-800 hover:text-gray-900 dark:hover:text-white"}`,onClick:()=>e(!1),children:[t.jsxs("div",{className:"flex items-center space-x-3",children:[t.jsx(b.icon,{className:`h-4 w-4 ${de[b.colorKey]||"text-gray-400"}`}),t.jsx("span",{className:"text-sm",children:b.name})]}),C>0&&t.jsx("span",{className:"inline-flex items-center justify-center min-w-[20px] h-5 px-1.5 text-xs font-medium bg-red-100 text-red-700 dark:bg-red-900/50 dark:text-red-400 rounded-full",children:C>99?"99+":C})]},b.name)})})]},p.name)})}),t.jsx("div",{className:"flex-shrink-0 p-3 border-t border-gray-200 dark:border-gray-700",children:t.jsxs("div",{className:"flex items-center justify-center gap-1",children:[t.jsx(ce,{}),t.jsx("button",{onClick:j,className:"p-2.5 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors","aria-label":n?"Switch to light mode":"Switch to dark mode",children:n?t.jsx(ie,{className:"h-5 w-5"}):t.jsx(oe,{className:"h-5 w-5"})}),t.jsx("button",{onClick:E,className:"p-2.5 text-gray-500 hover:text-red-600 dark:text-gray-400 dark:hover:text-red-400 hover:bg-red-50 dark:hover:bg-red-900/20 rounded-lg transition-colors","aria-label":"Clear all data",children:t.jsx(le,{className:"h-5 w-5"})}),t.jsx("a",{href:"https://github.com/mogretici/nestlens",target:"_blank",rel:"noopener noreferrer",className:"p-2.5 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors","aria-label":"Documentation",children:t.jsx(re,{className:"h-5 w-5"})})]})})]})]}),t.jsx("div",{className:"hidden lg:fixed lg:inset-y-0 lg:flex lg:w-64 lg:flex-col",children:t.jsxs("div",{className:"flex flex-col h-full bg-white dark:bg-gray-800 border-r border-gray-200 dark:border-gray-700",children:[t.jsx("div",{className:"flex h-16 items-center px-4 border-b border-gray-200 dark:border-gray-700",children:t.jsxs(D,{to:"/",className:"flex items-center space-x-2.5",children:[t.jsx("div",{className:"p-1.5 bg-primary-100 dark:bg-primary-900/50 rounded-lg",children:t.jsx(U,{className:"h-6 w-6 text-primary-600 dark:text-primary-400"})}),t.jsxs("div",{children:[t.jsx("span",{className:"text-lg font-bold text-gray-900 dark:text-white",children:"NestLens"}),t.jsxs("span",{className:"hidden xl:inline text-xs text-gray-400 dark:text-gray-500 ml-1.5",children:["v","0.3.4"]})]})]})}),t.jsx("nav",{className:"flex-1 min-h-0 overflow-y-auto py-4 px-3",children:ue.map((p,N)=>{const S=l.has(p.name);return t.jsxs("div",{className:N>0?"mt-6":"",children:[t.jsxs("button",{onClick:()=>u(p.name),className:"flex items-center justify-between w-full px-2 py-1.5 text-[11px] font-semibold text-gray-400 dark:text-gray-500 uppercase tracking-wider hover:text-gray-600 dark:hover:text-gray-400 transition-colors","aria-expanded":!S,"aria-controls":`desktop-nav-group-${p.name.toLowerCase().replace(/\s+/g,"-")}`,children:[t.jsx("span",{children:p.name}),S?t.jsx(ae,{className:"h-3 w-3","aria-hidden":"true"}):t.jsx(se,{className:"h-3 w-3","aria-hidden":"true"})]}),!S&&t.jsx("div",{className:"mt-1 space-y-0.5",children:p.items.map(b=>{const _=b.href==="/"?s.pathname==="/":s.pathname.startsWith(b.href),C="badge"in b?m(b.badge):0;return t.jsxs(D,{to:b.href,"aria-current":_?"page":void 0,className:`group flex items-center justify-between px-3 py-2 rounded-lg transition-all duration-150 ${_?"bg-primary-50 text-primary-700 dark:bg-primary-900/50 dark:text-primary-200 font-medium shadow-sm":"text-gray-600 hover:bg-gray-50 dark:text-gray-400 dark:hover:bg-gray-800/50 hover:text-gray-900 dark:hover:text-white"}`,children:[t.jsxs("div",{className:"flex items-center space-x-3",children:[t.jsx(b.icon,{className:`h-[18px] w-[18px] ${de[b.colorKey]||"text-gray-400"}`}),t.jsx("span",{className:"text-sm",children:b.name})]}),C>0&&t.jsx("span",{className:`inline-flex items-center justify-center min-w-[20px] h-5 px-1.5 text-xs font-semibold rounded-full transition-colors ${_?"bg-primary-200 text-primary-800 dark:bg-primary-800 dark:text-primary-200":"bg-red-100 text-red-700 dark:bg-red-900/50 dark:text-red-400"}`,children:C>99?"99+":C})]},b.name)})})]},p.name)})}),t.jsx("div",{className:"flex-shrink-0 p-3 border-t border-gray-200 dark:border-gray-700",children:t.jsxs("div",{className:"flex items-center justify-center gap-1",children:[t.jsx(ce,{}),t.jsx("button",{onClick:j,className:"p-2.5 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors","aria-label":n?"Switch to light mode":"Switch to dark mode",title:n?"Light Mode (⌘D)":"Dark Mode (⌘D)",children:n?t.jsx(ie,{className:"h-5 w-5"}):t.jsx(oe,{className:"h-5 w-5"})}),t.jsx("button",{onClick:E,className:"p-2.5 text-gray-500 hover:text-red-600 dark:text-gray-400 dark:hover:text-red-400 hover:bg-red-50 dark:hover:bg-red-900/20 rounded-lg transition-colors","aria-label":"Clear all data",title:"Clear All Data (⌘K)",children:t.jsx(le,{className:"h-5 w-5"})}),t.jsx("a",{href:"https://github.com/mogretici/nestlens",target:"_blank",rel:"noopener noreferrer",className:"p-2.5 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors","aria-label":"Documentation",title:"Documentation",children:t.jsx(re,{className:"h-5 w-5"})})]})})]})}),t.jsxs("div",{className:"lg:pl-64",children:[t.jsxs("header",{className:"sticky top-0 z-40 flex h-14 items-center gap-4 border-b border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 px-4 lg:hidden",children:[t.jsx("button",{onClick:()=>e(!0),className:"text-gray-500 hover:text-gray-700 dark:text-gray-400","aria-expanded":a,"aria-controls":"mobile-sidebar","aria-label":"Open navigation menu",children:t.jsx(Ft,{className:"h-6 w-6","aria-hidden":"true"})}),t.jsxs(D,{to:"/",className:"flex items-center space-x-2",children:[t.jsx(U,{className:"h-6 w-6 text-primary-600"}),t.jsx("span",{className:"text-lg font-bold text-gray-900 dark:text-white",children:"NestLens"})]})]}),t.jsx("main",{className:"p-4 lg:p-6",children:t.jsx(Ce,{})})]})]})}function y(){return t.jsx("div",{className:"flex items-center justify-center min-h-[400px]",children:t.jsxs("div",{className:"flex flex-col items-center gap-3",children:[t.jsx("div",{className:"animate-spin rounded-full h-10 w-10 border-b-2 border-primary-600 dark:border-primary-400"}),t.jsx("p",{className:"text-sm text-gray-500 dark:text-gray-400",children:"Loading..."})]})})}const ds=r.lazy(()=>k(()=>import("./DashboardPage-DBq9olrb.js"),__vite__mapDeps([0,1,2,3,4]))),us=r.lazy(()=>k(()=>import("./RequestsPage-Ddf6EpBe.js"),__vite__mapDeps([5,1,2,6,7]))),hs=r.lazy(()=>k(()=>import("./QueriesPage-Cq_dTmNR.js"),__vite__mapDeps([8,1,2,6,7,3]))),ms=r.lazy(()=>k(()=>import("./ExceptionsPage-gYd6g1uV.js"),__vite__mapDeps([9,1,2,6,7,10]))),ps=r.lazy(()=>k(()=>import("./LogsPage-4QbIACro.js"),__vite__mapDeps([11,1,2,6,7]))),xs=r.lazy(()=>k(()=>import("./EventsPage-B__c8fMG.js"),__vite__mapDeps([12,1,2,6,7]))),fs=r.lazy(()=>k(()=>import("./JobsPage-BCaWNqRu.js"),__vite__mapDeps([13,1,2,6,7]))),ys=r.lazy(()=>k(()=>import("./CachePage-CVI2MWOP.js"),__vite__mapDeps([14,1,2,6,7]))),gs=r.lazy(()=>k(()=>import("./MailPage-rwNbPrlt.js"),__vite__mapDeps([15,1,2,6,7]))),js=r.lazy(()=>k(()=>import("./SchedulePage-Bnj6BP7j.js"),__vite__mapDeps([16,1,17,2,6,7]))),bs=r.lazy(()=>k(()=>import("./HttpClientPage-B504GqrK.js"),__vite__mapDeps([18,1,2,6,7]))),ks=r.lazy(()=>k(()=>import("./RedisPage-WyIqRY51.js"),__vite__mapDeps([19,1,2,6,7]))),vs=r.lazy(()=>k(()=>import("./ModelsPage-Jc7WSrV2.js"),__vite__mapDeps([20,1,2,6,7]))),ws=r.lazy(()=>k(()=>import("./NotificationsPage-CHkJmY88.js"),__vite__mapDeps([21,1,2,6,7]))),Ss=r.lazy(()=>k(()=>import("./ViewsPage-DgdMD9iC.js"),__vite__mapDeps([22,1,2,6,7,23]))),Ns=r.lazy(()=>k(()=>import("./CommandsPage-CpXlDpH2.js"),__vite__mapDeps([24,1,2,6,7]))),_s=r.lazy(()=>k(()=>import("./GatesPage-CY-lCHBF.js"),__vite__mapDeps([25,1,2,6,7]))),Es=r.lazy(()=>k(()=>import("./BatchesPage-CBuvtLok.js"),__vite__mapDeps([26,1,2,6,7]))),Ps=r.lazy(()=>k(()=>import("./DumpsPage-CvCmvONu.js"),__vite__mapDeps([27,1,2,6,7]))),Cs=r.lazy(()=>k(()=>import("./GraphQLPage-45EotnyF.js"),__vite__mapDeps([28,1,2,6,7]))),v=r.lazy(()=>k(()=>import("./EntryDetailPage-DYSZpdsH.js"),__vite__mapDeps([29,1,2,7,3,10,17,4,23])));function Rs(){return t.jsx(Re,{children:t.jsxs(x,{path:"/",element:t.jsx(cs,{}),children:[t.jsx(x,{index:!0,element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ds,{})})}),t.jsx(x,{path:"requests",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(us,{})})}),t.jsx(x,{path:"queries",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(hs,{})})}),t.jsx(x,{path:"exceptions",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ms,{})})}),t.jsx(x,{path:"logs",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ps,{})})}),t.jsx(x,{path:"events",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(xs,{})})}),t.jsx(x,{path:"jobs",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(fs,{})})}),t.jsx(x,{path:"cache",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ys,{})})}),t.jsx(x,{path:"mail",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(gs,{})})}),t.jsx(x,{path:"schedule",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(js,{})})}),t.jsx(x,{path:"http-client",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(bs,{})})}),t.jsx(x,{path:"redis",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ks,{})})}),t.jsx(x,{path:"models",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(vs,{})})}),t.jsx(x,{path:"notifications",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(ws,{})})}),t.jsx(x,{path:"views",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Ss,{})})}),t.jsx(x,{path:"commands",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Ns,{})})}),t.jsx(x,{path:"gates",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(_s,{})})}),t.jsx(x,{path:"batches",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Es,{})})}),t.jsx(x,{path:"dumps",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Ps,{})})}),t.jsx(x,{path:"graphql",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(Cs,{})})}),t.jsx(x,{path:"requests/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"queries/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"exceptions/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"logs/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"events/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"jobs/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"cache/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"mail/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"schedule/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"http-client/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"redis/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"models/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"notifications/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"views/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"commands/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"gates/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"batches/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"dumps/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"graphql/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"entries/:id",element:t.jsx(r.Suspense,{fallback:t.jsx(y,{}),children:t.jsx(v,{})})}),t.jsx(x,{path:"*",element:t.jsx(Le,{to:"/",replace:!0})})]})})}class Ls extends r.Component{constructor(){super(...arguments);z(this,"state",{hasError:!1});z(this,"handleReload",()=>{window.location.reload()});z(this,"handleReset",()=>{this.setState({hasError:!1,error:void 0,errorInfo:void 0})})}static getDerivedStateFromError(e){return{hasError:!0,error:e}}componentDidCatch(e,i){console.error("ErrorBoundary caught an error:",e,i),this.setState({errorInfo:i})}render(){return this.state.hasError?this.props.fallback?this.props.fallback:t.jsx("div",{className:"min-h-screen flex items-center justify-center bg-gray-50 dark:bg-gray-900 p-4",children:t.jsxs("div",{className:"max-w-md w-full bg-white dark:bg-gray-800 rounded-lg shadow-lg p-6 text-center",children:[t.jsx("div",{className:"mx-auto w-12 h-12 flex items-center justify-center rounded-full bg-red-100 dark:bg-red-900/30 mb-4",children:t.jsx(be,{className:"h-6 w-6 text-red-600 dark:text-red-400"})}),t.jsx("h1",{className:"text-xl font-semibold text-gray-900 dark:text-white mb-2",children:"Something went wrong"}),t.jsx("p",{className:"text-gray-600 dark:text-gray-400 mb-4",children:"An unexpected error occurred. Please try refreshing the page."}),this.state.error&&t.jsx("div",{className:"mb-4 p-3 bg-red-50 dark:bg-red-900/20 rounded-lg text-left",children:t.jsx("p",{className:"text-sm font-mono text-red-600 dark:text-red-400 break-all",children:this.state.error.message})}),t.jsxs("div",{className:"flex gap-3 justify-center",children:[t.jsx("button",{onClick:this.handleReset,className:"px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 rounded-lg transition-colors",children:"Try Again"}),t.jsxs("button",{onClick:this.handleReload,className:"flex items-center gap-2 px-4 py-2 text-sm font-medium text-white bg-primary-600 hover:bg-primary-700 rounded-lg transition-colors",children:[t.jsx(Wt,{className:"h-4 w-4"}),"Refresh Page"]})]}),!1]})}):this.props.children}}const Os=()=>{const s=window.location.pathname,a=s.indexOf("/nestlens");return a!==-1?s.substring(0,a+9):"/nestlens"};$e.createRoot(document.getElementById("root")).render(t.jsx(Oe.StrictMode,{children:t.jsx(Ls,{children:t.jsx(Ae,{basename:Os(),children:t.jsxs(is,{children:[t.jsx(Rs,{}),t.jsx(_t,{position:"bottom-right",toastOptions:{duration:3e3,style:{background:"#1f2937",color:"#f3f4f6",borderRadius:"0.5rem"},success:{iconTheme:{primary:"#10b981",secondary:"#f3f4f6"}},error:{iconTheme:{primary:"#ef4444",secondary:"#f3f4f6"}}}})]})})})}));export{Ot as A,Dt as B,Mt as C,qt as D,$t as F,zt as G,ne as H,Kt as L,Bt as M,Ht as P,Qt as R,Zt as S,be as T,Yt as X,Xt as a,Tt as b,g as c,It as d,At as e,Gt as f,ae as g,le as h,Wt as i,t as j,zs as k,Is as l,Ms as m,Bs as n,Vs as o,qs as p,$s as q,Ks as r,se as s,Jt as t,ls as u,Ds as v,q as z};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{c as q,j as t,g as A}from"./index-
|
|
1
|
+
import{c as q,j as t,g as A}from"./index-yKzNgrAF.js";import{b as d}from"./vendor-B2nVRih0.js";import{g as b}from"./ClickableBadge-BFhMLE2u.js";/**
|
|
2
2
|
* @license lucide-react v0.468.0 - ISC
|
|
3
3
|
*
|
|
4
4
|
* This source code is licensed under the ISC license.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/nestlens/nestlens-icon.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>NestLens - Debug Dashboard</title>
|
|
8
|
-
<script type="module" crossorigin src="/nestlens/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/nestlens/assets/index-yKzNgrAF.js"></script>
|
|
9
9
|
<link rel="modulepreload" crossorigin href="/nestlens/assets/vendor-B2nVRih0.js">
|
|
10
10
|
<link rel="stylesheet" crossorigin href="/nestlens/assets/index-CCwxFPOj.css">
|
|
11
11
|
</head>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* @see https://docs.nestjs.com/graphql/plugins
|
|
10
10
|
*/
|
|
11
11
|
import { OnModuleInit } from '@nestjs/common';
|
|
12
|
-
import { GraphQLWatcher } from '
|
|
12
|
+
import { GraphQLWatcher } from '../../../watchers';
|
|
13
13
|
/**
|
|
14
14
|
* Apollo Server Plugin that auto-registers with NestJS GraphQL module.
|
|
15
15
|
*
|
|
@@ -25,7 +25,7 @@ var NestLensApolloPlugin_1;
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.NestLensApolloPlugin = void 0;
|
|
27
27
|
const common_1 = require("@nestjs/common");
|
|
28
|
-
const watchers_1 = require("
|
|
28
|
+
const watchers_1 = require("../../../watchers");
|
|
29
29
|
/**
|
|
30
30
|
* Dynamically import @Plugin decorator to avoid hard dependency on @nestjs/apollo.
|
|
31
31
|
* If the package is not installed, the decorator will be undefined and we'll skip decoration.
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Abstract interface that all GraphQL server adapters must implement.
|
|
5
5
|
*/
|
|
6
|
-
import { CollectorService } from '
|
|
7
|
-
import { GraphQLPayload } from '
|
|
6
|
+
import { CollectorService } from '../../../core';
|
|
7
|
+
import { GraphQLPayload } from '../../../types';
|
|
8
8
|
import { ResolvedGraphQLConfig } from '../types';
|
|
9
9
|
/**
|
|
10
10
|
* Callback for when an operation is collected
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestlens",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Laravel Telescope-like debugging and monitoring tool for NestJS",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"LICENSE"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "rimraf dist && tsc && npm run build:dashboard",
|
|
14
|
-
"build:lib": "tsc",
|
|
13
|
+
"build": "rimraf dist && tsc && tsc-alias && npm run build:dashboard",
|
|
14
|
+
"build:lib": "tsc && tsc-alias",
|
|
15
15
|
"build:dashboard": "cd dashboard && npm run build && mkdir -p ../dist/dashboard/public && cp -r dist/* ../dist/dashboard/public/",
|
|
16
16
|
"dev": "tsc --watch",
|
|
17
17
|
"lint": "eslint \"src/**/*.ts\"",
|
|
@@ -136,6 +136,7 @@
|
|
|
136
136
|
"semantic-release": "^25.0.2",
|
|
137
137
|
"standard-version": "^9.5.0",
|
|
138
138
|
"ts-jest": "^29.4.6",
|
|
139
|
+
"tsc-alias": "^1.8.16",
|
|
139
140
|
"typescript": "^5.7.2"
|
|
140
141
|
},
|
|
141
142
|
"engines": {
|