-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMain.cs
279 lines (242 loc) · 9.59 KB
/
Main.cs
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 System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Community.PowerToys.Run.Plugin.DeepLTranslator.Enums;
using Community.PowerToys.Run.Plugin.DeepLTranslator.Models;
using ManagedCommon;
using Microsoft.PowerToys.Settings.UI.Library;
using Wox.Infrastructure.Storage;
using Wox.Plugin;
using static Microsoft.PowerToys.Settings.UI.Library.PluginAdditionalOption;
namespace Community.PowerToys.Run.Plugin.DeepLTranslator
{
public class Main : IPlugin, IPluginI18n, ISavable, IContextMenu, IDisposable, ISettingProvider
{
private const string DeeplAPIKey = nameof(DeeplAPIKey);
private const string RemoveLeftSpaces = nameof(RemoveLeftSpaces);
private static readonly PluginJsonStorage<DeepLTranslatorSetting> Storage = new PluginJsonStorage<DeepLTranslatorSetting>();
private static readonly DeepLTranslatorSetting Settings = Storage.Load();
public static string PluginID => "a26e662baee34320bf1e288543240c66";
public string Name => Properties.Resources.plugin_name;
public string Description => Properties.Resources.plugin_description;
private static string iconPath;
private PluginInitContext context;
private bool disposed;
public void Init(PluginInitContext context)
{
ArgumentNullException.ThrowIfNull(context);
this.context = context;
this.context.API.ThemeChanged += OnThemeChanged;
UpdateIconPath(this.context.API.GetCurrentTheme());
}
public IEnumerable<PluginAdditionalOption> AdditionalOptions => new List<PluginAdditionalOption>()
{
new PluginAdditionalOption()
{
Value = Settings.RemoveLeftSpaces,
PluginOptionType = AdditionalOptionType.Checkbox,
Key = RemoveLeftSpaces,
DisplayLabel = "Remove Left Spaces",
DisplayDescription = Properties.Resources.remove_left_spaces_description,
},
new PluginAdditionalOption()
{
TextValue = Settings.DeeplAPIKey,
PluginOptionType = AdditionalOptionType.Textbox,
Key = DeeplAPIKey,
DisplayLabel = "DeepL API Key",
DisplayDescription = Properties.Resources.deepL_api_key_description,
},
};
public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
{
if (!(selectedResult?.ContextData is TranslationResult))
{
return new List<ContextMenuResult>();
}
List<ContextMenuResult> contextResults = new List<ContextMenuResult>();
TranslationResult result = selectedResult.ContextData as TranslationResult;
if (result != null)
{
contextResults.Add(this.CreateContextMenuEntry(result));
}
else
{
contextResults.Add(CreateContextMenuEntry(
new TranslationResult
{
Translations =
[
new Translation{
DetectedSourceLanguage = LangCodeEnums.ToString(LangCodeEnums.Code.UNK),
Text = Properties.Resources.error_message_during_translation
}
],
TargetLangCode = LangCodeEnums.ToString(LangCodeEnums.Code.UNK)
}));
}
return contextResults;
}
public List<Result> Query(Query query)
{
ArgumentNullException.ThrowIfNull(query);
var (targetCode, text) = InputInterpreter.Parse(query);
if (targetCode == LangCodeEnums.Code.UNK)
{
return new List<Result>();
}
return TranslationHandler.Convert(targetCode, text, Settings)
.Select(this.GetResult)
.ToList();
}
public Control CreateSettingPanel()
{
throw new NotImplementedException();
}
public void Save()
{
Storage.Save();
}
public void UpdateSettings(PowerLauncherPluginSettings settings)
{
if (settings.AdditionalOptions != null)
{
var apiKey = settings.AdditionalOptions.FirstOrDefault(x => x.Key == DeeplAPIKey)?.TextValue ?? string.Empty;
var removeLeftSpace = settings.AdditionalOptions.FirstOrDefault(x => x.Key == RemoveLeftSpaces)?.Value ?? false;
Main.Settings.DeeplAPIKey = apiKey;
Main.Settings.RemoveLeftSpaces = removeLeftSpace;
}
}
public string GetTranslatedPluginTitle()
{
return Properties.Resources.plugin_name;
}
public string GetTranslatedPluginDescription()
{
return Properties.Resources.plugin_description;
}
public void Dispose()
{
this.Dispose(disposing: true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (!this.disposed)
{
if (disposing)
{
if (this.context != null && this.context.API != null)
{
this.context.API.ThemeChanged -= OnThemeChanged;
}
this.disposed = true;
}
}
}
private static void UpdateIconPath(Theme theme)
{
if (theme == Theme.Light || theme == Theme.HighContrastWhite)
{
iconPath = "Images/DeepL_Logo.png";
}
else
{
iconPath = "Images/DeepL_Logo.png";
}
}
private static void OnThemeChanged(Theme oldTheme, Theme newTheme)
{
UpdateIconPath(newTheme);
}
private ContextMenuResult CreateContextMenuEntry(TranslationResult result)
{
return new ContextMenuResult
{
PluginName = this.Name,
Title = Properties.Resources.context_menu_copy,
Glyph = "\xE8C8",
FontFamily = "Segoe MDL2 Assets",
AcceleratorKey = Key.Enter,
Action = _ =>
{
bool ret = false;
var thread = new Thread(() =>
{
try
{
if (result.Translations != null)
{
string resultText = result.Translations[0].Text;
if (Settings.RemoveLeftSpaces)
{
resultText = resultText.TrimStart();
}
Clipboard.SetText(resultText);
ret = true;
}
}
catch (ExternalException)
{
}
});
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
thread.Join();
return ret;
},
};
}
private Result GetResult(TranslationResult result)
{
if (Settings.DeeplAPIKey == string.Empty)
{
return new Result
{
Title = Properties.Resources.invalid_api_key,
IcoPath = iconPath,
Score = 300,
SubTitle = string.Empty,
};
}
return new Result
{
ContextData = result,
Title = $"{result.Translations[0].DetectedSourceLanguage} -> {result.TargetLangCode} : {result.Translations[0].Text}",
IcoPath = iconPath,
Score = 300,
SubTitle = Properties.Resources.copy_to_clipboard,
Action = c =>
{
var ret = false;
var thread = new Thread(() =>
{
try
{
string resultText = result.Translations[0].Text;
if (Settings.RemoveLeftSpaces)
{
resultText = resultText.TrimStart();
}
Clipboard.SetText(resultText);
ret = true;
}
catch (ExternalException e)
{
MessageBox.Show(e.Message);
}
});
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
thread.Join();
return ret;
},
};
}
}
}