-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import {readFile} from './readFile' | ||
import {writeFile} from './writeFile' | ||
import { runCommand } from './RunCommand' | ||
import {listDir} from './listDir' | ||
export default { | ||
readFile, | ||
writeFile, | ||
listDir, | ||
runCommand | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import fs from 'fs/promises' | ||
import {join} from 'path' | ||
|
||
export const listDir = async(options:{ | ||
path: string, | ||
done?: (list) => {}, | ||
error?: (err) => {} | ||
}) => { | ||
const path = options.path | ||
const done = options.done || (() => {}) | ||
const error = options.error | ||
|
||
try { | ||
const list = await fs.readdir(join('../../', path)) | ||
done(list) | ||
return list | ||
} catch(err) { | ||
if(error) { | ||
error(err) | ||
} else { | ||
throw err | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import { Node, NodeOutput, NodeParams, filterObject, restoreObject } from 'protoflow'; | ||
import { useColorFromPalette } from 'protoflow/src/diagram/Theme' | ||
import { Folder } from 'lucide-react' | ||
|
||
const ListDir = ({ node = {}, nodeData = {}, children }: any) => { | ||
const color = useColorFromPalette(12) | ||
return ( | ||
<Node icon={Folder} node={node} isPreview={!node.id} title='List Directory' color={color} id={node.id} skipCustom={true}> | ||
<NodeParams id={node.id} params={[{ label: 'Path', field: 'mask-path', type: 'input' }]} /> | ||
<div style={{height: '30px'}} /> | ||
<NodeOutput id={node.id} type={'input'} label={'Done'} vars={['list']} handleId={'mask-done'} /> | ||
<NodeOutput id={node.id} type={'input'} label={'Error'} vars={['err']} handleId={'mask-error'} /> | ||
</Node> | ||
) | ||
} | ||
|
||
export default { | ||
id: 'os2.listDir', | ||
type: 'CallExpression', | ||
category: "OS", | ||
keywords: ['fs', 'os', 'read', 'directory', 'list'], | ||
check: (node, nodeData) => { | ||
return node.type == "CallExpression" && nodeData.to?.startsWith('context.os2.listDir') | ||
}, | ||
getComponent: (node, nodeData, children) => <ListDir node={node} nodeData={nodeData} children={children} />, | ||
filterChildren: filterObject({keys: { | ||
path: 'input', | ||
done: 'output', | ||
error: 'output' | ||
}}), | ||
restoreChildren: restoreObject({keys: { | ||
path: 'input', | ||
done: { params: {'param-done': { key: "list"}}}, | ||
error: { params: { 'param-error': { key: "err"}}} | ||
}}), | ||
getInitialData: () => { | ||
return { | ||
await: true, | ||
to: 'context.os2.listDir', | ||
"mask-path": { | ||
value: "", | ||
kind: "StringLiteral" | ||
} | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import ReadFile from "./ReadFile"; | ||
import WriteFile from './WriteFile'; | ||
import RunCommand from "./RunCommand"; | ||
import ListDir from "./ListDir"; | ||
export default [ | ||
ReadFile, | ||
WriteFile, | ||
ListDir, | ||
RunCommand | ||
] |