mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
72 lines
2.5 KiB
C#
72 lines
2.5 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Wox.Core.Plugin;
|
|
using Wox.Core.UserSettings;
|
|
|
|
namespace Wox.Plugin.PluginIndicator
|
|
{
|
|
public class PluginIndicator : IPlugin
|
|
{
|
|
private List<PluginPair> allPlugins = new List<PluginPair>();
|
|
private PluginInitContext context;
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
List<Result> results = new List<Result>();
|
|
if (string.IsNullOrEmpty(query.RawQuery)) return results;
|
|
|
|
if (allPlugins.Count == 0)
|
|
{
|
|
allPlugins = context.API.GetAllPlugins().Where(o => !PluginManager.IsWildcardPlugin(o.Metadata)).ToList();
|
|
}
|
|
|
|
foreach (PluginMetadata metadata in allPlugins.Select(o => o.Metadata))
|
|
{
|
|
if (metadata.ActionKeyword.StartsWith(query.RawQuery))
|
|
{
|
|
PluginMetadata metadataCopy = metadata;
|
|
var customizedPluginConfig = UserSettingStorage.Instance.CustomizedPluginConfigs.FirstOrDefault(o => o.ID == metadataCopy.ID);
|
|
if (customizedPluginConfig != null && customizedPluginConfig.Disabled)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
Result result = new Result
|
|
{
|
|
Title = metadata.ActionKeyword,
|
|
SubTitle = string.Format("Activate {0} plugin", metadata.Name),
|
|
Score = 100,
|
|
IcoPath = metadata.FullIcoPath,
|
|
Action = (c) =>
|
|
{
|
|
context.API.ChangeQuery(metadataCopy.ActionKeyword + " ");
|
|
return false;
|
|
},
|
|
};
|
|
results.Add(result);
|
|
}
|
|
}
|
|
|
|
results.AddRange(UserSettingStorage.Instance.WebSearches.Where(o => o.ActionWord.StartsWith(query.RawQuery) && o.Enabled).Select(n => new Result()
|
|
{
|
|
Title = n.ActionWord,
|
|
SubTitle = string.Format("Activate {0} web search", n.ActionWord),
|
|
Score = 100,
|
|
IcoPath = "Images/work.png",
|
|
Action = (c) =>
|
|
{
|
|
context.API.ChangeQuery(n.ActionWord + " ");
|
|
return false;
|
|
}
|
|
}));
|
|
|
|
return results;
|
|
}
|
|
|
|
public void Init(PluginInitContext context)
|
|
{
|
|
this.context = context;
|
|
}
|
|
}
|
|
}
|