mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 01:48:43 +08:00
9ba55d1d14
* extract location markers into generic Marker Signed-off-by: Kerry Archibald <kerrya@element.io> * wrap marker in smartmarker Signed-off-by: Kerry Archibald <kerrya@element.io> * test smartmarker Signed-off-by: Kerry Archibald <kerrya@element.io> * working map in location body Signed-off-by: Kerry Archibald <kerrya@element.io> * test Map Signed-off-by: Kerry Archibald <kerrya@element.io> * remove skinned sdk Signed-off-by: Kerry Archibald <kerrya@element.io> * update snaps with new mocks Signed-off-by: Kerry Archibald <kerrya@element.io> * use new ZoomButtons in MLocationBody Signed-off-by: Kerry Archibald <kerrya@element.io> * make LocationViewDialog map interactive Signed-off-by: Kerry Archibald <kerrya@element.io> * test MLocationBody Signed-off-by: Kerry Archibald <kerrya@element.io> * test LocationViewDialog Signed-off-by: Kerry Archibald <kerrya@element.io> * add copyrights, shrink snapshot Signed-off-by: Kerry Archibald <kerrya@element.io> * update comment Signed-off-by: Kerry Archibald <kerrya@element.io> * lint Signed-off-by: Kerry Archibald <kerrya@element.io> * lint Signed-off-by: Kerry Archibald <kerrya@element.io>
74 lines
1.7 KiB
Plaintext
74 lines
1.7 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<ZoomButtons /> renders buttons 1`] = `
|
|
<ZoomButtons
|
|
map={
|
|
MockMap {
|
|
"_events": Object {},
|
|
"_eventsCount": 0,
|
|
"_maxListeners": undefined,
|
|
"addControl": [MockFunction],
|
|
"removeControl": [MockFunction],
|
|
"setCenter": [MockFunction],
|
|
"setStyle": [MockFunction],
|
|
"zoomIn": [MockFunction],
|
|
"zoomOut": [MockFunction],
|
|
Symbol(kCapture): false,
|
|
}
|
|
}
|
|
>
|
|
<div
|
|
className="mx_ZoomButtons"
|
|
>
|
|
<AccessibleButton
|
|
className="mx_ZoomButtons_button"
|
|
data-test-id="map-zoom-in-button"
|
|
element="div"
|
|
onClick={[Function]}
|
|
role="button"
|
|
tabIndex={0}
|
|
title="Zoom in"
|
|
>
|
|
<div
|
|
className="mx_AccessibleButton mx_ZoomButtons_button"
|
|
data-test-id="map-zoom-in-button"
|
|
onClick={[Function]}
|
|
onKeyDown={[Function]}
|
|
onKeyUp={[Function]}
|
|
role="button"
|
|
tabIndex={0}
|
|
title="Zoom in"
|
|
>
|
|
<div
|
|
className="mx_ZoomButtons_icon"
|
|
/>
|
|
</div>
|
|
</AccessibleButton>
|
|
<AccessibleButton
|
|
className="mx_ZoomButtons_button"
|
|
data-test-id="map-zoom-out-button"
|
|
element="div"
|
|
onClick={[Function]}
|
|
role="button"
|
|
tabIndex={0}
|
|
title="Zoom out"
|
|
>
|
|
<div
|
|
className="mx_AccessibleButton mx_ZoomButtons_button"
|
|
data-test-id="map-zoom-out-button"
|
|
onClick={[Function]}
|
|
onKeyDown={[Function]}
|
|
onKeyUp={[Function]}
|
|
role="button"
|
|
tabIndex={0}
|
|
title="Zoom out"
|
|
>
|
|
<div
|
|
className="mx_ZoomButtons_icon"
|
|
/>
|
|
</div>
|
|
</AccessibleButton>
|
|
</div>
|
|
</ZoomButtons>
|
|
`;
|