Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
82 lines
No EOL
3.3 KiB
Text
82 lines
No EOL
3.3 KiB
Text
// Copyright 2023 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
export var DataOrigin;
|
|
(function (DataOrigin) {
|
|
DataOrigin["CPU_PROFILE"] = "CPUProfile";
|
|
DataOrigin["TRACE_EVENTS"] = "TraceEvents";
|
|
})(DataOrigin || (DataOrigin = {}));
|
|
/**
|
|
* The Entries link can have 3 stated:
|
|
* 1. The Link creation is not started yet, meaning only the button that needs to be clicked to start creating the link is visible.
|
|
* 2. Pending to event - the creation is started, but the entry that the link points to has not been chosen yet
|
|
* 3. Link connected - final state, both entries present
|
|
*/
|
|
export var EntriesLinkState;
|
|
(function (EntriesLinkState) {
|
|
EntriesLinkState["CREATION_NOT_STARTED"] = "creation_not_started";
|
|
EntriesLinkState["PENDING_TO_EVENT"] = "pending_to_event";
|
|
EntriesLinkState["CONNECTED"] = "connected";
|
|
})(EntriesLinkState || (EntriesLinkState = {}));
|
|
export var EventKeyType;
|
|
(function (EventKeyType) {
|
|
EventKeyType["RAW_EVENT"] = "r";
|
|
EventKeyType["SYNTHETIC_EVENT"] = "s";
|
|
EventKeyType["PROFILE_CALL"] = "p";
|
|
EventKeyType["LEGACY_TIMELINE_FRAME"] = "l";
|
|
})(EventKeyType || (EventKeyType = {}));
|
|
export function isTimeRangeAnnotation(annotation) {
|
|
return annotation.type === 'TIME_RANGE';
|
|
}
|
|
export function isEntryLabelAnnotation(annotation) {
|
|
return annotation.type === 'ENTRY_LABEL';
|
|
}
|
|
export function isEntriesLinkAnnotation(annotation) {
|
|
return annotation.type === 'ENTRIES_LINK';
|
|
}
|
|
export function traceEventKeyToValues(key) {
|
|
const parts = key.split('-');
|
|
const type = parts[0];
|
|
switch (type) {
|
|
case EventKeyType.PROFILE_CALL:
|
|
if (parts.length !== 5 ||
|
|
!(parts.every((part, i) => i === 0 || typeof part === 'number' || !isNaN(parseInt(part, 10))))) {
|
|
throw new Error(`Invalid ProfileCallKey: ${key}`);
|
|
}
|
|
return {
|
|
type: parts[0],
|
|
processID: parseInt(parts[1], 10),
|
|
threadID: parseInt(parts[2], 10),
|
|
sampleIndex: parseInt(parts[3], 10),
|
|
protocol: parseInt(parts[4], 10),
|
|
};
|
|
case EventKeyType.RAW_EVENT:
|
|
if (parts.length !== 2 || !(typeof parts[1] === 'number' || !isNaN(parseInt(parts[1], 10)))) {
|
|
throw new Error(`Invalid RawEvent Key: ${key}`);
|
|
}
|
|
return {
|
|
type: parts[0],
|
|
rawIndex: parseInt(parts[1], 10),
|
|
};
|
|
case EventKeyType.SYNTHETIC_EVENT:
|
|
if (parts.length !== 2 || !(typeof parts[1] === 'number' || !isNaN(parseInt(parts[1], 10)))) {
|
|
throw new Error(`Invalid SyntheticEvent Key: ${key}`);
|
|
}
|
|
return {
|
|
type: parts[0],
|
|
rawIndex: parseInt(parts[1], 10),
|
|
};
|
|
case EventKeyType.LEGACY_TIMELINE_FRAME: {
|
|
if (parts.length !== 2 || Number.isNaN(parseInt(parts[1], 10))) {
|
|
throw new Error(`Invalid LegacyTimelineFrame Key: ${key}`);
|
|
}
|
|
return {
|
|
type,
|
|
rawIndex: parseInt(parts[1], 10),
|
|
};
|
|
}
|
|
default:
|
|
throw new Error(`Unknown trace event key: ${key}`);
|
|
}
|
|
}
|
|
//# sourceMappingURL=File.js.map |