Initial commit

This commit is contained in:
Chris Hunt
2022-12-14 15:03:50 +00:00
parent 501fbdb0e1
commit 99a12e2194
29 changed files with 12835 additions and 0 deletions

19
site/components/App.js Normal file
View File

@@ -0,0 +1,19 @@
function App({ Component, pageProps, app }) {
return (
<div className="w-[245px] h-[88px] transition-all relative cursor-pointer group flex p-2 items-center justify-center bg-slate-100/90 dark:bg-slate-900/90 shadow rounded hover:shadow-xl hover:bg-gradient-to-r hover:from-slate-900 hover:to-cyan-800 hover:text-white">
<div className="w-full h-full">
<div className="show-grid flex h-full items-center">
<div className="kasmcard-img flex h-full mx-4 items-center justify-center">
<img className="w-[50px] max-h-[66px]" src={ 'icons/' + app.image_src} />
</div>
<div className="kasmcard-detail settingPad">
<h5 className="text-base">{ app.friendly_name }</h5>
<p className="text-xs opacity-50">{ app.categories[0] }</p>
</div>
</div>
</div>
</div>
)
}
export default App

View File

@@ -0,0 +1,18 @@
function Bubbles() {
return (
<ul className="bg-bubbles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
)
}
export default Bubbles

View File

@@ -0,0 +1,5 @@
export default function Footer() {
return (
<footer></footer>
)
}

72
site/components/header.js Normal file
View File

@@ -0,0 +1,72 @@
import Bubbles from '../components/Bubbles'
import Link from 'next/link'
import { useRouter } from "next/router";
export default function Header({ searchText, changeSearch }) {
const copyToClipboard = () => {
var textField = document.createElement('textarea')
textField.innerText = listUrl
document.body.appendChild(textField)
textField.select()
document.execCommand('copy')
textField.remove()
alert('URL copied to clipboard')
}
const listUrl = process.env.listUrl;
const router = useRouter();
return (
<header className="relative font-light overflow-hidden bg-gradient-to-tr from-slate-900 to-cyan-800 p-32 py-8 text-white flex justify-between items-center">
<Bubbles />
<div className='relative z-10'>
<div className="text-3xl">{process.env.name}</div>
<div className="text-sm uppercase w-full flex justify-between">
<span className='opacity-70'>A</span>
<span className='opacity-70'>p</span>
<span className='opacity-70'>p</span>
<span className='opacity-70'>l</span>
<span className='opacity-70'>i</span>
<span className='opacity-70'>c</span>
<span className='opacity-70'>a</span>
<span className='opacity-70'>t</span>
<span className='opacity-70'>i</span>
<span className='opacity-70'>o</span>
<span className='opacity-70'>n</span>
<span>&nbsp;</span>
<span className='opacity-40'>D</span>
<span className='opacity-40'>a</span>
<span className='opacity-40'>t</span>
<span className='opacity-40'>a</span>
<span className='opacity-40'>b</span>
<span className='opacity-40'>a</span>
<span className='opacity-40'>s</span>
<span className='opacity-40'>e</span>
</div>
</div>
<nav className='relative z-10 mx-12'>
<Link href="/" className={'p-4 rounded-full border border-solid' + (router.pathname == "/" ? ' border-white/30' : ' border-transparent')}>Library</Link>
<Link href="/addapp" className={'p-4 rounded-full border border-solid' + (router.pathname == "/addapp" ? ' bg-black/10 border-white/30' : ' border-transparent')}>Add App</Link>
</nav>
<div className="grow flex justify-center relative z-10">
<div className='bg-black/10 shadow border border-1 border-white/30 rounded flex w-full max-w-md'>
<input
name="search"
className='bg-transparent shadow-inner text-lg font-light w-full p-4 placeholder:text-white/40'
placeholder='Search for application'
type="text"
value={searchText}
onChange={changeSearch}
/>
</div>
</div>
<button className='p-4 relative z-10 px-5 bg-emerald-600 m-2 rounded items-center text-white/70 flex cursor-pointer' onClick={() => { copyToClipboard() }}>
<span className="mr-3">App Store Link</span>
<svg style={{ height: '14px', fill: '#fff' }} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H288v64H64V224h64V160H64z" /></svg>
</button>
</header >
)
}

14
site/components/layout.js Normal file
View File

@@ -0,0 +1,14 @@
// components/layout.js
import Header from './header'
import Footer from './footer'
export default function Layout({ children, searchText, changeSearch }) {
return (
<>
<Header searchText={searchText} changeSearch={changeSearch} />
<main>{children}</main>
<Footer />
</>
)
}