Files
PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Main.cs

242 lines
7.8 KiB
C#

// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Threading;
using System.Windows;
using Community.PowerToys.Run.Plugin.ValueGenerator.Helper;
using Community.PowerToys.Run.Plugin.ValueGenerator.Properties;
using ManagedCommon;
using Wox.Infrastructure;
using Wox.Plugin;
using Wox.Plugin.Logger;
namespace Community.PowerToys.Run.Plugin.ValueGenerator
{
public class Main : IPlugin, IPluginI18n, IDisposable
{
public string Name => Resources.plugin_name;
public string Description => Resources.plugin_description;
public static string PluginID => "a26b1bb4dbd911edafa10242ac120002";
private PluginInitContext _context;
private static bool _isLightTheme = true;
private bool _disposed;
private static InputParser _inputParser = new InputParser();
public void Init(PluginInitContext context)
{
context = context ?? throw new ArgumentNullException(paramName: nameof(context));
_context = context;
_context.API.ThemeChanged += OnThemeChanged;
UpdateIconPath(_context.API.GetCurrentTheme());
}
public void Dispose()
{
Dispose(disposing: true);
GC.SuppressFinalize(this);
}
private void OnThemeChanged(Theme currentTheme, Theme newTheme)
{
UpdateIconPath(newTheme);
}
private static void UpdateIconPath(Theme theme)
{
if (theme == Theme.Light || theme == Theme.HighContrastWhite)
{
_isLightTheme = true;
}
else
{
_isLightTheme = false;
}
}
private static string GetIcoPath(bool isWarning = false)
{
var imageName = isWarning ? "Warning" : "ValueGenerator";
if (_isLightTheme)
{
return $"Images/{imageName}.light.png";
}
else
{
return $"Images/{imageName}.dark.png";
}
}
protected virtual void Dispose(bool disposing)
{
if (!_disposed)
{
if (disposing)
{
if (_context != null && _context.API != null)
{
_context.API.ThemeChanged -= OnThemeChanged;
}
_disposed = true;
}
}
}
public string GetTranslatedPluginDescription()
{
return Resources.plugin_description;
}
public string GetTranslatedPluginTitle()
{
return Resources.plugin_name;
}
public List<Result> Query(Query query)
{
ArgumentNullException.ThrowIfNull(query);
var results = new List<Result>();
if (string.IsNullOrWhiteSpace(query?.Search) && !string.IsNullOrEmpty(query?.ActionKeyword))
{
return GetSuggestionResults(query, results);
}
try
{
IComputeRequest computeRequest = _inputParser.ParseInput(query);
var result = GetResult(computeRequest);
if (!string.IsNullOrEmpty(result.Title))
{
results.Add(result);
}
else
{
return results;
}
}
catch (ArgumentException e)
{
results.Add(GetErrorResult(e.Message));
}
catch (FormatException e)
{
Log.Debug(GetTranslatedPluginTitle() + ": " + e.Message, GetType());
if (!string.IsNullOrEmpty(query.ActionKeyword))
{
return GetSuggestionFuzzyResults(query, results);
}
}
return results;
}
private List<Result> GetSuggestionResults(Query query, List<Result> results)
{
foreach (var generatorData in QueryHelper.GeneratorDataList)
{
results.Add(new Result
{
Title = QueryHelper.GetResultTitle(generatorData),
SubTitle = QueryHelper.GetResultSubtitle(generatorData),
IcoPath = GetIcoPath(),
ToolTipData = new ToolTipData(QueryHelper.GetResultTitle(generatorData), QueryHelper.GetResultSubtitle(generatorData)),
QueryTextDisplay = generatorData.Keyword + " ",
Action = c =>
{
_context.API.ChangeQuery($"{query.ActionKeyword} {generatorData.Keyword} ", true);
return false;
},
});
}
return results;
}
private Result GetResult(IComputeRequest request)
{
request.Compute();
return new Result
{
ContextData = request.Result,
Title = request.ResultToString(),
IcoPath = GetIcoPath(),
Score = 300,
SubTitle = request.Description,
Action = c =>
{
var ret = false;
var thread = new Thread(() =>
{
try
{
Clipboard.SetText(request.ResultToString());
ret = true;
}
catch (ExternalException ex)
{
Log.Exception("Copy failed", ex, GetType());
MessageBox.Show(ex.Message, Properties.Resources.copy_failed);
}
});
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
thread.Join();
return ret;
},
};
}
private List<Result> GetSuggestionFuzzyResults(Query query, List<Result> results)
{
foreach (var generatorData in QueryHelper.GeneratorDataList)
{
var matchScore = StringMatcher.FuzzySearch(query.Search.Trim(), generatorData.Keyword).Score;
if (matchScore > 0)
{
results.Add(new Result
{
Title = QueryHelper.GetResultTitle(generatorData),
SubTitle = QueryHelper.GetResultSubtitle(generatorData),
IcoPath = GetIcoPath(),
Score = matchScore,
ToolTipData = new ToolTipData(QueryHelper.GetResultTitle(generatorData), QueryHelper.GetResultSubtitle(generatorData)),
QueryTextDisplay = generatorData.Keyword + " ",
Action = c =>
{
_context.API.ChangeQuery($"{query.ActionKeyword} {generatorData.Keyword} ", true);
return false;
},
});
}
}
return results;
}
private Result GetErrorResult(string errorMessage)
{
return new Result
{
Title = Resources.error_title,
SubTitle = errorMessage,
ToolTipData = new ToolTipData(Resources.error_title, errorMessage),
IcoPath = GetIcoPath(isWarning: true),
Action = _ => { return true; },
};
}
}
}