Skip to content

Commit 8e7d25d

Browse files
committed
Make JS graph responsive with an option
Fixes nicoespeon#303
1 parent 450db92 commit 8e7d25d

File tree

2 files changed

+39
-7
lines changed

2 files changed

+39
-7
lines changed

packages/gitgraph-js/src/gitgraph.ts

+22-7
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ interface CommitYWithOffsets {
6363

6464
function createGitgraph(
6565
graphContainer: HTMLElement,
66-
options?: GitgraphOptions,
66+
options?: GitgraphOptions & { responsive?: boolean },
6767
) {
6868
let commitsElements: {
6969
[commitHash: string]: {
@@ -85,9 +85,16 @@ function createGitgraph(
8585

8686
// Create an `svg` context in which we'll render the graph.
8787
const svg = createSvg();
88-
adaptSvgOnUpdate();
88+
adaptSvgOnUpdate(Boolean(options && options.responsive));
8989
graphContainer.appendChild(svg);
9090

91+
if (options && options.responsive) {
92+
graphContainer.setAttribute(
93+
"style",
94+
"display:inline-block; position: relative; width:100%; padding-bottom:100%; vertical-align:middle; overflow:hidden;",
95+
);
96+
}
97+
9198
// React on gitgraph updates to re-render the graph.
9299
const gitgraph = new GitgraphCore(options);
93100
gitgraph.subscribe((data) => {
@@ -123,15 +130,15 @@ function createGitgraph(
123130
);
124131
}
125132

126-
function adaptSvgOnUpdate(): void {
133+
function adaptSvgOnUpdate(adaptToContainer: boolean): void {
127134
const observer = new MutationObserver(() => {
128135
if (shouldRecomputeOffsets) {
129136
shouldRecomputeOffsets = false;
130137
computeOffsets();
131138
render(lastData);
132139
} else {
133140
positionCommitsElements();
134-
adaptGraphDimensions();
141+
adaptGraphDimensions(adaptToContainer);
135142
}
136143
});
137144

@@ -221,7 +228,7 @@ function createGitgraph(
221228
});
222229
}
223230

224-
function adaptGraphDimensions(): void {
231+
function adaptGraphDimensions(adaptToContainer: boolean): void {
225232
const { height, width } = svg.getBBox();
226233

227234
// FIXME: In horizontal mode, we mimic @gitgraph/react behavior
@@ -245,8 +252,16 @@ function createGitgraph(
245252
// Add `BRANCH_LABEL_PADDING_Y` so we don't crop branch label.
246253
BRANCH_LABEL_PADDING_Y + TOOLTIP_PADDING + verticalCustomOffset;
247254

248-
svg.setAttribute("width", (width + widthOffset).toString());
249-
svg.setAttribute("height", (height + heightOffset).toString());
255+
if (adaptToContainer) {
256+
svg.setAttribute("preserveAspectRatio", "xMinYMin meet");
257+
svg.setAttribute(
258+
"viewBox",
259+
`0 0 ${width + widthOffset} ${height + heightOffset}`,
260+
);
261+
} else {
262+
svg.setAttribute("width", (width + widthOffset).toString());
263+
svg.setAttribute("height", (height + heightOffset).toString());
264+
}
250265
}
251266
}
252267

packages/stories/src/gitgraph-js/1-basic-usage.stories.tsx

+17
Original file line numberDiff line numberDiff line change
@@ -389,4 +389,21 @@ storiesOf("gitgraph-js/1. Basic usage", module)
389389
feat1.commit();
390390
}}
391391
</GraphContainer>
392+
))
393+
.add("responsive", () => (
394+
<GraphContainer>
395+
{(graphContainer) => {
396+
const gitgraph = createGitgraph(graphContainer, {
397+
generateCommitHash: createFixedHashGenerator(),
398+
responsive: true,
399+
});
400+
401+
const master = gitgraph.branch("master").commit("Initial commit");
402+
const develop = gitgraph.branch("develop");
403+
develop.commit("one");
404+
master.commit("two");
405+
develop.commit("three");
406+
master.merge(develop);
407+
}}
408+
</GraphContainer>
392409
));

0 commit comments

Comments
 (0)