2017-12-01 09:50:20 +00:00
|
|
|
(ns status-im.ui.components.chat-preview
|
|
|
|
(:require [status-im.ui.components.react :as components]
|
2018-01-10 14:20:10 +00:00
|
|
|
[status-im.ui.screens.home.styles :as home.styles]
|
2018-01-18 10:15:37 +00:00
|
|
|
[status-im.utils.core :as utils]))
|
2017-12-01 09:50:20 +00:00
|
|
|
|
|
|
|
(def default-attributes
|
2018-01-10 14:20:10 +00:00
|
|
|
{:style home.styles/last-message-text
|
2017-12-01 09:50:20 +00:00
|
|
|
:number-of-lines 1})
|
|
|
|
|
|
|
|
(defn text [attributes s]
|
|
|
|
(-> default-attributes
|
|
|
|
(utils/deep-merge attributes)
|
|
|
|
(components/text s)))
|