Skip to content

Commit 6cf86d5

Browse files
matt-aitkensamejr
andauthored
Deleting v2 dashboard/api (#1628)
* Delete v2 Stripe routes * Delete v2 billing/usage pages * Delete v2 integration pages * Delete v2 project pages * Deleted a load of components and services * Deleted a load more components, presenters and services * Deleted another 100 files or so… * Removed old v2 paths * Removed named icons from form titles * Removed more string icons * Delete NamedIcon * Fixed some type errors * Delete endpointApi * Removed v2 from core/sdk * Post merge fixes * added explicit return types * using the new sdk export without v3 * Delete old v2 file * Added explicit return types because TS was complaining… * Don’t export RuntimeEnvironmentType from two core files. Was causing TS issue * Fix for removal of NamedIcon in new route * Removed strange eslintrc rule * Use the new redis client --------- Co-authored-by: James Ritchie <[email protected]>
1 parent d855d55 commit 6cf86d5

File tree

477 files changed

+489
-51102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

477 files changed

+489
-51102
lines changed

apps/webapp/.eslintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"files": ["*.ts", "*.tsx"],
77
"rules": {
88
// Autofixes imports from "@trigger.dev/core" to fine grained modules
9-
"@trigger.dev/no-trigger-core-import": "error",
9+
// "@trigger.dev/no-trigger-core-import": "error",
1010
// Normalize `import type {}` and `import { type }`
1111
"@typescript-eslint/consistent-type-imports": [
1212
"warn",

apps/webapp/app/api.server.ts

-15
This file was deleted.

apps/webapp/app/components/ActiveBadge.tsx

-59
This file was deleted.

apps/webapp/app/components/BlankstateInstructions.tsx

-23
This file was deleted.

apps/webapp/app/components/ComingSoon.tsx

-34
This file was deleted.

apps/webapp/app/components/ErrorDisplay.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { LinkButton } from "./primitives/Buttons";
66
import { Header1 } from "./primitives/Headers";
77
import { Paragraph } from "./primitives/Paragraph";
88
import Spline from "@splinetool/react-spline";
9+
import { ReactNode } from "react";
910

1011
type ErrorDisplayOptions = {
1112
button?: {
@@ -38,7 +39,7 @@ export function RouteErrorDisplay(options?: ErrorDisplayOptions) {
3839

3940
type DisplayOptionsProps = {
4041
title: string;
41-
message?: string;
42+
message?: ReactNode;
4243
} & ErrorDisplayOptions;
4344

4445
export function ErrorDisplay({ title, message, button }: DisplayOptionsProps) {

apps/webapp/app/components/HighlightInit.tsx

-14
This file was deleted.

apps/webapp/app/components/JobsStatusTable.tsx

-75
This file was deleted.

apps/webapp/app/components/ListPagination.tsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
import { ChevronLeftIcon, ChevronRightIcon } from "@heroicons/react/20/solid";
12
import { useLocation } from "@remix-run/react";
3+
import { z } from "zod";
24
import { LinkButton } from "~/components/primitives/Buttons";
3-
import { Direction } from "~/components/runs/RunStatuses";
45
import { cn } from "~/utils/cn";
56

67
type List = {
@@ -10,6 +11,9 @@ type List = {
1011
};
1112
};
1213

14+
export const DirectionSchema = z.union([z.literal("forward"), z.literal("backward")]);
15+
export type Direction = z.infer<typeof DirectionSchema>;
16+
1317
export function ListPagination({ list, className }: { list: List; className?: string }) {
1418
return (
1519
<div className={cn("flex items-center gap-1", className)}>
@@ -26,7 +30,7 @@ function NextButton({ cursor }: { cursor?: string }) {
2630
<LinkButton
2731
to={path ?? "#"}
2832
variant={"minimal/small"}
29-
TrailingIcon="chevron-right"
33+
TrailingIcon={ChevronRightIcon}
3034
trailingIconClassName="text-text-dimmed"
3135
className={cn(
3236
"flex items-center",
@@ -49,7 +53,7 @@ function PreviousButton({ cursor }: { cursor?: string }) {
4953
<LinkButton
5054
to={path ?? "#"}
5155
variant={"minimal/small"}
52-
LeadingIcon="chevron-left"
56+
LeadingIcon={ChevronLeftIcon}
5357
leadingIconClassName="text-text-dimmed"
5458
className={cn(
5559
"flex items-center",

apps/webapp/app/components/LoginPageLayout.tsx

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
import { useEffect, useState } from "react";
2-
import { ATAndTLogo } from "~/assets/logos/ATAndTLogo";
32
import { AppsmithLogo } from "~/assets/logos/AppsmithLogo";
43
import { CalComLogo } from "~/assets/logos/CalComLogo";
5-
import { ShopifyLogo } from "~/assets/logos/ShopifyLogo";
6-
import { VerizonLogo } from "~/assets/logos/VerizonLogo";
4+
import { LyftLogo } from "~/assets/logos/LyftLogo";
5+
import { MiddayLogo } from "~/assets/logos/MiddayLogo";
6+
import { TldrawLogo } from "~/assets/logos/TldrawLogo";
7+
import { UnkeyLogo } from "~/assets/logos/UnkeyLogo";
78
import { LogoType } from "./LogoType";
89
import { LinkButton } from "./primitives/Buttons";
910
import { Header3 } from "./primitives/Headers";
1011
import { Paragraph } from "./primitives/Paragraph";
1112
import { TextLink } from "./primitives/TextLink";
12-
import { TldrawLogo } from "~/assets/logos/TldrawLogo";
13-
import { UnkeyLogo } from "~/assets/logos/UnkeyLogo";
14-
import { LyftLogo } from "~/assets/logos/LyftLogo";
15-
import { MiddayLogo } from "~/assets/logos/MiddayLogo";
13+
import { BookOpenIcon } from "@heroicons/react/20/solid";
1614

1715
interface QuoteType {
1816
quote: string;
@@ -55,7 +53,11 @@ export function LoginPageLayout({ children }: { children: React.ReactNode }) {
5553
<a href="https://trigger.dev">
5654
<LogoType className="w-36" />
5755
</a>
58-
<LinkButton to="https://trigger.dev/docs" variant={"tertiary/small"} LeadingIcon="docs">
56+
<LinkButton
57+
to="https://trigger.dev/docs"
58+
variant={"tertiary/small"}
59+
LeadingIcon={BookOpenIcon}
60+
>
5961
Documentation
6062
</LinkButton>
6163
</div>

apps/webapp/app/components/NoMobileOverlay.tsx

-21
This file was deleted.

0 commit comments

Comments
 (0)