scripter-react v1.0.4
Scripter
Run your scripts programmatically with React.
Just me experimenting with custom renderers and learning one thing or two about React.
Scripter is a custom React renderer that allows you to build scripts declaratively using React components. It provides a powerful way to handle network requests, file operations, script execution, and more in a composable manner.
Installation
npm install scripter-react
# or
yarn add scripter-react
# or
pnpm add scripter-react
Local installation
pnpm build && pnpm pack
Scripter comes with a set of Components that I developed for my use cases, but can be expanded by developing your own components for your own use cases (in the ./src/tutorial
folder a nice guide to build your following the architecture), and of course contributions are more than welcomed.
Give it a try
Scaffold a new typescript project
pnpm init && tsc --init
add jsx
option in the compilerOptions
{
jsx: "react-jsx";
}
Add the following scripts to your package.json
{
"start": "ts-node src/index.tsx",
"build": "tsc",
}
install scripter
pnpm add scripter-react
Create a file (./src/index.tsx
) and add the following content
/**
* A simple watcher that executes a script at file change
*
* */
import React from "react";
import {
Log,
LogGroup,
Npm,
NpmRunSuccess,
render,
TaskProvider,
Watch,
WatchSuccess,
} from "scripter-react";
const TsWatcher = () => (
<TaskProvider>
<LogGroup label="TypeScript Build">
<Watch path="./src">
<WatchSuccess>
{(filePath) => {
return (
<>
<Log content={`Changed: ${filePath}`} />
<Npm script="build">
<NpmRunSuccess>
{() => <Log content="✨ Build successful" />}
</NpmRunSuccess>
</Npm>
</>
);
}}
</WatchSuccess>
</Watch>
</LogGroup>
</TaskProvider>
);
render(<TsWatcher />);
Run the file
pnpm start
## Modify or create new files in src directory
Example: Simple Example
Usages can go from simple watchers to more complex ones. Here's an example that helps you clean up old Git branches by checking if they've been merged.
import React, { useEffect, useState } from "react";
import {
render,
TaskProvider,
Log,
LogGroup,
Prompt,
PromptSuccess,
Shell,
ShellSuccess,
Transform,
normalLogger,
} from "scripter-react";
const BranchCleanup = () => {
const [branches, setBranches] = useState<string[]>([]);
useEffect(() => {
if (branches.length > 0) normalLogger(branches);
}, [branches]);
return (
<TaskProvider>
{/* Get all merged branches */}
<Shell command="git branch --merged">
<ShellSuccess>
{(output) => {
return (
<Transform
input={output}
onSuccess={(o: string[]) => setBranches(o)}
transform={(data) =>
data
.split("\n")
.map((b) => b.trim())
.filter(
(b: string) =>
b &&
!b.startsWith("*") &&
b !== "main" &&
b !== "master"
)
}
/>
);
}}
</ShellSuccess>
</Shell>
{/** Use the branches */}
<LogGroup label="Do something with those branches">
<>
<Log content={`Found ${branches.length} merged branches`} />
{branches.length > 0 && (
<Prompt message="Do you want to delete these branches? (yes/no)">
<PromptSuccess>
{(answer) =>
answer.toLowerCase() === "yes" && (
<Shell command={`git branch -d ${branches.join(" ")}`}>
<ShellSuccess>
{() => (
<Log
content={`Cleaned up ${branches.length} branches`}
/>
)}
</ShellSuccess>
</Shell>
)
}
</PromptSuccess>
</Prompt>
)}
</>
</LogGroup>
</TaskProvider>
);
};
render(<BranchCleanup />);
Custom Hooks
Each component may or may not come with its own custom hooks (depends on the implementation).
useFetchState
Access fetch operation state:
const MyComponent = () => {
const { isLoading, error, data } = useFetchState();
// Access fetch state in your component
};
useShellState
Monitor shell command execution:
const ShellStatus = () => {
const { output, isRunning, error } = useShellState();
return isRunning ? <Log content="Running..." /> : <Log content={output} />;
};
useTransformedData
Access transformed data:
const DataTransformer = () => {
const transformedData = useTransformedData();
return <Log content={transformedData} />;
};
usePromptState
Monitor prompt state:
const PromptStatus = () => {
const { input, isWaiting } = usePromptState();
return isWaiting ? (
<Log content="Waiting for input..." />
) : (
<Log content={`Received: ${input}`} />
);
};
Please be gentle. Still fighting with infinite rendering and typescript configs ;) Any help is more than welcomed!