diff --git a/billing b/billing new file mode 100644 index 000000000..e69de29bb diff --git a/web/src/app/ee/admin/cloud-settings/BillingInformationPage.tsx b/web/src/app/ee/admin/billing/BillingInformationPage.tsx similarity index 98% rename from web/src/app/ee/admin/cloud-settings/BillingInformationPage.tsx rename to web/src/app/ee/admin/billing/BillingInformationPage.tsx index 6873c7982..938108f9c 100644 --- a/web/src/app/ee/admin/cloud-settings/BillingInformationPage.tsx +++ b/web/src/app/ee/admin/billing/BillingInformationPage.tsx @@ -85,8 +85,8 @@ export default function BillingInformationPage() { {popup}

- - Billing Information + {/* */} + Subscription Details

diff --git a/web/src/app/ee/admin/cloud-settings/page.tsx b/web/src/app/ee/admin/billing/page.tsx similarity index 74% rename from web/src/app/ee/admin/cloud-settings/page.tsx rename to web/src/app/ee/admin/billing/page.tsx index 6566e069b..96cfe7585 100644 --- a/web/src/app/ee/admin/cloud-settings/page.tsx +++ b/web/src/app/ee/admin/billing/page.tsx @@ -1,6 +1,6 @@ import { AdminPageTitle } from "@/components/admin/Title"; import BillingInformationPage from "./BillingInformationPage"; -import { FaCloud } from "react-icons/fa"; +import { MdOutlineCreditCard } from "react-icons/md"; export interface BillingInformation { seats: number; @@ -14,8 +14,8 @@ export default function page() { return (
} + title="Billing Information" + icon={} />
diff --git a/web/src/app/ee/admin/cloud-settings/utils.ts b/web/src/app/ee/admin/billing/utils.ts similarity index 100% rename from web/src/app/ee/admin/cloud-settings/utils.ts rename to web/src/app/ee/admin/billing/utils.ts diff --git a/web/src/components/admin/ClientLayout.tsx b/web/src/components/admin/ClientLayout.tsx index ac22cd650..e63298c28 100644 --- a/web/src/components/admin/ClientLayout.tsx +++ b/web/src/components/admin/ClientLayout.tsx @@ -30,7 +30,7 @@ import { User } from "@/lib/types"; import { usePathname } from "next/navigation"; import { SettingsContext } from "../settings/SettingsProvider"; import { useContext } from "react"; -import { Cloud } from "@phosphor-icons/react"; +import { MdOutlineCreditCard } from "react-icons/md"; export function ClientLayout({ user, @@ -386,14 +386,14 @@ export function ClientLayout({ { name: (
- -
Cloud Settings
+
Billing
), - link: "/admin/cloud-settings", + link: "/admin/billing", }, ] : []), diff --git a/web/src/components/admin/Layout.tsx b/web/src/components/admin/Layout.tsx index 2b1cef8cc..6c8cfce41 100644 --- a/web/src/components/admin/Layout.tsx +++ b/web/src/components/admin/Layout.tsx @@ -7,7 +7,7 @@ import { import { redirect } from "next/navigation"; import { ClientLayout } from "./ClientLayout"; import { - SERVER_SIDE_ONLY__CLOUD_ENABLED, + NEXT_PUBLIC_CLOUD_ENABLED, SERVER_SIDE_ONLY__PAID_ENTERPRISE_FEATURES_ENABLED, } from "@/lib/constants"; import { AnnouncementBanner } from "../header/AnnouncementBanner"; @@ -45,7 +45,7 @@ export async function Layout({ children }: { children: React.ReactNode }) { return ( diff --git a/web/src/components/header/AnnouncementBanner.tsx b/web/src/components/header/AnnouncementBanner.tsx index a4a1b05dc..c78bbe91f 100644 --- a/web/src/components/header/AnnouncementBanner.tsx +++ b/web/src/components/header/AnnouncementBanner.tsx @@ -82,7 +82,7 @@ export function AnnouncementBanner() { Your trial is ending soon - submit your billing information to continue using Onyx.{" "} Update here diff --git a/web/src/lib/constants.ts b/web/src/lib/constants.ts index 2408bd8fc..c84bc2eee 100644 --- a/web/src/lib/constants.ts +++ b/web/src/lib/constants.ts @@ -74,7 +74,4 @@ export const NEXT_PUBLIC_CLOUD_ENABLED = export const REGISTRATION_URL = process.env.INTERNAL_URL || "http://127.0.0.1:3001"; -export const SERVER_SIDE_ONLY__CLOUD_ENABLED = - process.env.NEXT_PUBLIC_CLOUD_ENABLED?.toLowerCase() === "true"; - export const TEST_ENV = process.env.TEST_ENV?.toLowerCase() === "true"; diff --git a/web/src/lib/userSS.ts b/web/src/lib/userSS.ts index 7360d5494..9e7de4acb 100644 --- a/web/src/lib/userSS.ts +++ b/web/src/lib/userSS.ts @@ -2,7 +2,7 @@ import { cookies } from "next/headers"; import { User } from "./types"; import { buildUrl } from "./utilsSS"; import { ReadonlyRequestCookies } from "next/dist/server/web/spec-extension/adapters/request-cookies"; -import { AuthType, SERVER_SIDE_ONLY__CLOUD_ENABLED } from "./constants"; +import { AuthType, NEXT_PUBLIC_CLOUD_ENABLED } from "./constants"; export interface AuthTypeMetadata { authType: AuthType; @@ -22,7 +22,7 @@ export const getAuthTypeMetadataSS = async (): Promise => { let authType: AuthType; // Override fasapi users auth so we can use both - if (SERVER_SIDE_ONLY__CLOUD_ENABLED) { + if (NEXT_PUBLIC_CLOUD_ENABLED) { authType = "cloud"; } else { authType = data.auth_type as AuthType; diff --git a/web/src/middleware.ts b/web/src/middleware.ts index 835c1b862..cd6014581 100644 --- a/web/src/middleware.ts +++ b/web/src/middleware.ts @@ -14,7 +14,7 @@ export const config = { "/admin/standard-answer/:path*", // Cloud only - "/admin/cloud-settings/:path*", + "/admin/billing/:path*", ], };