You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configures options for the editor and its file tree. Editor can be hidden by providing `false`.
138
+
Optionally you can hide just file tree by providing `fileTree: false`.
139
+
140
+
File tree can be set to allow file editing from right clicks by setting `fileTree.allowEdits: true`.
141
+
142
+
<PropertyTableinheritedtype={'Editor'} />
143
+
144
+
The `Editor` type has the following shape:
145
+
146
+
```ts
147
+
typeEditor=
148
+
|false
149
+
| { editor: { allowEdits:boolean } }
150
+
151
+
```
152
+
153
+
Example values:
154
+
155
+
```yaml
156
+
editor: false # Editor is hidden
157
+
158
+
editor: # Editor is visible
159
+
fileTree: false # File tree is hidden
160
+
161
+
editor: # Editor is visible
162
+
fileTree: # File tree is visible
163
+
allowEdits: true # User can add new files and folders from the file tree
164
+
```
139
165
140
166
##### `previews`
141
167
Configure which ports should be used for the previews allowing you to align the behavior with your demo application's dev server setup. If not specified, the lowest port will be used.
Copy file name to clipboardexpand all lines: docs/tutorialkit.dev/src/content/docs/reference/react-components.mdx
+11
Original file line number
Diff line number
Diff line change
@@ -107,12 +107,23 @@ A component to list files in a tree view.
107
107
108
108
*`onFileSelect: (file: string) => void` - A callback that will be called when a file is clicked. The path of the file that was clicked will be passed as an argument.
109
109
110
+
*`onFileChange: (event: FileChangeEvent) => void` - An optional callback that will be called when a new file or folder is created from the file tree's context menu. When callback is not passed, file tree does not allow adding new files.
111
+
```ts
112
+
interfaceFileChangeEvent {
113
+
type:'FILE'|'FOLDER';
114
+
method:'ADD'|'REMOVE'|'RENAME';
115
+
value:string;
116
+
}
117
+
```
118
+
110
119
*`hideRoot: boolean` - Whether or not to hide the root directory in the tree. Defaults to `false`.
111
120
112
121
*`hiddenFiles: (string | RegExp)[]` - A list of file paths that should be hidden from the tree.
113
122
114
123
*`scope?: string` - Every file path that does not start with this scope will be hidden.
115
124
125
+
*`i18n?: object` - Texts for file tree's components.
126
+
116
127
*`className?: string` - A class name to apply to the root element of the component.
0 commit comments