Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
53105dfcfe | |||
6bd1de8ad9 | |||
60360b44d0 | |||
c27564efa3 | |||
72014130bf | |||
2e857e0d72 | |||
2a35bf61b2 | |||
e62544bd03 |
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
FROM node:21.6
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN npm i
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
CMD ["npm", "run", "start"]
|
@@ -1,4 +1,5 @@
|
|||||||
This is a Buzzword Bingo generator for IT buzzwords, based on [Next.js](https://nextjs.org/), [TailwindCSS](https://tailwindcss.com/) and [DaisyUI](https://daisyui.com/).
|
This is a Buzzword Bingo generator for IT buzzwords, based on [Next.js](https://nextjs.org/), [TailwindCSS](https://tailwindcss.com/) and [DaisyUI](https://daisyui.com/).
|
||||||
|
|
||||||
Icons: [Iconify](https://icon-sets.iconify.design/ic/)
|
Icons: [Iconify](https://icon-sets.iconify.design/ic/)
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
@@ -12,3 +13,5 @@ $ npm run start
|
|||||||
```
|
```
|
||||||
|
|
||||||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||||
|
|
||||||
|
The latest stable build can be found at [https://buzz.datalore.sh](https://buzz.datalore.sh)
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "buzzword-bingo",
|
"name": "buzzword-bingo",
|
||||||
"version": "0.3.1",
|
"version": "0.3.2",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "buzzword-bingo",
|
"name": "buzzword-bingo",
|
||||||
"version": "0.3.1",
|
"version": "0.3.2",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"next": "14.0.1",
|
"next": "14.0.1",
|
||||||
"react": "^18",
|
"react": "^18",
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "buzzword-bingo",
|
"name": "buzzword-bingo",
|
||||||
"version": "0.3.1",
|
"version": "0.3.2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
|
@@ -14,9 +14,9 @@ function FisherYatesShuffle(array:string[]):string[]{
|
|||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function BingoController(){
|
export default function BingoController({buzzwords} : {buzzwords?: string[]}){
|
||||||
const [size, setSize] = React.useState(5);
|
const [size, setSize] = React.useState(5);
|
||||||
const buzzwords = ["Cloud", "Cyber-[Something]", "Distrupt[ive]", "AI", "Meta [Something]", "Gamification", "Web 2.0/3.0", "Industry 4.0", "Internet of Things", "Multiexperience", "Big Data", "Crypto", "[Something] as a service", "Emerging [Something]", "Streamline", "Ecosystem", "Leverage", "Outside the Box", "Pivot", "Strategic", "Agile", "Smart Tech", "Data Warehouse", "Actionable Insights", "Holistic Approach", "Digital Transformation", "Growth Hacking"];
|
if(buzzwords == undefined || buzzwords.length < 1) buzzwords = ["Cloud", "Cyber-[Something]", "Distrupt[ive]", "AI", "Meta [Something]", "Gamification", "Web 2.0/3.0", "Industry 4.0", "Internet of Things", "Multiexperience", "Big Data", "Crypto", "[Something] as a service", "Emerging [Something]", "Streamline", "Ecosystem", "Leverage", "Outside the Box", "Pivot", "Strategic", "Agile", "Smart Tech", "Data Warehouse", "Actionable Insights", "Holistic Approach", "Digital Transformation", "Growth Hacking"];
|
||||||
const [items, setItems] = React.useState(buzzwords);
|
const [items, setItems] = React.useState(buzzwords);
|
||||||
const sizeError = (items.length < size);
|
const sizeError = (items.length < size);
|
||||||
return(
|
return(
|
||||||
@@ -30,7 +30,7 @@ export default function BingoController(){
|
|||||||
<span>4x4</span>
|
<span>4x4</span>
|
||||||
<span>5x5</span>
|
<span>5x5</span>
|
||||||
</div>
|
</div>
|
||||||
<a className="btn btn-xs sm:btn-sm md:btn-md btn-secondary" onClick={() => setItems(FisherYatesShuffle(buzzwords))}>Regenerate</a>
|
<a className="btn btn-xs sm:btn-sm md:btn-md btn-secondary" onClick={() => setItems(FisherYatesShuffle(buzzwords!))}>Regenerate</a>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
{sizeError && <div className="alert alert-warning"><svg xmlns="http://www.w3.org/2000/svg" className="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg><span>Warning: Mismatch between item count and size</span></div>}
|
{sizeError && <div className="alert alert-warning"><svg xmlns="http://www.w3.org/2000/svg" className="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg><span>Warning: Mismatch between item count and size</span></div>}
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
import type { Metadata } from 'next'
|
import type { Metadata } from 'next'
|
||||||
|
import ThemeSwitcher from './components/themeswitcher'
|
||||||
import './globals.css'
|
import './globals.css'
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -13,7 +14,29 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" data-theme="dark">
|
<html lang="en" data-theme="dark">
|
||||||
<body className="bg-base-100 base-content flex flex-col h-screen">{children}</body>
|
<body className="bg-base-100 base-content flex flex-col h-screen">
|
||||||
|
<div className="navbar bg-neutral text-neutral-content">
|
||||||
|
<div className="flex-1">
|
||||||
|
<span><b className="normal-case text-xl">Buzzword Bingo</b><span className="text-xs ml-1">v{process.env.npm_package_version}</span></span>
|
||||||
|
</div>
|
||||||
|
<div className="flex-none">
|
||||||
|
<ul className="menu menu-horizontal px-1">
|
||||||
|
<li>
|
||||||
|
<a href="https://git.datalore.sh/datalore/buzzword-bingo.git" target="_blank">Source Code</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<details>
|
||||||
|
<summary>Theme</summary>
|
||||||
|
<ThemeSwitcher/>
|
||||||
|
</details>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<main className="flex flex-col flex-1">
|
||||||
|
{children}
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
@@ -3,28 +3,6 @@ import ThemeSwitcher from './components/themeswitcher'
|
|||||||
|
|
||||||
export default function Home(){
|
export default function Home(){
|
||||||
return(
|
return(
|
||||||
<>
|
|
||||||
<div className="navbar bg-neutral text-neutral-content">
|
|
||||||
<div className="flex-1">
|
|
||||||
<span><b className="normal-case text-xl">Buzzword Bingo</b><span className="text-xs ml-1">v{process.env.npm_package_version}</span></span>
|
|
||||||
</div>
|
|
||||||
<div className="flex-none">
|
|
||||||
<ul className="menu menu-horizontal px-1">
|
|
||||||
<li>
|
|
||||||
<a href="https://git.datalore.sh/datalore/buzzword-bingo.git" target="_blank">Source Code</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<details>
|
|
||||||
<summary>Theme</summary>
|
|
||||||
<ThemeSwitcher/>
|
|
||||||
</details>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<main className="flex flex-col flex-1">
|
|
||||||
<BingoController/>
|
<BingoController/>
|
||||||
</main>
|
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user