Skip to content

Commit 710e271

Browse files
committed
refactor: sync CSS variable name with stream-chat-css
1 parent e9748ea commit 710e271

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/components/Attachment/__tests__/WaveProgressBar.test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('WaveProgressBar', () => {
3535
it('renders with default number of bars', () => {
3636
render(<WaveProgressBar seek={jest.fn()} waveformData={originalSample} />);
3737
const root = screen.getByTestId(BAR_ROOT_TEST_ID);
38-
expect(root.style.getPropertyValue('--str-chat__voice-recording-amplitude-bar-gap')).toBe(
38+
expect(root.style.getPropertyValue('--str-chat__voice-recording-amplitude-bar-gap-width')).toBe(
3939
'1px',
4040
);
4141
const bars = screen.getAllByTestId(AMPLITUDE_BAR_TEST_ID);
@@ -58,7 +58,7 @@ describe('WaveProgressBar', () => {
5858
/>,
5959
);
6060
const root = screen.getByTestId(BAR_ROOT_TEST_ID);
61-
expect(root.style.getPropertyValue('--str-chat__voice-recording-amplitude-bar-gap')).toBe(
61+
expect(root.style.getPropertyValue('--str-chat__voice-recording-amplitude-bar-gap-width')).toBe(
6262
'5px',
6363
);
6464
const bars = screen.getAllByTestId(AMPLITUDE_BAR_TEST_ID);
@@ -80,7 +80,7 @@ describe('WaveProgressBar', () => {
8080
activeObserver.cb([{ contentRect: { width: 21 } }]);
8181
});
8282
const root = screen.getByTestId(BAR_ROOT_TEST_ID);
83-
expect(root.style.getPropertyValue('--str-chat__voice-recording-amplitude-bar-gap')).toBe(
83+
expect(root.style.getPropertyValue('--str-chat__voice-recording-amplitude-bar-gap-width')).toBe(
8484
'1px',
8585
);
8686
const bars = screen.getAllByTestId(AMPLITUDE_BAR_TEST_ID);

src/components/Attachment/__tests__/__snapshots__/WaveProgressBar.test.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ exports[`WaveProgressBar is rendered with zero progress by default if waveform d
66
class="str-chat__wave-progress-bar__track"
77
data-testid="wave-progress-bar-track"
88
role="progressbar"
9-
style="--str-chat__voice-recording-amplitude-bar-gap: 8px;"
9+
style="--str-chat__voice-recording-amplitude-bar-gap-width: 8px;"
1010
>
1111
<div
1212
class="str-chat__wave-progress-bar__amplitude-bar"

src/components/Attachment/components/WaveProgressBar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export const WaveProgressBar = ({
130130
role='progressbar'
131131
style={
132132
{
133-
'--str-chat__voice-recording-amplitude-bar-gap': trackAxisX?.gap + 'px',
133+
'--str-chat__voice-recording-amplitude-bar-gap-width': trackAxisX?.gap + 'px',
134134
} as React.CSSProperties
135135
}
136136
>

src/components/MediaRecorder/AudioRecorder/__tests__/__snapshots__/AudioRecorder.test.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ exports[`AudioRecorder renders audio recording stopped UI with recording preview
382382
class="str-chat__wave-progress-bar__track"
383383
data-testid="wave-progress-bar-track"
384384
role="progressbar"
385-
style="--str-chat__voice-recording-amplitude-bar-gap: 1px;"
385+
style="--str-chat__voice-recording-amplitude-bar-gap-width: 1px;"
386386
>
387387
<div
388388
class="str-chat__wave-progress-bar__amplitude-bar"

0 commit comments

Comments
 (0)