helixevo 0.2.37 → 0.2.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -34,7 +34,7 @@ export default function ProjectsClient({ profiles, skillCount }: { profiles: Pro
|
|
|
34
34
|
const [inputMode, setInputMode] = useState<InputMode>('local')
|
|
35
35
|
const [projectPath, setProjectPath] = useState('')
|
|
36
36
|
const [githubUrl, setGithubUrl] = useState('')
|
|
37
|
-
const [cloneDir, setCloneDir] = useState('~/
|
|
37
|
+
const [cloneDir, setCloneDir] = useState('~/HelixEvo')
|
|
38
38
|
const [setupState, setSetupState] = useState<SetupState>('idle')
|
|
39
39
|
const [output, setOutput] = useState('')
|
|
40
40
|
const outputRef = useRef<HTMLPreElement | null>(null)
|
|
@@ -222,8 +222,16 @@ export default function ProjectsClient({ profiles, skillCount }: { profiles: Pro
|
|
|
222
222
|
background: 'var(--bg-input)', color: 'var(--text)',
|
|
223
223
|
}}
|
|
224
224
|
/>
|
|
225
|
-
<div style={{ fontSize: 10, color: 'var(--text-muted)', marginTop:
|
|
226
|
-
|
|
225
|
+
<div style={{ fontSize: 10, color: 'var(--text-muted)', marginTop: 6, display: 'flex', alignItems: 'center', gap: 6, flexWrap: 'wrap' }}>
|
|
226
|
+
<span>Quick select:</span>
|
|
227
|
+
{['.', '~/Documents/GitHub', '~/Desktop', '~/HelixEvo', ...profiles.map(p => p.path).filter(p => !['.', '~/Documents/GitHub', '~/Desktop', '~/HelixEvo'].includes(p))].map(p => (
|
|
228
|
+
<button key={p} onClick={() => setProjectPath(p)} style={{
|
|
229
|
+
padding: '1px 8px', fontSize: 10, background: projectPath === p ? 'var(--green-light)' : 'var(--bg-section)',
|
|
230
|
+
border: `1px solid ${projectPath === p ? 'var(--green-border)' : 'var(--border-subtle)'}`,
|
|
231
|
+
borderRadius: 4, cursor: 'pointer', color: projectPath === p ? 'var(--green)' : 'var(--text-dim)',
|
|
232
|
+
fontFamily: 'var(--font-mono)',
|
|
233
|
+
}}>{p}</button>
|
|
234
|
+
))}
|
|
227
235
|
</div>
|
|
228
236
|
</div>
|
|
229
237
|
{setupState !== 'analyzing' ? (
|
package/package.json
CHANGED