From 9d1f96a5f5c4bcee16d2b280ca29a588656c5ba0 Mon Sep 17 00:00:00 2001 From: Lars Hampe Date: Thu, 31 Oct 2024 22:54:04 +0100 Subject: [PATCH] style(app): refactor cli page --- apps/app/src/routes/cli.lazy.tsx | 63 +++++++++++++++++++++----------- 1 file changed, 42 insertions(+), 21 deletions(-) diff --git a/apps/app/src/routes/cli.lazy.tsx b/apps/app/src/routes/cli.lazy.tsx index a14d012..d5437d9 100644 --- a/apps/app/src/routes/cli.lazy.tsx +++ b/apps/app/src/routes/cli.lazy.tsx @@ -1,5 +1,6 @@ -import { Card, CardContent, CardHeader } from '@boring.tools/ui' +import { Button, Card, CardContent, CardHeader, cn } from '@boring.tools/ui' import { Link, createLazyFileRoute } from '@tanstack/react-router' +import { useState } from 'react' import { PageWrapper } from '../components/PageWrapper' const Platforms = [ @@ -34,6 +35,8 @@ const Platforms = [ ] const Component = () => { + const [activePlatform, setPlatform] = useState('Linux') + const getPlatform = Platforms.find((p) => p.name === activePlatform) return (
@@ -42,35 +45,53 @@ const Component = () => { With our CLI you can upload your commits for your changelog in just a few seconds.

-

Download

+

Platform

{Platforms.map((platform) => { return ( - + setPlatform(platform.name)} > - - - {platform.name} - - - {platform.arch} - - - + + {platform.name} + + + {platform.arch} + + + // ) })}
- +

Download

+ +

WGET

+
+          wget https://cdn.boring.tools{getPlatform?.path}
+        

Usage

-          bt --changelogId=... --token=bt_...
+          {getPlatform?.filename} --help
         

@@ -80,7 +101,7 @@ const Component = () => {

           BT_CHANGELOG_ID=...
           
- BT_AUTH_TOKEN=bt_... + BT_ACCESS_TOKEN=bt_...