-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddFolderToProject.py
More file actions
449 lines (345 loc) · 11.1 KB
/
Copy pathAddFolderToProject.py
File metadata and controls
449 lines (345 loc) · 11.1 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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
import os # Added import statement for "os"
import sublime
import sublime_plugin
def plugin_loaded():
"""
Function called when the plugin is loaded.
It initializes the global settings variable by
loading the "AddFolderToProject.sublime-settings" file.
"""
global settings
settings = sublime.load_settings("AddFolderToProject.sublime-settings")
class Folder:
"""
Class representing a folder in the project.
"""
def __init__(self, window):
self.window = window
def add(self, dir_path):
"""
Add a folder to the project.
Args:
dir_path (str): The path of the folder to add.
"""
project_data = self.window.project_data()
folder = {
"follow_symlinks": True,
"path": dir_path,
}
try:
folders = project_data["folders"]
for current_folder in folders:
if current_folder["path"] == dir_path:
return
folders.append(folder)
except: # noqa: E722
folders = [folder]
if project_data is None:
project_data = {}
project_data["folders"] = folders
self.window.set_project_data(project_data)
folders = settings.get("add_folder_to_project_folders")
if dir_path not in folders:
SaveFolderInSettings.run(self, dir_path)
def remove(self, dirPath):
"""
Remove a folder from the project.
Args:
dirPath (str): The path of the folder to remove.
Returns:
bool: True if the folder was successfully removed, False otherwise.
"""
project_data = self.window.project_data()
index = 0
for folder in project_data["folders"]:
if folder["path"]:
if os.path.samefile(dirPath, folder["path"]):
del project_data["folders"][index]
self.window.set_project_data(project_data)
return True
index = index + 1
def exists(self, dirPath):
"""
Check if a folder exists in the project.
Args:
dirPath (str): The path of the folder to check.
Returns:
bool: True if the folder exists in the project, False otherwise.
"""
project_data = self.window.project_data()
if project_data:
for folder in project_data["folders"]:
if folder["path"] and os.path.samefile(
dirPath, folder["path"]
): # noqa: E501
return True
return False
def list(self):
"""
Get a list of folders in the project.
Returns:
list: A list of folder paths.
"""
folders = []
folders.append("-- Add manually a directory --")
active_folders = Folder.active_list(self)
file_path = self.window.active_view().file_name()
if file_path:
dir_path = os.path.dirname(file_path)
while os.path.isdir(dir_path):
folders.append(dir_path)
position = dir_path.rfind("\\")
dir_path = dir_path[:position]
absolute_folders = settings.get("add_folder_to_project_folders")
recursive_folders = settings.get(
"add_folder_to_project_recursive_folders"
) # noqa: E501
if absolute_folders is not None:
folders += [
folder for folder in absolute_folders if folder not in folders
] # noqa: E501
if recursive_folders is not None:
for folder in recursive_folders:
if not folder.endswith("/"):
folder += "/"
folders += [
folder + name
for name in os.listdir(folder)
if os.path.isdir(os.path.join(folder, name))
and (folder + name) not in folders
]
folders = [
folder for folder in folders if folder not in active_folders
] # noqa: E501
return folders
def active_list(self):
"""
Get a list of active folders in the project.
Returns:
list: A list of active folder paths.
"""
folders = []
project_data = self.window.project_data()
try:
for folder in project_data["folders"]:
folders.append(folder["path"])
except: # noqa: E722
folders = []
return folders
class AddFolderToProject(sublime_plugin.WindowCommand):
"""
"Add Folder to Project"
Command to add a folder to the project. "Add Folder to Project"
"""
folders = []
def run(self):
"""
Run the command.
"""
self.folders = Folder.list(self)
if not self.folders:
AddCustomFolderToProject.run(self)
return
global my_self
my_self = self
self.window.show_quick_panel(
items=self.folders,
on_select=AddFolderToProject.on_select,
on_highlight=None,
flags=32,
selected_index=-1,
placeholder="AddFolderToProject: Select a folder to add...",
)
@staticmethod
def on_select(index):
"""
Callback function when a folder is selected.
Args:
index (int): The index of the selected folder.
"""
if index == -1:
return
dir_path = my_self.folders[index]
if dir_path == "-- Add manually a directory --":
AddCustomFolderToProject.run(my_self)
return
Folder.add(my_self, dir_path)
class RemoveFolderFromProject(sublime_plugin.WindowCommand):
"""
"Remove Folder from Project"
Command to remove a folder from the project.
"""
folders = []
def run(self):
"""
Run the command.
"""
self.folders = Folder.active_list(self)
if not self.folders:
return
global my_self
my_self = self
self.window.show_quick_panel(
items=self.folders,
on_select=RemoveFolderFromProject.on_select,
on_highlight=None,
flags=32,
selected_index=-1,
placeholder="AddFolderToProject: Select a folder to remove...",
)
@staticmethod
def on_select(index):
"""
Callback function when a folder is selected.
Args:
index (int): The index of the selected folder.
"""
if index == -1:
return
dir_path = my_self.folders[index]
Folder.remove(my_self, dir_path)
class AddCustomFolderToProject(sublime_plugin.WindowCommand):
"""
"Add Custom Folder To Project"
Command to add a custom folder to the project.
"""
def run(self):
"""
Run the command.
"""
file_path = self.window.active_view().file_name()
if not file_path:
dir_path = ""
else:
dir_path = os.path.dirname(file_path)
global my_self
my_self = self
self.window.show_input_panel(
caption="Add Folder:",
initial_text=dir_path,
on_done=AddCustomFolderToProject.on_done,
on_change=None,
on_cancel=None,
)
@staticmethod
def on_done(dir_path):
"""
Callback function when the folder path is entered.
Args:
dir_path (str): The path of the folder to add.
"""
Folder.add(my_self, dir_path)
class AddCurrentFolderToProject(sublime_plugin.WindowCommand):
"""
"Add this Folder to Project"
Command to add the current folder to the project.
"""
def run(self):
"""
Run the command.
"""
file_path = self.window.active_view().file_name()
if not file_path:
return
dir_path = os.path.dirname(file_path)
if dir_path:
Folder.add(self, dir_path)
class RemoveCurrentFolderFromProject(sublime_plugin.WindowCommand):
"""
"Remove this Folder from Project"
Command to remove the current folder from the project.
"""
def run(self):
"""
Run the command.
"""
file_path = self.window.active_view().file_name()
if not file_path:
return
dir_path = os.path.dirname(file_path)
if dir_path:
Folder.remove(self, dir_path)
class SaveFolderInSettings(sublime_plugin.WindowCommand):
"""
Command to save a folder in the settings.
"""
dir_path = ""
def run(self, dir_path):
"""
Run the command.
Args:
dir_path (str): The path of the folder to save.
"""
self.dir_path = dir_path
global my_self
my_self = self
self.window.show_quick_panel(
items=["yes", "no"],
on_select=SaveFolderInSettings.on_select,
flags=32,
selected_index=-1,
on_highlight=None,
placeholder="AddFolderToProject: Should I save the new folder in the settings?", # noqa: E501
)
@staticmethod
def on_select(index):
"""
Callback function when an option is selected.
Args:
index (int): The index of the selected option.
"""
if index == -1:
return
if index == 1:
return
folders = settings.get("add_folder_to_project_folders")
folders.append(my_self.dir_path)
settings.set("add_folder_to_project_folders", folders)
sublime.save_settings("AddFolderToProject.sublime-settings")
class CopyFilePath(sublime_plugin.WindowCommand):
"""
"Copy File Path"
Command to copy the file path to the clipboard.
"""
def run(self):
"""
Run the command.
"""
file_path = self.window.active_view().file_name()
sublime.set_clipboard(file_path)
class CopyDirPath(sublime_plugin.WindowCommand):
"""
"Copy Dir Path"
Command to copy the directory path to the clipboard.
"""
def run(self):
"""
Run the command.
"""
file_path = self.window.active_view().file_name()
dir_path = os.path.dirname(file_path)
if dir_path:
sublime.set_clipboard(dir_path)
class CreateProjectFromFile(sublime_plugin.WindowCommand):
"""
"Create Project From File"
Command to create a project from a file.
"""
def run(self, paths=[]):
"""
Run the command.
Args:
paths (list): List of file paths.
"""
import subprocess
items = []
executable_path = sublime.executable_path()
if sublime.platform() == "osx":
app_path = executable_path[: executable_path.rfind(".app/") + 5]
executable_path = app_path + "Contents/SharedSupport/bin/subl"
items.append(executable_path)
file_path = self.window.active_view().file_name()
dir_path = os.path.dirname(file_path)
items.append(dir_path)
items.append(file_path)
subprocess.Popen(items)