mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
bd26624ed8
The actual reuseItems is still blocked on a few upstream bugs.
38 lines
1.4 KiB
QML
38 lines
1.4 KiB
QML
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import ".."
|
|
import im.nheko 1.0
|
|
|
|
MatrixText {
|
|
required property string body
|
|
required property bool isOnlyEmoji
|
|
required property bool isReply
|
|
required property string formatted
|
|
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
|
|
|
|
// table border-collapse doesn't seem to work
|
|
text: "
|
|
<style type=\"text/css\">
|
|
a { color:" + Nheko.colors.link + ";}
|
|
code { background-color: " + Nheko.colors.alternateBase + ";}
|
|
table {
|
|
border-width: 1px;
|
|
border-collapse: collapse;
|
|
border-style: solid;
|
|
}
|
|
table th,
|
|
table td {
|
|
bgcolor: " + Nheko.colors.alternateBase + ";
|
|
border-collapse: collapse;
|
|
border: 1px solid " + Nheko.colors.text + ";
|
|
}
|
|
</style>
|
|
" + formatted.replace("<pre>", "<pre style='white-space: pre-wrap; background-color: " + Nheko.colors.alternateBase + "'>").replace("<del>", "<s>").replace("</del>", "</s>").replace("<strike>", "<s>").replace("</strike>", "</s>")
|
|
width: parent ? parent.width : undefined
|
|
height: isReply ? Math.round(Math.min(timelineView.height / 8, implicitHeight)) : undefined
|
|
clip: isReply
|
|
selectByMouse: !Settings.mobileMode && !isReply
|
|
font.pointSize: (Settings.enlargeEmojiOnlyMessages && isOnlyEmoji > 0 && isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
|
|
}
|