fix/ai-roadmap
Kamran Ahmed 9 months ago
parent 15c464a8e5
commit a6189f45ef
  1. 16
      src/components/GenerateRoadmap/GenerateRoadmap.tsx
  2. 4
      src/components/GenerateRoadmap/RoadmapSearch.tsx

@ -15,7 +15,7 @@ import { readAIRoadmapStream } from '../../helper/read-stream';
import { isLoggedIn, removeAuthToken, visitAIRoadmap } from '../../lib/jwt'; import { isLoggedIn, removeAuthToken, visitAIRoadmap } from '../../lib/jwt';
import { RoadmapSearch } from './RoadmapSearch.tsx'; import { RoadmapSearch } from './RoadmapSearch.tsx';
import { Spinner } from '../ReactIcons/Spinner.tsx'; import { Spinner } from '../ReactIcons/Spinner.tsx';
import { Ban, Download, PenSquare, Wand } from 'lucide-react'; import {Ban, Download, PenSquare, Save, Wand} from 'lucide-react';
import { ShareRoadmapButton } from '../ShareRoadmapButton.tsx'; import { ShareRoadmapButton } from '../ShareRoadmapButton.tsx';
import { httpGet, httpPost } from '../../lib/http.ts'; import { httpGet, httpPost } from '../../lib/http.ts';
import { pageProgressMessage } from '../../stores/page.ts'; import { pageProgressMessage } from '../../stores/page.ts';
@ -376,7 +376,7 @@ export function GenerateRoadmap() {
<h1 className="relative self-start text-2xl font-bold sm:text-3xl"> <h1 className="relative self-start text-2xl font-bold sm:text-3xl">
AI Roadmap Generator AI Roadmap Generator
</h1> </h1>
<div className="mt-4 sm:mt-6 flex flex-col gap-2 sm:gap-0 sm:flex-row w-full items-start sm:items-center justify-between text-sm"> <div className="mt-4 flex w-full flex-col items-start justify-between gap-2 text-sm sm:mt-6 sm:flex-row sm:items-center sm:gap-0">
<span> <span>
<span <span
className={cn( className={cn(
@ -393,10 +393,10 @@ export function GenerateRoadmap() {
</span> </span>
{!isLoggedIn() && ( {!isLoggedIn() && (
<button <button
className="rounded-xl border border-current px-1.5 py-0.5 text-sm font-medium text-blue-500" className="rounded-xl border border-current px-1.5 py-0.5 text-sm font-medium text-blue-500 text-left sm:text-center"
onClick={showLoginPopup} onClick={showLoginPopup}
> >
Generate more by signing up (free, takes 2sec) or logging in Generate more by <span className='font-semibold'>signing up (free, takes 2s)</span> or <span className='font-semibold'>logging in</span>
</button> </button>
)} )}
</div> </div>
@ -451,7 +451,6 @@ export function GenerateRoadmap() {
onClick={downloadGeneratedRoadmapContent} onClick={downloadGeneratedRoadmapContent}
> >
<Download size={15} /> <Download size={15} />
<span className="hidden sm:inline">Download</span>
</button> </button>
{roadmapId && ( {roadmapId && (
<ShareRoadmapButton <ShareRoadmapButton
@ -472,12 +471,13 @@ export function GenerateRoadmap() {
}} }}
disabled={isLoading} disabled={isLoading}
> >
<PenSquare size={15} /> <Save size={15} />
Track your progress <span className='hidden sm:inline'>Track your Progress on this Roadmap</span>
<span className='inline sm:hidden'>Track Progress</span>
</button> </button>
<button <button
className="inline-flex items-center justify-center gap-2 rounded-md bg-gray-200 py-1.5 pl-2.5 pr-3 text-xs font-medium text-black transition-colors duration-300 hover:bg-gray-300 sm:text-sm" className="hidden sm:inline-flex items-center justify-center gap-2 rounded-md bg-gray-200 py-1.5 pl-2.5 pr-3 text-xs font-medium text-black transition-colors duration-300 hover:bg-gray-300 sm:text-sm"
onClick={async () => { onClick={async () => {
const roadmapId = await saveAIRoadmap(); const roadmapId = await saveAIRoadmap();
if (roadmapId) { if (roadmapId) {

@ -1,4 +1,4 @@
import {Ban, CircleFadingPlus, Telescope, Wand} from 'lucide-react'; import { Ban, CircleFadingPlus, Telescope, Wand } from 'lucide-react';
import type { FormEvent } from 'react'; import type { FormEvent } from 'react';
import { isLoggedIn } from '../../lib/jwt'; import { isLoggedIn } from '../../lib/jwt';
import { showLoginPopup } from '../../lib/popup'; import { showLoginPopup } from '../../lib/popup';
@ -52,7 +52,7 @@ export function RoadmapSearch(props: RoadmapSearchProps) {
<input <input
autoFocus autoFocus
type="text" type="text"
placeholder="e.g. Try searching for 'Ansible' or 'DevSecOps'" placeholder="Enter a topic to generate a roadmap for"
className="w-full rounded-md border border-gray-400 px-3 py-2.5 transition-colors focus:border-black focus:outline-none" className="w-full rounded-md border border-gray-400 px-3 py-2.5 transition-colors focus:border-black focus:outline-none"
value={roadmapTopic} value={roadmapTopic}
onInput={(e) => setRoadmapTopic((e.target as HTMLInputElement).value)} onInput={(e) => setRoadmapTopic((e.target as HTMLInputElement).value)}

Loading…
Cancel
Save