mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
64cd9c0dd2
Fix ControlPanel plugin search bug
107 lines
3.7 KiB
C#
107 lines
3.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Wox.Infrastructure;
|
|
|
|
namespace Wox.Plugin.ControlPanel
|
|
{
|
|
public class Main : IPlugin, IPluginI18n
|
|
{
|
|
private PluginInitContext context;
|
|
private List<ControlPanelItem> controlPanelItems = new List<ControlPanelItem>();
|
|
private string iconFolder;
|
|
private string fileType;
|
|
|
|
public void Init(PluginInitContext context)
|
|
{
|
|
this.context = context;
|
|
controlPanelItems = ControlPanelList.Create(48);
|
|
iconFolder = Path.Combine(context.CurrentPluginMetadata.PluginDirectory, @"Images\ControlPanelIcons\");
|
|
fileType = ".bmp";
|
|
|
|
if (!Directory.Exists(iconFolder))
|
|
{
|
|
Directory.CreateDirectory(iconFolder);
|
|
}
|
|
|
|
|
|
foreach (ControlPanelItem item in controlPanelItems)
|
|
{
|
|
if (!File.Exists(iconFolder + item.GUID + fileType) && item.Icon != null)
|
|
{
|
|
item.Icon.ToBitmap().Save(iconFolder + item.GUID + fileType);
|
|
}
|
|
}
|
|
}
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
List<Result> results = new List<Result>();
|
|
|
|
foreach (var item in controlPanelItems)
|
|
{
|
|
item.Score = Score(item, query.Search);
|
|
if (item.Score > 0)
|
|
{
|
|
var result = new Result
|
|
{
|
|
Title = item.LocalizedString,
|
|
SubTitle = item.InfoTip,
|
|
Score = item.Score,
|
|
IcoPath = Path.Combine(context.CurrentPluginMetadata.PluginDirectory,
|
|
@"Images\\ControlPanelIcons\\" + item.GUID + fileType),
|
|
Action = e =>
|
|
{
|
|
try
|
|
{
|
|
Process.Start(item.ExecutablePath);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
//Silently Fail for now.. todo
|
|
}
|
|
return true;
|
|
}
|
|
};
|
|
results.Add(result);
|
|
}
|
|
}
|
|
|
|
List<Result> panelItems = results.OrderByDescending(o => o.Score).Take(5).ToList();
|
|
return panelItems;
|
|
}
|
|
|
|
private int Score(ControlPanelItem item, string query)
|
|
{
|
|
var scores = new List<int> {0};
|
|
if (!string.IsNullOrEmpty(item.LocalizedString))
|
|
{
|
|
var score1 = StringMatcher.FuzzySearch(query, item.LocalizedString).ScoreAfterSearchPrecisionFilter();
|
|
var score2 = StringMatcher.ScoreForPinyin(item.LocalizedString, query);
|
|
scores.Add(score1);
|
|
scores.Add(score2);
|
|
}
|
|
if (!string.IsNullOrEmpty(item.InfoTip))
|
|
{
|
|
var score1 = StringMatcher.FuzzySearch(query, item.InfoTip).ScoreAfterSearchPrecisionFilter();
|
|
var score2 = StringMatcher.ScoreForPinyin(item.InfoTip, query);
|
|
scores.Add(score1);
|
|
scores.Add(score2);
|
|
}
|
|
return scores.Max();
|
|
}
|
|
|
|
public string GetTranslatedPluginTitle()
|
|
{
|
|
return context.API.GetTranslation("wox_plugin_controlpanel_plugin_name");
|
|
}
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
{
|
|
return context.API.GetTranslation("wox_plugin_controlpanel_plugin_description");
|
|
}
|
|
}
|
|
} |