@@ -63,7 +63,7 @@ interface CommitYWithOffsets {
63
63
64
64
function createGitgraph (
65
65
graphContainer : HTMLElement ,
66
- options ?: GitgraphOptions ,
66
+ options ?: GitgraphOptions & { responsive ?: boolean } ,
67
67
) {
68
68
let commitsElements : {
69
69
[ commitHash : string ] : {
@@ -85,9 +85,16 @@ function createGitgraph(
85
85
86
86
// Create an `svg` context in which we'll render the graph.
87
87
const svg = createSvg ( ) ;
88
- adaptSvgOnUpdate ( ) ;
88
+ adaptSvgOnUpdate ( Boolean ( options && options . responsive ) ) ;
89
89
graphContainer . appendChild ( svg ) ;
90
90
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
+
91
98
// React on gitgraph updates to re-render the graph.
92
99
const gitgraph = new GitgraphCore ( options ) ;
93
100
gitgraph . subscribe ( ( data ) => {
@@ -123,15 +130,15 @@ function createGitgraph(
123
130
) ;
124
131
}
125
132
126
- function adaptSvgOnUpdate ( ) : void {
133
+ function adaptSvgOnUpdate ( adaptToContainer : boolean ) : void {
127
134
const observer = new MutationObserver ( ( ) => {
128
135
if ( shouldRecomputeOffsets ) {
129
136
shouldRecomputeOffsets = false ;
130
137
computeOffsets ( ) ;
131
138
render ( lastData ) ;
132
139
} else {
133
140
positionCommitsElements ( ) ;
134
- adaptGraphDimensions ( ) ;
141
+ adaptGraphDimensions ( adaptToContainer ) ;
135
142
}
136
143
} ) ;
137
144
@@ -221,7 +228,7 @@ function createGitgraph(
221
228
} ) ;
222
229
}
223
230
224
- function adaptGraphDimensions ( ) : void {
231
+ function adaptGraphDimensions ( adaptToContainer : boolean ) : void {
225
232
const { height, width } = svg . getBBox ( ) ;
226
233
227
234
// FIXME: In horizontal mode, we mimic @gitgraph/react behavior
@@ -245,8 +252,16 @@ function createGitgraph(
245
252
// Add `BRANCH_LABEL_PADDING_Y` so we don't crop branch label.
246
253
BRANCH_LABEL_PADDING_Y + TOOLTIP_PADDING + verticalCustomOffset ;
247
254
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
+ }
250
265
}
251
266
}
252
267
0 commit comments