-
Notifications
You must be signed in to change notification settings - Fork 136
/
postcssRtlOptions.mjs
66 lines (57 loc) · 2.32 KB
/
postcssRtlOptions.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
const CLASS_NAMES_TO_CHECK = [
// Normal message list
'sendbird-message-content',
// Thread message list
'sendbird-thread-list-item-content',
'sendbird-parent-message-info'
];
export default {
prefixSelectorTransformer: (prefix, selector) => {
// To increase specificity https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity
// for certain classnames within .sendbird-conversation__messages context.
// This only applies when the root dir is set as 'rtl' but forceLeftToRightMessageLayout is true.
if (CLASS_NAMES_TO_CHECK.some(cls => selector.includes(cls))) {
return `.sendbird-conversation__messages${prefix} ${selector}`;
}
return `${prefix} ${selector}`;
},
}
// Why we're doing this:
// Let's say a root div element has `dir="rtl"` (with `htmlTextDirection={'rtl'}` prop setting).
/*
<div class="sendbird-root" dir="rtl">
...
// Message list
<div class="sendbird-conversation__messages" dir="ltr">
<div class="emoji-container">
<span class="emoji-inner">😀</span>
</div>
</div>
</div>
*/
// Even though the message list element has dir="ltr" attribute,
// some children elements of the message list would have their styles overridden by the root one with the CSS settings below.
// Why? postcss-rtlcss plugin generates the CSS settings in order of rtl -> ltr.
/*
[dir="rtl"] .sendbird-message-content .emoji-container .emoji-inner {
right: -84px; // Specificity (0.6.0)
}
[dir="ltr"] .sendbird-message-content .emoji-container .emoji-inner {
left: -84px; // Specificity (0.6.0)
}
*/
// If both CSS settings have the same specificity, the one generated first (rtl) will be applied,
// which is not the desired result since we want the `.emoji-inner` element to have the ltr setting.
// To increase the specificity of the ltr setting,
// we can directly connect the classname of the element which has `dir='ltr'` to the children's selector in this way:
/*
.sendbird-conversation__messages[dir="ltr"] .sendbird-message-content .emoji-container .emoji-inner {
left: -84px; // Specificity (0.7.0), will be applied
}
[dir="rtl"] .sendbird-message-content .emoji-container .emoji-inner {
right: -84px; // Specificity (0.6.0), will be ignored
}
[dir="ltr"] .sendbird-message-content .emoji-container .emoji-inner {
left: -84px; // Specificity (0.6.0), will be ignored
}
*/