mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 18:51:17 +00:00
* Experimental. * Getting somewhere. * Good zooming behaviour. * Working timeline zooming & panning. * Clickable timestamps. * Dragging cursor * Timeline panning buttons. * Capping at current time. * Scale limits. * Better ticks. * Time tags fading in smoothly. * Removed seconds. * Better tick spacing. * Vertical panning as zooming. * Organizing the code.. * Replaced d3-zoom with native events. * Got rid of scaleX * More code beautified. * Almost done polishing the code. * Some cleanup. * Better request triggers. * More cleaning up. * Styled the timestamp input. * Final cleanup. * Update yarn.lock * Zoom tracking. * Animate timeline translations. * Fixed the PAUSE button glitch and updating the time control info. * Opacity fix and timeline arrows removed. * Fixed the red vertical bar. * Use preventDefault() on timeline scrolling.
13 lines
404 B
JavaScript
13 lines
404 B
JavaScript
/* Intervals in ms */
|
|
export const API_REFRESH_INTERVAL = 30000;
|
|
export const TOPOLOGY_REFRESH_INTERVAL = 5000;
|
|
|
|
export const TOPOLOGY_LOADER_DELAY = 100;
|
|
|
|
export const TABLE_ROW_FOCUS_DEBOUNCE_INTERVAL = 10;
|
|
export const VIEWPORT_RESIZE_DEBOUNCE_INTERVAL = 200;
|
|
export const ZOOM_CACHE_DEBOUNCE_INTERVAL = 500;
|
|
export const TIMELINE_DEBOUNCE_INTERVAL = 500;
|
|
|
|
export const TIMELINE_TICK_INTERVAL = 1000;
|