mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 17:35:54 +03:00
Merge refactoring
This commit is contained in:
parent
86667a6d8a
commit
24f1262005
2 changed files with 49 additions and 0 deletions
|
@ -58,5 +58,6 @@ class MatrixHtmlPluginConfigure @Inject constructor(private val context: Context
|
|||
.addHandler(FontTagHandler())
|
||||
.addHandler(MxLinkTagHandler(GlideApp.with(context), context, avatarRenderer, session))
|
||||
.addHandler(MxReplyTagHandler())
|
||||
.addHandler(SpanHandler(context))
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
/*
|
||||
* Copyright 2019 New Vector Ltd
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package im.vector.riotx.features.html
|
||||
|
||||
import android.content.Context
|
||||
import im.vector.riotx.R
|
||||
import im.vector.riotx.features.themes.ThemeUtils
|
||||
import io.noties.markwon.MarkwonVisitor
|
||||
import io.noties.markwon.SpannableBuilder
|
||||
import io.noties.markwon.html.HtmlTag
|
||||
import io.noties.markwon.html.MarkwonHtmlRenderer
|
||||
import io.noties.markwon.html.TagHandler
|
||||
|
||||
class SpanHandler(context: Context) : TagHandler() {
|
||||
|
||||
override fun supportedTags() = listOf("span")
|
||||
|
||||
private val spoilerBgColor: Int = ThemeUtils.getColor(context, R.attr.vctr_markdown_block_background_color)
|
||||
|
||||
private val textColor: Int = ThemeUtils.getColor(context, R.attr.riotx_text_primary)
|
||||
|
||||
override fun handle(visitor: MarkwonVisitor, renderer: MarkwonHtmlRenderer, tag: HtmlTag) {
|
||||
val mxSpoiler = tag.attributes()["data-mx-spoiler"]
|
||||
if (mxSpoiler != null) {
|
||||
SpannableBuilder.setSpans(
|
||||
visitor.builder(),
|
||||
SpoilerSpan(spoilerBgColor, textColor),
|
||||
tag.start(),
|
||||
tag.end()
|
||||
)
|
||||
} else {
|
||||
// default thing?
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue