mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
169 lines
5.8 KiB
C++
169 lines
5.8 KiB
C++
#include "htmltemplatehelper.h"
|
|
|
|
#include <QDebug>
|
|
|
|
#include <core/markdowneditorconfig.h>
|
|
#include <core/configmgr.h>
|
|
#include <utils/utils.h>
|
|
#include <utils/fileutils.h>
|
|
#include <utils/pathutils.h>
|
|
#include <core/thememgr.h>
|
|
#include <core/vnotex.h>
|
|
|
|
using namespace vnotex;
|
|
|
|
HtmlTemplateHelper::Template HtmlTemplateHelper::s_markdownViewerTemplate;
|
|
|
|
QString WebGlobalOptions::toJavascriptObject() const
|
|
{
|
|
return QStringLiteral("window.vxOptions = {\n")
|
|
+ QString("webPlantUml: %1,\n").arg(Utils::boolToString(m_webPlantUml))
|
|
+ QString("webGraphviz: %1,\n").arg(Utils::boolToString(m_webGraphviz))
|
|
+ QString("constrainImageWidthEnabled: %1,\n").arg(Utils::boolToString(m_constrainImageWidthEnabled))
|
|
+ QString("protectFromXss: %1,\n").arg(Utils::boolToString(m_protectFromXss))
|
|
+ QString("htmlTagEnabled: %1,\n").arg(Utils::boolToString(m_htmlTagEnabled))
|
|
+ QString("autoBreakEnabled: %1,\n").arg(Utils::boolToString(m_autoBreakEnabled))
|
|
+ QString("linkifyEnabled: %1,\n").arg(Utils::boolToString(m_linkifyEnabled))
|
|
+ QString("sectionNumberEnabled: %1\n").arg(Utils::boolToString(m_sectionNumberEnabled))
|
|
+ QStringLiteral("}");
|
|
}
|
|
|
|
static bool isGlobalStyles(const ViewerResource::Resource &p_resource)
|
|
{
|
|
return p_resource.m_name == QStringLiteral("global_styles");
|
|
}
|
|
|
|
// Read "global_styles" from resource and fill the holder with the content.
|
|
static void fillGlobalStyles(QString &p_template, const ViewerResource &p_resource)
|
|
{
|
|
QString styles;
|
|
for (const auto &ele : p_resource.m_resources) {
|
|
if (isGlobalStyles(ele)) {
|
|
if (ele.m_enabled) {
|
|
for (const auto &style : ele.m_styles) {
|
|
// Read the style file content.
|
|
auto styleFile = ConfigMgr::getInst().getUserOrAppFile(style);
|
|
styles += FileUtils::readTextFile(styleFile);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!styles.isEmpty()) {
|
|
p_template.replace(QStringLiteral("/* VX_GLOBAL_STYLES_PLACEHOLDER */"),
|
|
styles);
|
|
}
|
|
}
|
|
|
|
static QString fillStyleTag(const QString &p_styleFile)
|
|
{
|
|
if (p_styleFile.isEmpty()) {
|
|
return "";
|
|
}
|
|
auto url = PathUtils::pathToUrl(p_styleFile);
|
|
return QString("<link rel=\"stylesheet\" type=\"text/css\" href=\"%1\">\n").arg(url.toString());
|
|
}
|
|
|
|
static QString fillScriptTag(const QString &p_scriptFile)
|
|
{
|
|
if (p_scriptFile.isEmpty()) {
|
|
return "";
|
|
}
|
|
auto url = PathUtils::pathToUrl(p_scriptFile);
|
|
return QString("<script type=\"text/javascript\" src=\"%1\"></script>\n").arg(url.toString());
|
|
}
|
|
|
|
static void fillThemeStyles(QString &p_template)
|
|
{
|
|
QString styles;
|
|
const auto &themeMgr = VNoteX::getInst().getThemeMgr();
|
|
|
|
styles += fillStyleTag(themeMgr.getFile(Theme::File::WebStyleSheet));
|
|
styles += fillStyleTag(themeMgr.getFile(Theme::File::HighlightStyleSheet));
|
|
|
|
if (!styles.isEmpty()) {
|
|
p_template.replace(QStringLiteral("<!-- VX_THEME_STYLES_PLACEHOLDER -->"),
|
|
styles);
|
|
}
|
|
}
|
|
|
|
static void fillGlobalOptions(QString &p_template, const WebGlobalOptions &p_opts)
|
|
{
|
|
p_template.replace(QStringLiteral("/* VX_GLOBAL_OPTIONS_PLACEHOLDER */"),
|
|
p_opts.toJavascriptObject());
|
|
}
|
|
|
|
// Read all other resources in @p_resource and fill the holder with proper resource path.
|
|
static void fillResources(QString &p_template, const ViewerResource &p_resource)
|
|
{
|
|
QString styles;
|
|
QString scripts;
|
|
|
|
for (const auto &ele : p_resource.m_resources) {
|
|
if (ele.m_enabled && !isGlobalStyles(ele)) {
|
|
// Styles.
|
|
for (const auto &style : ele.m_styles) {
|
|
auto styleFile = ConfigMgr::getInst().getUserOrAppFile(style);
|
|
styles += fillStyleTag(styleFile);
|
|
}
|
|
|
|
// Scripts.
|
|
for (const auto &script : ele.m_scripts) {
|
|
auto scriptFile = ConfigMgr::getInst().getUserOrAppFile(script);
|
|
scripts += fillScriptTag(scriptFile);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!styles.isEmpty()) {
|
|
p_template.replace(QStringLiteral("<!-- VX_STYLES_PLACEHOLDER -->"),
|
|
styles);
|
|
}
|
|
|
|
if (!scripts.isEmpty()) {
|
|
p_template.replace(QStringLiteral("<!-- VX_SCRIPTS_PLACEHOLDER -->"),
|
|
scripts);
|
|
}
|
|
}
|
|
|
|
const QString &HtmlTemplateHelper::getMarkdownViewerTemplate()
|
|
{
|
|
return s_markdownViewerTemplate.m_template;
|
|
}
|
|
|
|
void HtmlTemplateHelper::updateMarkdownViewerTemplate(const MarkdownEditorConfig &p_config)
|
|
{
|
|
if (p_config.revision() == s_markdownViewerTemplate.m_revision) {
|
|
return;
|
|
}
|
|
|
|
s_markdownViewerTemplate.m_revision = p_config.revision();
|
|
|
|
const auto &viewerResource = p_config.getViewerResource();
|
|
|
|
{
|
|
auto templateFile = ConfigMgr::getInst().getUserOrAppFile(viewerResource.m_template);
|
|
s_markdownViewerTemplate.m_template = FileUtils::readTextFile(templateFile);
|
|
}
|
|
|
|
fillGlobalStyles(s_markdownViewerTemplate.m_template, viewerResource);
|
|
|
|
fillThemeStyles(s_markdownViewerTemplate.m_template);
|
|
|
|
{
|
|
WebGlobalOptions opts;
|
|
opts.m_webPlantUml = p_config.getWebPlantUml();
|
|
opts.m_webGraphviz = p_config.getWebGraphviz();
|
|
opts.m_sectionNumberEnabled = p_config.getSectionNumberEnabled();
|
|
opts.m_constrainImageWidthEnabled = p_config.getConstrainImageWidthEnabled();
|
|
opts.m_protectFromXss = p_config.getProtectFromXss();
|
|
opts.m_htmlTagEnabled = p_config.getHtmlTagEnabled();
|
|
opts.m_autoBreakEnabled = p_config.getAutoBreakEnabled();
|
|
opts.m_linkifyEnabled = p_config.getLinkifyEnabled();
|
|
fillGlobalOptions(s_markdownViewerTemplate.m_template, opts);
|
|
}
|
|
|
|
fillResources(s_markdownViewerTemplate.m_template, viewerResource);
|
|
}
|