-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathVFSStateService.cs
More file actions
279 lines (246 loc) · 7.13 KB
/
Copy pathVFSStateService.cs
File metadata and controls
279 lines (246 loc) · 7.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
using Atypical.VirtualFileSystem.Core;
using Atypical.VirtualFileSystem.Core.Contracts;
using Atypical.VirtualFileSystem.DemoBlazorApp.Models;
namespace Atypical.VirtualFileSystem.DemoBlazorApp.Services;
public class VFSStateService
{
private IVirtualFileSystemNode? _selectedNode;
private bool _isLoading;
private string? _lastErrorMessage;
private string _currentPath = "vfs://";
private ViewMode _viewMode = ViewMode.Grid;
private SortOption _sortBy = SortOption.Name;
private bool _sortAscending = true;
private bool _showPreviewPanel = true;
// Selected node
public IVirtualFileSystemNode? SelectedNode
{
get => _selectedNode;
set
{
if (_selectedNode != value)
{
_selectedNode = value;
OnSelectedNodeChanged?.Invoke(value);
NotifyStateChanged();
}
}
}
// Loading state
public bool IsLoading
{
get => _isLoading;
set
{
if (_isLoading != value)
{
_isLoading = value;
NotifyStateChanged();
}
}
}
// Error handling
public string? LastErrorMessage
{
get => _lastErrorMessage;
set
{
if (_lastErrorMessage != value)
{
_lastErrorMessage = value;
OnErrorChanged?.Invoke(value);
NotifyStateChanged();
}
}
}
// Current directory path (for navigation)
public string CurrentPath
{
get => _currentPath;
set
{
if (_currentPath != value)
{
_currentPath = value;
OnCurrentPathChanged?.Invoke();
NotifyStateChanged();
}
}
}
/// <summary>The VFS root path scheme.</summary>
public const string RootPath = "vfs://";
/// <summary>
/// Builds the relative app URL that represents a directory, e.g.
/// "vfs://docs/src" -> "/?path=docs/src" (root -> "/"). Segments are
/// individually escaped so the hierarchy stays readable in the address bar.
/// </summary>
public static string ToFolderUrl(string? vfsPath)
{
var relative = StripScheme(vfsPath);
if (string.IsNullOrEmpty(relative))
return "/";
var escaped = string.Join("/", relative.Split('/').Select(Uri.EscapeDataString));
return $"/?path={escaped}";
}
/// <summary>
/// Converts a "path" query value back into a full VFS path, e.g.
/// "docs/src" -> "vfs://docs/src" (null/empty -> "vfs://").
/// </summary>
public static string FromQueryPath(string? queryPath)
{
var relative = (queryPath ?? string.Empty).Replace('\\', '/').Trim('/');
return string.IsNullOrEmpty(relative) ? RootPath : $"{RootPath}{relative}";
}
private static string StripScheme(string? vfsPath)
{
var value = vfsPath ?? string.Empty;
if (value.StartsWith(RootPath, StringComparison.Ordinal))
value = value[RootPath.Length..];
return value.Trim('/');
}
// View preferences
public ViewMode ViewMode
{
get => _viewMode;
set
{
if (_viewMode != value)
{
_viewMode = value;
OnViewModeChanged?.Invoke();
NotifyStateChanged();
}
}
}
public SortOption SortBy
{
get => _sortBy;
set
{
if (_sortBy != value)
{
_sortBy = value;
OnSortChanged?.Invoke();
NotifyStateChanged();
}
}
}
public bool SortAscending
{
get => _sortAscending;
set
{
if (_sortAscending != value)
{
_sortAscending = value;
OnSortChanged?.Invoke();
NotifyStateChanged();
}
}
}
public bool ShowPreviewPanel
{
get => _showPreviewPanel;
set
{
if (_showPreviewPanel != value)
{
_showPreviewPanel = value;
NotifyStateChanged();
}
}
}
// Multi-select
private readonly HashSet<string> _selectedItems = [];
public IReadOnlySet<string> SelectedItems => _selectedItems;
public void SelectItem(string path, bool addToSelection = false)
{
if (!addToSelection)
{
_selectedItems.Clear();
}
_selectedItems.Add(path);
OnSelectionChanged?.Invoke();
NotifyStateChanged();
}
public void DeselectItem(string path)
{
_selectedItems.Remove(path);
OnSelectionChanged?.Invoke();
NotifyStateChanged();
}
public void ToggleItemSelection(string path)
{
if (_selectedItems.Contains(path))
_selectedItems.Remove(path);
else
_selectedItems.Add(path);
OnSelectionChanged?.Invoke();
NotifyStateChanged();
}
public void ClearSelection()
{
_selectedItems.Clear();
OnSelectionChanged?.Invoke();
NotifyStateChanged();
}
public bool IsItemSelected(string path) => _selectedItems.Contains(path);
// Starred/favorite items
private readonly HashSet<string> _starredPaths = [];
public IReadOnlySet<string> StarredPaths => _starredPaths;
public void ToggleStar(string path)
{
if (_starredPaths.Contains(path))
_starredPaths.Remove(path);
else
_starredPaths.Add(path);
OnItemStarred?.Invoke(path);
NotifyStateChanged();
}
public bool IsStarred(string path) => _starredPaths.Contains(path);
// Events
public event Action<IVirtualFileSystemNode?>? OnSelectedNodeChanged;
public event Action? OnDataChanged;
public event Action? OnStateChanged;
public event Action<string?>? OnErrorChanged;
public event Action? OnCurrentPathChanged;
public event Action? OnViewModeChanged;
public event Action? OnSortChanged;
public event Action? OnSelectionChanged;
public event Action<string>? OnItemStarred;
public void NotifyDataChanged()
{
OnDataChanged?.Invoke();
NotifyStateChanged();
}
public void NotifyStateChanged()
{
OnStateChanged?.Invoke();
}
public void ClearError()
{
LastErrorMessage = null;
}
public void SetError(string errorMessage)
{
LastErrorMessage = errorMessage;
}
// Navigation helper
public void NavigateTo(string path)
{
CurrentPath = path;
ClearSelection();
}
public void NavigateUp()
{
if (CurrentPath == "vfs://" || CurrentPath == "vfs:/")
return;
var parentPath = System.IO.Path.GetDirectoryName(CurrentPath.TrimEnd('/'))?.Replace('\\', '/');
if (string.IsNullOrEmpty(parentPath))
parentPath = "vfs://";
else if (!parentPath.StartsWith("vfs://"))
parentPath = "vfs:/" + parentPath.TrimStart('/');
CurrentPath = parentPath;
ClearSelection();
}
}