..
Viewing
repo.tsx
70 lines (62 loc) • 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70 | import React, { FormEvent, useState } from 'react'
import Router from 'next/router'
import { FiGithub } from 'react-icons/fi'
import { FaArrowCircleRight } from 'react-icons/fa'
import useAutoFocus from '../hooks/use-autofocus'
import toast from '../toaster'
const Repo: React.FC = () => {
const repoInputRef = useAutoFocus()
const [repoInput, setRepoInput] = useState('')
const submitRepo = (repoUrl: string) => {
const [, , owner, name] =
repoUrl.match(/^(https?:\/\/github\.com\/)?([^/]+)\/([^/]+).*/) ?? []
if (owner && name) {
Router.push(
`/${owner}/${name}?language=1&language2=1&name=1&&theme=Dark&font=Inter`
)
} else {
toast.warning('Please enter a valid GitHub repository.')
}
}
const onSubmit = (e: FormEvent) => {
e.preventDefault()
submitRepo(repoInput)
}
return (
<main className="hero">
<div className="hero-content">
<div className="flex flex-col gap-6 max-w-xl">
<h1 className="text-5xl font-extrabold text-transparent bg-clip-text bg-gradient-to-br from-secondary to-secondary-focus">
Start with a <span className="inline-block">GitHub repo</span>
</h1>
<div className="card w-full shadow-2xl bg-base-200">
<div className="card-body p-0">
<form onSubmit={onSubmit}>
<div className="form-control">
<div className="input-group">
<span className="pr-0 bg-base-200">
<FiGithub className="w-6 h-6" />
</span>
<input
className="input flex-1 pl-3 font-bold bg-base-200 focus:outline-none"
ref={repoInputRef}
type="text"
value={repoInput}
onChange={(e) => {
setRepoInput(e.target.value)
}}
/>
<button className="btn btn-square btn-primary">
<FaArrowCircleRight className="h-6 w-6" />
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</main>
)
}
export default Repo
|
|