Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat(site): add display for workspace timings#14773

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Closed
BrunoQuaresma wants to merge27 commits intomainfrombq/workspace-timings-ui
Closed
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
27 commits
Select commitHold shift + click to select a range
5268b1e
Add base components for the chart
BrunoQuaresmaSep 19, 2024
4d509f9
Improve spacing calc
BrunoQuaresmaSep 19, 2024
d48624b
Make bars clickable
BrunoQuaresmaSep 19, 2024
62152ce
Refactor code to allow multiple views
BrunoQuaresmaSep 20, 2024
fd84ed9
Add basic view and breadcrumbs
BrunoQuaresmaSep 23, 2024
f7f09ff
Add resource filtering
BrunoQuaresmaSep 23, 2024
2ffc75a
Find the right tick spacings
BrunoQuaresmaSep 23, 2024
a8372e1
Add colors to the bars
BrunoQuaresmaSep 23, 2024
f7c7488
Do not display Coder resource
BrunoQuaresmaSep 23, 2024
0868185
Add legends
BrunoQuaresmaSep 23, 2024
54d13c8
Handle empty search
BrunoQuaresmaSep 23, 2024
714e37b
Improve coder resource filter and adjust bar hover
BrunoQuaresmaSep 24, 2024
a2dd126
Only scroll the chart
BrunoQuaresmaSep 24, 2024
0b4747e
Add tooltip
BrunoQuaresmaSep 24, 2024
49d3a72
Refactor code and improve legends
BrunoQuaresmaSep 25, 2024
647635d
Adjust columns to fit the space
BrunoQuaresmaSep 25, 2024
6c742aa
Customize scroll
BrunoQuaresmaSep 25, 2024
9a8bb59
Add info tooltip
BrunoQuaresmaSep 25, 2024
4139151
Fix fmt
BrunoQuaresmaSep 25, 2024
bcff9c6
Fix nblock gen
BrunoQuaresmaSep 25, 2024
97b25d9
Fix key
BrunoQuaresmaSep 25, 2024
6d5c344
Debug on chromatic
BrunoQuaresmaSep 25, 2024
c4bd74e
Another debug image
BrunoQuaresmaSep 25, 2024
939ec9a
Try with useEffect
BrunoQuaresmaSep 25, 2024
49c69e0
Fix labels alignment
BrunoQuaresmaSep 26, 2024
61008a3
Increase border radius tooltip
BrunoQuaresmaSep 26, 2024
f969ef2
Add scroll mask
BrunoQuaresmaSep 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 92 additions & 0 deletionssite/src/modules/workspaces/WorkspaceTiming/Chart/Bar.tsx
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
import type { Interpolation, Theme } from "@emotion/react";
import { type ButtonHTMLAttributes, type HTMLProps, forwardRef } from "react";
import { CSSVars } from "./constants";

export type BarColors = {
stroke: string;
fill: string;
};

type BaseBarProps<T> = Omit<T, "size" | "color"> & {
/**
* Scale used to determine the width based on the given value.
*/
scale: number;
value: number;
/**
* The X position of the bar component.
*/
offset: number;
/**
* Color scheme for the bar. If not passed the default gray color will be
* used.
*/
colors?: BarColors;
};

type BarProps = BaseBarProps<HTMLProps<HTMLDivElement>>;

export const Bar = forwardRef<HTMLDivElement, BarProps>(
({ colors, scale, value, offset, ...htmlProps }, ref) => {
return (
<div
css={barCss({ colors, scale, value, offset })}
{...htmlProps}
ref={ref}
/>
);
},
);

type ClickableBarProps = BaseBarProps<ButtonHTMLAttributes<HTMLButtonElement>>;

export const ClickableBar = forwardRef<HTMLButtonElement, ClickableBarProps>(
({ colors, scale, value, offset, ...htmlProps }, ref) => {
return (
<button
type="button"
css={[...barCss({ colors, scale, value, offset }), styles.clickable]}
{...htmlProps}
ref={ref}
/>
);
},
);

export const barCss = ({
scale,
value,
colors,
offset,
}: BaseBarProps<unknown>) => {
return [
styles.bar,
{
width: `calc((var(${CSSVars.xAxisWidth}) * ${value}) / ${scale})`,
backgroundColor: colors?.fill,
borderColor: colors?.stroke,
marginLeft: `calc((var(${CSSVars.xAxisWidth}) * ${offset}) / ${scale})`,
},
];
};

const styles = {
bar: (theme) => ({
border: "1px solid",
borderColor: theme.palette.divider,
backgroundColor: theme.palette.background.default,
borderRadius: 8,
height: 32,
display: "flex",
padding: 0,
minWidth: 8,
}),
clickable: {
cursor: "pointer",

"&:focus, &:hover, &:active": {
outline: "none",
borderColor: "#38BDF8",
},
},
} satisfies Record<string, Interpolation<Theme>>;
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
import type { Interpolation, Theme } from "@emotion/react";
import MoreHorizOutlined from "@mui/icons-material/MoreHorizOutlined";
import { type FC, useEffect, useRef, useState } from "react";

const sidePadding = 8;
const spaceBetweenBlocks = 4;
const moreIconSize = 18;
const blockSize = 20;

type BarBlocksProps = {
count: number;
};

export const BarBlocks: FC<BarBlocksProps> = ({ count }) => {
const [parentWidth, setParentWidth] = useState<number>();
const blocksRef = useRef<HTMLDivElement>(null);

useEffect(() => {
if (!blocksRef.current || parentWidth) {
return;
}
const parentEl = blocksRef.current.parentElement;
if (!parentEl) {
throw new Error("BarBlocks must be a child of a Bar");
}
setParentWidth(parentEl.clientWidth);
}, [parentWidth]);

const totalSpaceBetweenBlocks = (count - 1) * spaceBetweenBlocks;
const freeSize = parentWidth ? parentWidth - sidePadding * 2 : 0;
const necessarySize = blockSize * count + totalSpaceBetweenBlocks;
const hasSpacing = necessarySize <= freeSize;
const nOfPossibleBlocks = Math.floor(
(freeSize - moreIconSize) / (blockSize + spaceBetweenBlocks),
);
const nOfBlocks = hasSpacing ? count : nOfPossibleBlocks;

return (
<div ref={blocksRef} css={styles.blocks}>
{Array.from({ length: nOfBlocks }, (_, i) => i + 1).map((n) => (
<div key={n} css={styles.block} style={{ minWidth: blockSize }} />
))}
{!hasSpacing && (
<div css={styles.extraBlock}>
<MoreHorizOutlined />
</div>
)}
</div>
);
};

const styles = {
blocks: {
display: "flex",
width: "100%",
height: "100%",
padding: sidePadding,
gap: spaceBetweenBlocks,
alignItems: "center",
},
block: {
borderRadius: 4,
height: 16,
backgroundColor: "#082F49",
border: "1px solid #38BDF8",
flexShrink: 0,
},
extraBlock: {
color: "#38BDF8",
lineHeight: 0,
flexShrink: 0,

"& svg": {
fontSize: moreIconSize,
},
},
} satisfies Record<string, Interpolation<Theme>>;
Loading
Loading

[8]ページ先頭

©2009-2025 Movatter.jp