Created
July 30, 2024 00:55
-
-
Save sullemanhossam/305aff947413612c4620f8f4fd38ad7a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Box, Text} from 'ink'; | |
import React from 'react'; | |
import {render} from 'ink'; | |
import Gradient from 'ink-gradient'; | |
import BigText from 'ink-big-text'; | |
import packageJson from '../package.json' with {type: 'json'}; | |
// Base class for tasks | |
class Task { | |
constructor(name) { | |
this.name = name; | |
} | |
render() { | |
return <Text>Task not implemented</Text>; | |
} | |
} | |
// Generate Index Task | |
class GenerateIndexTask extends Task { | |
static description = 'Generate an index.html file'; | |
static type = 'string'; | |
//TODO - Generate index.ts / js inside of project root | |
render() { | |
return ( | |
<Text> | |
See ya, <Text color="green">{this.name}</Text> | |
</Text> | |
); | |
} | |
} | |
// Define task options | |
const options = { | |
javascript: { | |
'generate-index': GenerateIndexTask, | |
}, | |
}; | |
function Router({name = 'Stranger', task, type}) { | |
const typeOptions = options[type]; | |
if (!typeOptions) { | |
return <Text color="red">Error: Unknown type "{type}"</Text>; | |
} | |
const TaskClass = typeOptions[task]; | |
if (!TaskClass) { | |
return ( | |
<Text color="red"> | |
Error: Unknown task "{task}" for type "{type}" | |
</Text> | |
); | |
} | |
const taskInstance = new TaskClass(name); | |
return <>{taskInstance.render()}</>; | |
} | |
function Title() { | |
return ( | |
<Gradient name="mind"> | |
<BigText text={packageJson.name} /> | |
</Gradient> | |
); | |
} | |
export default function App(props) { | |
return ( | |
<Box> | |
<Title /> | |
<Router {...props} /> | |
</Box> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment