Skip to content

[Dashboard] Add self-service dedicated engine deployment option #7325

New issue

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

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

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function TransactionsLayout(props: {
</div>
</div>
<Link href={`${engineBaseSlug}/dedicated`}>
<Button variant="outline">View dedicated engines</Button>
<Button variant="outline">View Dedicated Engine</Button>
</Link>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const meta = {
title: "Engine/EngineFooterCard",
component: EngineFooterCard,
args: {
team_slug: "demo-team",
project_slug: "demo-project",
teamSlug: "demo-team",
projectSlug: "demo-project",
},
decorators: [
(Story) => (
Expand All @@ -20,26 +20,8 @@ const meta = {
export default meta;
type Story = StoryObj<typeof meta>;

export const Growth: Story = {
args: {
teamPlan: "growth",
},
};
export const Growth: Story = {};

export const Accelerate: Story = {
args: {
teamPlan: "accelerate",
},
};
export const Scale: Story = {};

export const Scale: Story = {
args: {
teamPlan: "scale",
},
};

export const Pro: Story = {
args: {
teamPlan: "pro",
},
};
export const Pro: Story = {};
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import type { Team } from "@/api/team";
import { Button } from "@/components/ui/button";
import { TrackedLinkTW } from "@/components/ui/tracked-link";
import { ArrowRightIcon, DownloadIcon, ExternalLinkIcon } from "lucide-react";
Expand Down Expand Up @@ -75,15 +74,14 @@ function EngineInfoSection(props: { team_slug: string; project_slug: string }) {
}

export function EngineFooterCard(props: {
teamPlan: Team["billingPlan"];
team_slug: string;
project_slug: string;
teamSlug: string;
projectSlug: string;
}) {
return (
<div className="relative rounded-lg border p-6">
<EngineInfoSection
team_slug={props.team_slug}
project_slug={props.project_slug}
team_slug={props.teamSlug}
project_slug={props.projectSlug}
/>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { EngineInstance } from "@3rdweb-sdk/react/hooks/useEngine";
import type { Meta, StoryObj } from "@storybook/react";
import { teamStub } from "../../../../../../../../../../stories/stubs";
import { EngineInstancesTableUI } from "./engine-instances-table";

const meta: Meta<typeof Story> = {
Expand Down Expand Up @@ -109,15 +110,15 @@ export const NoInstancesProPlan: Story = {
args: {
instances: [],
engineLinkPrefix: "/team/test/engine",
teamPlan: "pro",
team: teamStub("1", "pro"),
},
};

export const NoInstancesGrowthPlan: Story = {
args: {
instances: [],
engineLinkPrefix: "/team/test/engine",
teamPlan: "growth",
team: teamStub("2", "growth"),
},
};

Expand All @@ -127,7 +128,7 @@ export const NoInstancesAcceleratePlan: Story = {
args: {
instances: [],
engineLinkPrefix: "/team/test/engine",
teamPlan: "accelerate",
team: teamStub("3", "accelerate"),
},
};

Expand Down
Loading
Loading