Refactoring
This commit is contained in:
parent
b26a183624
commit
8051318d25
@ -8,17 +8,31 @@ namespace FakeeDeck.ButtonType
|
||||
{
|
||||
internal class Button
|
||||
{
|
||||
public static string getButton(string Key)
|
||||
public static string getButtonHTML(string icon, string image, string name, string action, Dictionary<string, string> parameters)
|
||||
{
|
||||
return
|
||||
"<div class=\"m-2\">" +
|
||||
" <form style=\"margin-bottom: 0px;\" method=\"post\" action=\"button\\stratogem\">" +
|
||||
" <input type=\"hidden\" name=\"stratogem\" value=>" +
|
||||
" <input style=\"background-size: cover; ; width: 150px;height: 150px;background-color: aquamarine;\" type=\"submit\" value=\"\">" +
|
||||
" </form>" +
|
||||
"</div>";
|
||||
string body = "<div class=\"m-2\">";
|
||||
body += "<form style=\"margin-bottom: 0px;\" method=\"post\" action=\"" + action + "\">";
|
||||
|
||||
foreach (var parameter in parameters)
|
||||
{
|
||||
body += "<input type=\"hidden\" name=\"" + parameter.Key + "\" value=\"" + parameter.Value + "\">";
|
||||
}
|
||||
|
||||
body += "<button type=\"submit\" value=\"submit\" style=\"background-size: cover; " + (!string.IsNullOrEmpty(image) ? "background-image: url('" + image + "');" : "") + " width: 150px;height: 150px; background-color: aquamarine;\" >";
|
||||
body += (!string.IsNullOrEmpty(icon) ? "<i class=\"fa-solid " + icon + "\"></i>" : name);
|
||||
|
||||
body += "</button>";
|
||||
body += "</form>";
|
||||
body += "</div>";
|
||||
return body;
|
||||
}
|
||||
|
||||
public static string getButton(string Key)
|
||||
{
|
||||
return ""; //getButtonHTML(null, "https://docs.itego.cz/uploads/images/system/2022-04/OdRTPJ4iTTInmhdP-jagq7dfjpi2lilfg-imageedit-2-6604933313.gif");
|
||||
|
||||
|
||||
}
|
||||
public static bool invokeAction(string Key)
|
||||
{
|
||||
return false;
|
||||
|
@ -49,13 +49,7 @@ namespace FakeeDeck.ButtonType
|
||||
|
||||
public static string getButton(string Key)
|
||||
{
|
||||
return
|
||||
"<div class=\"m-2\">" +
|
||||
" <form style=\"margin-bottom: 0px;\" method=\"post\" action=\"button\\HelldiversTwoMacro\">" +
|
||||
" <input type=\"hidden\" name=\"stratogem\" value=\"" + Key + "\">" +
|
||||
" <input style=\"background-size: cover; background-image: url('" + stratogemsIcons[Key].ToString() + "'); width: 150px;height: 150px;background-color: aquamarine;\" type=\"submit\" value=\"" + FirstLetterToUpper(Key) + "\">" +
|
||||
" </form>" +
|
||||
"</div>";
|
||||
return getButtonHTML(null, stratogemsIcons[Key].ToString(), Key, "button\\HelldiversTwoMacro", new Dictionary<string, string>() { { "stratogem", Key } });
|
||||
}
|
||||
|
||||
public static bool invokeAction(string stratogem)
|
||||
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace FakeeDeck.ButtonType
|
||||
{
|
||||
internal class MediaMacro
|
||||
internal class MediaMacro : Button
|
||||
{
|
||||
public static Dictionary<string, uint[]> mediaControls = new Dictionary<string, uint[]>
|
||||
{
|
||||
@ -22,15 +22,7 @@ namespace FakeeDeck.ButtonType
|
||||
|
||||
public static string getButton(string Key)
|
||||
{
|
||||
return
|
||||
"<div class=\"m-2\">" +
|
||||
" <form style=\"margin-bottom: 0px;\" method=\"post\" action=\"button\\MediaMacro\">" +
|
||||
" <input type=\"hidden\" name=\"control_action\" value=\"" + Key + "\">" +
|
||||
" <button type=\"submit\" value=\"" + Key + "\" style=\"width: 150px;height: 150px;background-color: aquamarine;\" >" +
|
||||
" <i class=\"fa-solid "+ mediaIcons[Key] +"\"></i>" +
|
||||
" </button>" +
|
||||
" </form>" +
|
||||
"</div>";
|
||||
return getButtonHTML(mediaIcons[Key], null, Key, "button\\MediaMacro", new Dictionary<string, string>() { { "control_action", Key } });
|
||||
}
|
||||
|
||||
public static bool invokeAction(string control_action)
|
||||
|
Loading…
Reference in New Issue
Block a user