mirror of
https://github.com/status-im/status-react.git
synced 2025-02-04 15:16:25 +00:00
Add accessibility to components (#14359)
- chat name text component - quoted message text component
This commit is contained in:
parent
2f4d8accae
commit
1228f4aa26
@ -80,8 +80,9 @@
|
||||
|
||||
(defn display-name-view [display-name contact timestamp]
|
||||
[rn/view {:style {:flex-direction :row}}
|
||||
[text/text {:weight :semi-bold
|
||||
:size :paragraph-1}
|
||||
[text/text {:weight :semi-bold
|
||||
:accessibility-label :chat-name-text
|
||||
:size :paragraph-1}
|
||||
display-name]
|
||||
[verified-or-contact-icon contact]
|
||||
[text/text {:style (style/timestamp)}
|
||||
|
@ -63,17 +63,20 @@
|
||||
:number-of-lines 1
|
||||
:style {:margin-left 4}}
|
||||
(format-reply-author from contact-name current-public-key)]
|
||||
[quo2.text/text {:number-of-lines 1
|
||||
:size :label
|
||||
:weight :regular
|
||||
:style (merge {:ellipsize-mode :tail
|
||||
:text-transform :none
|
||||
:margin-left 4
|
||||
:margin-top 2}
|
||||
(when (or (= constants/content-type-image content-type)
|
||||
(= constants/content-type-sticker content-type)
|
||||
(= constants/content-type-audio content-type))
|
||||
{:color (colors/theme-colors colors/neutral-50 colors/neutral-40)}))}
|
||||
[quo2.text/text
|
||||
{:number-of-lines 1
|
||||
:size :label
|
||||
:weight :regular
|
||||
:accessibility-label :quoted-message
|
||||
:style (merge
|
||||
{:ellipsize-mode :tail
|
||||
:text-transform :none
|
||||
:margin-left 4
|
||||
:margin-top 2}
|
||||
(when (or (= constants/content-type-image content-type)
|
||||
(= constants/content-type-sticker content-type)
|
||||
(= constants/content-type-audio content-type))
|
||||
{:color (colors/theme-colors colors/neutral-50 colors/neutral-40)}))}
|
||||
(case (or content-type contentType)
|
||||
constants/content-type-image "Image"
|
||||
constants/content-type-sticker "Sticker"
|
||||
|
Loading…
x
Reference in New Issue
Block a user