Skip to content

Commit 84852b9

Browse files
committed
docs: readme
1 parent 7bcb303 commit 84852b9

File tree

3 files changed

+116
-5
lines changed

3 files changed

+116
-5
lines changed

README.md

+114-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ The File System Access API enables web applications to seamlessly work with file
66

77
Unlike traditional file selection dialogs, the user will be prompted to select a directory, the hook will watch the files in that directory for changes - rerendering when changes are detected.
88

9-
Visit [**use-fs.com**](https://use-fs.app) to try it out.
9+
[**use-fs.com**](https://use-fs.app) to try it out.
1010

11-
> ⚠️ Note: The File System API is not yet fully supported in all browsers yet. Works in Chrome, Edge and Opera.
11+
> ⚠️ Note: The File System API is not supported in all browsers. Works on Desktop in Chrome, Edge and Opera.
1212
1313
## 📡 Install
1414

@@ -22,4 +22,115 @@ pnpm add use-fs
2222

2323
> 👋 Hello there! Follow me [@linesofcode](https://twitter.com/linesofcode) or visit [linesofcode.dev](https://linesofcode.dev) for more cool projects like this one.
2424
25-
## 🚀 Getting Started
25+
## 🚀 Getting Started
26+
27+
```tsx
28+
import { useFs } from "use-fs";
29+
30+
function App() {
31+
const {
32+
onDirectorySelection, // Function to trigger directory selection dialog
33+
files, // Map of file paths to their contents
34+
isBrowserSupported, // Boolean indicating if File System API is supported
35+
onClear, // Function to clear selected directory and stop watching
36+
isProcessing // Boolean indicating if files are being processed
37+
} = useFs({
38+
// Optional array of filter functions to exclude files/directories. By default `commonFilters` is used to ignore .git, node_modules, etc.
39+
filters: [
40+
// Built-in filters available:
41+
// - distFilter (excludes dist/, build/, node_modules/, etc.)
42+
// - gitFilter (respects .gitignore)
43+
// - miscFilter (excludes .DS_Store, etc.)
44+
// Or use commonFilters which includes all of the above
45+
],
46+
47+
// Called when new files are added to the watched directory
48+
onFilesAdded: (newFiles, previousFiles) => {
49+
console.log('Files added:', newFiles);
50+
// newFiles: Map<string, string> - path -> content
51+
// previousFiles: Map<string, string> - previous state
52+
},
53+
54+
// Called when existing files are modified
55+
onFilesChanged: (changedFiles, previousFiles) => {
56+
console.log('Files changed:', changedFiles);
57+
// changedFiles: Map<string, string> - path -> new content
58+
// previousFiles: Map<string, string> - previous state
59+
},
60+
61+
// Called when files are deleted from the watched directory
62+
onFilesDeleted: (deletedFiles, previousFiles) => {
63+
console.log('Files deleted:', deletedFiles);
64+
// deletedFiles: Map<string, string> - path -> last known content
65+
// previousFiles: Map<string, string> - previous state
66+
},
67+
});
68+
69+
if (!isBrowserSupported) {
70+
return <div>Browser not supported</div>;
71+
}
72+
73+
return (
74+
<div>
75+
<button
76+
onClick={onDirectorySelection}
77+
disabled={isProcessing}
78+
>
79+
Select Directory
80+
</button>
81+
82+
<button
83+
onClick={onClear}
84+
disabled={isProcessing}
85+
>
86+
Clear
87+
</button>
88+
89+
{files.size > 0 && (
90+
<div>
91+
<h2>Files ({files.size}):</h2>
92+
<div>
93+
{Array.from(files.entries()).map(([path, content]) => (
94+
<div key={path}>
95+
<h3>{path}</h3>
96+
<pre>{content}</pre>
97+
</div>
98+
))}
99+
</div>
100+
</div>
101+
)}
102+
</div>
103+
);
104+
}
105+
```
106+
107+
The hook provides several key features:
108+
109+
1. **File System Access**: Prompts users to select a directory and maintains access to it.
110+
2. **File Watching**: Continuously monitors selected directory for changes.
111+
3. **Content Management**: Provides access to file contents and updates in real-time.
112+
4. **Filtering**: Built-in and custom filters to exclude unwanted files/directories.
113+
5. **Performance Optimizations**:
114+
- Batched file processing
115+
- Content caching
116+
- Debounced updates
117+
- Efficient change detection
118+
119+
### Props
120+
121+
- `filters?: FilterFn[]` - Array of filter functions to exclude files/directories
122+
- `onFilesAdded?: (newFiles: Map<string, string>, previousFiles: Map<string, string>) => void` - Callback when files are added
123+
- `onFilesChanged?: (changedFiles: Map<string, string>, previousFiles: Map<string, string>) => void` - Callback when files change
124+
- `onFilesDeleted?: (deletedFiles: Map<string, string>, previousFiles: Map<string, string>) => void` - Callback when files are deleted
125+
- `pollInterval?: number` - How often to check for changes (default: 100ms)
126+
- `batchSize?: number` - How many files to process in parallel (default: 50)
127+
- `debounceInterval?: number` - Debounce interval for updates (default: 50ms)
128+
- `fileCacheTtl?: number` - How long to cache file contents (default: 5000ms)
129+
130+
### Return Values
131+
132+
- `onDirectorySelection: () => Promise<void>` - Function to open directory picker
133+
- `onClear: () => void` - Function to stop watching and clear state
134+
- `files: Map<string, string>` - Current map of file paths to contents
135+
- `isProcessing: boolean` - Whether files are being processed
136+
- `isBrowserSupported: boolean` - Whether File System API is supported

docs/src/app/(home)/Demo.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ const App = () => {
169169
.{" "}
170170
</p>
171171
<p className="mt-2 text-sm text-zinc-400 dark:text-zinc-600">
172-
Supported in Chrome, Edge and Opera.
172+
Supported on Desktop in Chrome, Edge and Opera.
173173
</p>
174174
<div className="mt-4">
175175
<InstallCommand packageName="use-fs" />

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "use-fs",
3-
"description": "A set of React hooks to interact with the File System API. Watch a directory for changes and return a map of filepaths & contents when a file is added, modified or removed.",
3+
"description": "A React hook for integrating with the File System Access API. Enables web applications to seamlessly work with files on a user's local system.",
44
"version": "0.0.8",
55
"author": "Tim Mikeladze <[email protected]>",
66
"license": "MIT",

0 commit comments

Comments
 (0)