-
Notifications
You must be signed in to change notification settings - Fork 1
/
event_listener.py
132 lines (104 loc) · 4.6 KB
/
event_listener.py
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
import sublime
import sublime_plugin
from ._pieces_lib.pieces_os_client.wrapper.websockets.health_ws import HealthWS
from ._pieces_lib.pieces_os_client.wrapper.basic_identifier.asset import BasicAsset
from .assets.list_assets import PiecesListAssetsCommand
from .assets.ext_map import file_map
from .settings import PiecesSettings
from .misc import PiecesOnboardingCommand
from .copilot.ask_command import copilot
class PiecesEventListener(sublime_plugin.EventListener):
secondary_view = None # Used in the ask to know the secondary view at insert
onboarding_commands_dict = {
"pieces_create_asset":"create",
"pieces_list_assets":"open",
"pieces_ask_question":"ask",
"pieces_search":"search",
"pieces_ask_stream":"copilot",
"pieces_share_asset":"share",
"pieces_explain":"explain"
}
def on_post_text_command(self,window,command_name,args):
self.check_onboarding(command_name)
def on_post_window_command(self,window,command_name,args):
self.check_onboarding(command_name)
def on_text_command(self,view,command_name,args):
if command_name == "paste": # To avoid pasting in the middle of the view of the copilot
self.on_query_context(view,"pieces_copilot_add",True,sublime.OP_EQUAL,True)
elif command_name == "cut":
self.on_query_context(view,"pieces_copilot_remove",True,sublime.OP_EQUAL,True)
def check_onboarding(self,command_name):
if command_name not in self.onboarding_commands_dict:
return
PiecesOnboardingCommand.add_onboarding_settings(**{self.onboarding_commands_dict[command_name] : True})
def on_pre_close(self,view):
sheet_id = view.settings().get("pieces_sheet_id","")
if sheet_id in PiecesListAssetsCommand.sheets_md:
asset_id = PiecesListAssetsCommand.sheets_md[sheet_id]
asset_wrapper = BasicAsset(asset_id)
code = asset_wrapper.raw_content
data = view.substr(sublime.Region(0, view.size()))
if data != code:
sublime.active_window().focus_view(view)
if sublime.ok_cancel_dialog("Do you want to save this snippet to Pieces?", ok_title='Save', title='Save snippet'):
view.window().run_command("pieces_handle_markdown",{"mode": "save","sheet_id":sheet_id,"data":data,"close":False})
del view.settings()["pieces_sheet_id"]
return
sublime.active_window().run_command("pieces_list_assets",{"pieces_asset_id":asset_id})
def on_query_context(self,view,key, operator, operand, match_all):
if key == "save_pieces_asset":
return view.settings().get("pieces_sheet_id")
elif key == "PIECES_GPT_VIEW":
return view.settings().get("PIECES_GPT_VIEW")
elif key == "pieces_copilot_add" or key == "pieces_copilot_remove":
## TRUE -> Means no operation will be done
## False -> Means operation can be done
if view.settings().get("PIECES_GPT_VIEW"):
if not copilot.can_type:
return True # If we can't type then don't accpet operations
# Set the selection at the begining if we are in the middle of a view
if copilot.end_response > view.sel()[0].begin():
copilot.select_end
# Mange the remove to avoid removing the main reponse
if key == "pieces_copilot_remove" and copilot.end_response >= view.sel()[0].begin():
return True
elif key == "pieces_copilot_add" and copilot.end_response > view.sel()[0].begin():
return True
return False # All cheks is done you can enter what you want!
else:
return False
def on_init(self,views):
for view in views:
if view.settings().get("PIECES_GPT_VIEW"):
# Update the conversation to be real-time
# Close the old view and rerender the conversation
view.close()
@staticmethod
def on_deactivated(view):
copilot.secondary_view = view
def on_query_completions(self, view:sublime.View, prefix, locations):
if not PiecesSettings.autocomplete_snippet or not HealthWS.instance.is_loaded:
return
syntax = view.syntax()
if not syntax:
return
classification_enum = file_map.reverse.get(syntax.path)
out = []
for asset in PiecesSettings.api_client.assets():
if asset.classification == classification_enum:
content = asset.raw_content
if prefix.lower() in asset.name.lower().replace(" ","") and prefix != "" and content:
href = sublime.command_url("pieces_show_completion_details",{"asset_id":asset.id})
out.append(
sublime.CompletionItem(
asset.name,
annotation="Pieces",
completion=content,
kind=sublime.KIND_SNIPPET,
details=f"<div><a href='{href}'>More </a></div>")
)
return sublime.CompletionList(out)
class PiecesViewEventListener(sublime_plugin.ViewEventListener):
def on_close(self):
if self.view.settings().get("PIECES_GPT_VIEW"):
copilot.gpt_view = None