Skip to content

Commit

Permalink
Improved web-console's time-chart brush and added auto-granularity (a…
Browse files Browse the repository at this point in the history
…pache#14990)

* Improved time-chart brush and added auto-granularity

* prettier

* added highlight bubble to explore visualizations

* Added licenses and fixes from PR review

* added missing files...
  • Loading branch information
lorem--ipsum authored and ythorat2 committed Dec 1, 2023
1 parent f1291b2 commit a7a68c4
Show file tree
Hide file tree
Showing 22 changed files with 1,162 additions and 213 deletions.
38 changes: 38 additions & 0 deletions licenses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5375,6 +5375,15 @@ license_file_path: licenses/bin/change-case.MIT

---

name: "chronoshift"
license_category: binary
module: web-console
license_name: Apache License version 2.0
copyright: Vadim Ogievetsky
version: 0.10.0

---

name: "classnames"
license_category: binary
module: web-console
Expand Down Expand Up @@ -5903,6 +5912,15 @@ license_file_path: licenses/bin/iconv-lite.MIT

---

name: "immutable-class"
license_category: binary
module: web-console
license_name: Apache License version 2.0
copyright: Vadim Ogievetsky
version: 0.11.2

---

name: "import-fresh"
license_category: binary
module: web-console
Expand Down Expand Up @@ -6103,6 +6121,26 @@ license_file_path: licenses/bin/memoize-one.MIT

---

name: "moment-timezone"
license_category: binary
module: web-console
license_name: MIT License
copyright: Tim Wood
version: 0.5.43
license_file_path: licenses/bin/moment-timezone.MIT

---

name: "moment"
license_category: binary
module: web-console
license_name: MIT License
copyright: Iskren Ivov Chernev
version: 2.29.4
license_file_path: licenses/bin/moment.MIT

---

name: "no-case"
license_category: binary
module: web-console
Expand Down
20 changes: 20 additions & 0 deletions licenses/bin/moment-timezone.MIT
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
The MIT License (MIT)

Copyright (c) JS Foundation and other contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 changes: 22 additions & 0 deletions licenses/bin/moment.MIT
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) JS Foundation and other contributors

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
71 changes: 71 additions & 0 deletions web-console/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions web-console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
"@druid-toolkit/visuals-react": "^0.3.3",
"ace-builds": "~1.4.14",
"axios": "^0.26.1",
"chronoshift": "^0.10.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"core-js": "^3.10.1",
Expand Down
1 change: 1 addition & 0 deletions web-console/src/hooks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ export * from './use-last-defined';
export * from './use-local-storage-state';
export * from './use-permanent-callback';
export * from './use-query-manager';
export * from './use-resize-observer';
80 changes: 80 additions & 0 deletions web-console/src/hooks/use-resize-observer.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import { useCallback, useEffect, useState } from 'react';

const emptyDOMRect = { height: 0, width: 0, x: 0, y: 0, bottom: 0, left: 0, right: 0, top: 0 };

function createEmptyDOMRect(): DOMRect {
// DOMRect is not defined in JSDOM
return typeof DOMRect !== 'undefined'
? new DOMRect()
: { ...emptyDOMRect, toJSON: () => emptyDOMRect };
}

export function useResizeObserver(element: HTMLElement | null | undefined) {
const [rect, setRect] = useState(() => createEmptyDOMRect());

const maybeUpdate = useCallback(
(e: Element) => {
const newRect: DOMRect = e.getBoundingClientRect();
if (
!rect ||
rect.bottom !== newRect.bottom ||
rect.top !== newRect.top ||
rect.left !== newRect.left ||
rect.right !== newRect.right ||
rect.width !== newRect.width ||
rect.height !== newRect.height
) {
setRect(newRect);
}
},
[rect],
);

const onScroll = useCallback(() => {
if (element) {
maybeUpdate(element);
}
}, [element, maybeUpdate]);

useEffect(() => {
const resizeObserver = new ResizeObserver((entries: ResizeObserverEntry[]) => {
if (!Array.isArray(entries) || !entries.length) {
return;
}

maybeUpdate(entries[0].target);
});

if (element) {
resizeObserver.observe(element);
window.addEventListener('scroll', onScroll, true);

return () => {
resizeObserver.unobserve(element);
window.removeEventListener('scroll', onScroll, true);
};
}

return;
}, [element, maybeUpdate, onScroll]);

return rect;
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

.droppable-container {
position: relative;
overflow: hidden;

&.drop-hover {
&::after {
Expand Down
Loading

0 comments on commit a7a68c4

Please sign in to comment.