mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 08:42:47 +01:00
75 lines
3.1 KiB
C#
75 lines
3.1 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using CefSharp;
|
|
using TweetDuck.Core.Bridge;
|
|
using TweetDuck.Data;
|
|
using TweetDuck.Resources;
|
|
|
|
namespace TweetDuck.Core.Notification{
|
|
sealed class TweetNotification{
|
|
private const string DefaultHeadLayout = @"<html class=""scroll-v os-windows dark txt-size--14"" lang=""en-US"" id=""tduck"" data-td-font=""medium"" data-td-theme=""dark""><head><meta charset=""utf-8""><link href=""https://ton.twimg.com/tweetdeck-web/web/dist/bundle.4b1f87e09d.css"" rel=""stylesheet""><style type='text/css'>body { background: rgb(34, 36, 38) !important }</style>";
|
|
public static readonly ResourceLink AppLogo = new ResourceLink("https://ton.twimg.com/tduck/avatar", ResourceHandler.FromByteArray(Properties.Resources.avatar, "image/png"));
|
|
|
|
public enum Position{
|
|
TopLeft, TopRight, BottomLeft, BottomRight, Custom
|
|
}
|
|
|
|
public enum Size{
|
|
Auto, Custom
|
|
}
|
|
|
|
public string ColumnId { get; }
|
|
public string ChirpId { get; }
|
|
|
|
public string ColumnTitle { get; }
|
|
public string TweetUrl { get; }
|
|
public string QuoteUrl { get; }
|
|
|
|
private readonly string html;
|
|
private readonly int characters;
|
|
|
|
public TweetNotification(string columnId, string chirpId, string title, string html, int characters, string tweetUrl, string quoteUrl){
|
|
this.ColumnId = columnId;
|
|
this.ChirpId = chirpId;
|
|
|
|
this.ColumnTitle = title;
|
|
this.TweetUrl = tweetUrl;
|
|
this.QuoteUrl = quoteUrl;
|
|
|
|
this.html = html;
|
|
this.characters = characters;
|
|
}
|
|
|
|
public int GetDisplayDuration(int value){
|
|
return 2000+Math.Max(1000, value*characters);
|
|
}
|
|
|
|
public string GenerateHtml(string bodyClasses, Control sync){
|
|
string headLayout = TweetDeckBridge.NotificationHeadLayout ?? DefaultHeadLayout;
|
|
string mainCSS = ScriptLoader.LoadResource("styles/notification.css", sync) ?? string.Empty;
|
|
string customCSS = Program.Config.User.CustomNotificationCSS ?? string.Empty;
|
|
|
|
StringBuilder build = new StringBuilder(320 + headLayout.Length + mainCSS.Length + customCSS.Length + html.Length);
|
|
build.Append("<!DOCTYPE html>");
|
|
build.Append(headLayout);
|
|
build.Append("<style type='text/css'>").Append(mainCSS).Append("</style>");
|
|
|
|
if (!string.IsNullOrWhiteSpace(customCSS)){
|
|
build.Append("<style type='text/css'>").Append(customCSS).Append("</style>");
|
|
}
|
|
|
|
build.Append("</head><body class='scroll-styled-v");
|
|
|
|
if (!string.IsNullOrEmpty(bodyClasses)){
|
|
build.Append(' ').Append(bodyClasses);
|
|
}
|
|
|
|
build.Append("'><div class='column' style='width:100%!important;min-height:100vh!important;height:auto!important;overflow:initial!important;'>");
|
|
build.Append(html);
|
|
build.Append("</div></body></html>");
|
|
return build.ToString();
|
|
}
|
|
}
|
|
}
|