slightly refactor compose box

refactor-compose-box
Nolan Lawson 2018-04-20 08:31:19 -07:00
rodzic e847e54f96
commit e2a1340506
1 zmienionych plików z 13 dodań i 17 usunięć

Wyświetl plik

@ -153,20 +153,16 @@
},
store: () => store,
computed: {
computedClassName: (overLimit, realm, size, postPrivacyKey, isReply) => {
return classname(
'compose-box',
overLimit && 'over-char-limit',
size === 'slim' && 'slim-size',
isReply && postPrivacyKey === 'direct' && 'direct-reply'
)
},
hideAndFadeIn: (hidden) => {
return classname(
'compose-box-fade-in',
hidden && 'hidden'
)
},
computedClassName: (overLimit, realm, size, postPrivacyKey, isReply) => (classname(
'compose-box',
overLimit && 'over-char-limit',
size === 'slim' && 'slim-size',
isReply && postPrivacyKey === 'direct' && 'direct-reply'
)),
hideAndFadeIn: (hidden) => (classname(
'compose-box-fade-in',
hidden && 'hidden'
)),
composeData: ($currentComposeData, realm) => $currentComposeData[realm] || {},
text: (composeData) => composeData.text || '',
media: (composeData) => composeData.media || [],
@ -175,9 +171,9 @@
postPrivacyKey: (composeData, defaultPostPrivacyKey) => composeData.postPrivacy || defaultPostPrivacyKey,
textLength: (text) => measureText(text),
contentWarningLength: (contentWarning) => measureText(contentWarning),
length: (textLength, contentWarningLength, contentWarningShown) => {
return textLength + (contentWarningShown ? contentWarningLength : 0)
},
length: (textLength, contentWarningLength, contentWarningShown) => (
textLength + (contentWarningShown ? contentWarningLength : 0)
),
overLimit: (length) => length > CHAR_LIMIT,
contentWarningShown: (composeData) => composeData.contentWarningShown,
contentWarning: (composeData) => composeData.contentWarning || '',