Skip to content

Commit d42c5c0

Browse files
committed
Fix infrastractural problems
- Commit VSCode settings to enable Prettier on ts and tsx files - Fix missing declarations in Storybook files that caused the develop script to fail - Add @gitgraph/core as a direct dependency of @gitgraph/stories - Fix tsconfig typo - Add sleep to storybook script to fix async issues caused by @gitgraph/core not available
1 parent 18970ce commit d42c5c0

File tree

8 files changed

+28
-38
lines changed

8 files changed

+28
-38
lines changed

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["esbenp.prettier-vscode"]
3+
}

.vscode/settings.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"search.exclude": {
3+
"**/node_modules": true,
4+
"**/dist": true,
5+
"**/coverage": true
6+
},
7+
"editor.defaultFormatter": "esbenp.prettier-vscode"
8+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"lerna": "lerna",
2525
"build": "lerna run build --scope=@gitgraph/{core,react,js,node} --stream",
2626
"watch": "lerna run watch --stream",
27-
"storybook": "lerna run storybook --stream",
27+
"storybook": "sleep 3 && lerna run storybook --stream",
2828
"develop": "concurrently npm:watch npm:storybook",
2929
"website": "lerna run start --scope=@gitgraph/website --stream",
3030
"deploy:website": "lerna run deploy --scope=@gitgraph/website --stream",

packages/stories/.storybook/tsconfig.json

-22
This file was deleted.

packages/stories/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"build": "build-storybook"
1818
},
1919
"dependencies": {
20+
"@gitgraph/core": "1.4.5",
2021
"@gitgraph/js": "1.3.5",
2122
"@gitgraph/react": "1.5.4"
2223
},

packages/stories/src/gitgraph-js/6-custom-renders.stories.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const withoutBranchLabels = templateExtend(TemplateName.Metro, {
2525
branch: { label: { display: false } },
2626
});
2727

28-
const renderSax: CommitOptions["renderDot"] = (commit) =>
28+
const renderSax: CommitOptions["renderDot"] = (commit: any) =>
2929
createSvg({
3030
height: 30,
3131
width: 30,
@@ -49,7 +49,7 @@ const renderSax: CommitOptions["renderDot"] = (commit) =>
4949
],
5050
});
5151

52-
const renderLongMessage: CommitOptions["renderMessage"] = (commit) => {
52+
const renderLongMessage: CommitOptions["renderMessage"] = (commit: any) => {
5353
return createG({
5454
translate: { x: 0, y: commit.style.dot.size },
5555
children: [
@@ -79,7 +79,7 @@ storiesOf("gitgraph-js/6. Custom renders", module)
7979
.add("with render dot", () => (
8080
<GraphContainer>
8181
{(graphContainer) => {
82-
const renderDot: CommitOptions["renderDot"] = (commit) =>
82+
const renderDot: CommitOptions["renderDot"] = (commit: any) =>
8383
renderSax(commit);
8484

8585
const gitgraph = createGitgraph(graphContainer, {
@@ -110,7 +110,7 @@ storiesOf("gitgraph-js/6. Custom renders", module)
110110
.add("with render tooltip", () => (
111111
<GraphContainer>
112112
{(graphContainer) => {
113-
const renderTooltip: CommitOptions["renderTooltip"] = (commit) => {
113+
const renderTooltip: CommitOptions["renderTooltip"] = (commit: any) => {
114114
const commitSize = commit.style.dot.size * 2;
115115

116116
return createG({
@@ -156,7 +156,7 @@ storiesOf("gitgraph-js/6. Custom renders", module)
156156
.add("with render message", () => (
157157
<GraphContainer>
158158
{(graphContainer) => {
159-
const renderMessage: CommitOptions["renderMessage"] = (commit) => {
159+
const renderMessage: CommitOptions["renderMessage"] = (commit: any) => {
160160
return createText({
161161
translate: { x: 0, y: commit.style.dot.size },
162162
fill: commit.style.dot.color,
@@ -243,7 +243,7 @@ storiesOf("gitgraph-js/6. Custom renders", module)
243243
</GraphContainer>
244244
))
245245
.add("with render branch label", () => {
246-
const renderLabel: BranchOptions["renderLabel"] = (branch) => {
246+
const renderLabel: BranchOptions["renderLabel"] = (branch: any) => {
247247
return createText({
248248
content: `🎷 ${branch.name}`,
249249
fill: branch.style.label.color,
@@ -278,7 +278,7 @@ storiesOf("gitgraph-js/6. Custom renders", module)
278278
);
279279
})
280280
.add("with render tag", () => {
281-
const renderTag: TagOptions["render"] = (name, style) => {
281+
const renderTag: TagOptions["render"] = (name: any, style: any) => {
282282
return createText({
283283
content: `🎷 ${name}`,
284284
font: style.font,

packages/stories/src/gitgraph-react/6-custom-renders.stories.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const withoutBranchLabels = templateExtend(TemplateName.Metro, {
1919

2020
storiesOf("gitgraph-react/6. Custom renders", module)
2121
.add("with render dot", () => {
22-
const renderDot: CommitOptions["renderDot"] = (commit) => (
22+
const renderDot: CommitOptions["renderDot"] = (commit: any) => (
2323
<svg
2424
xmlns="http://www.w3.org/2000/svg"
2525
viewBox="0 0 71.84 75.33"
@@ -59,7 +59,7 @@ storiesOf("gitgraph-react/6. Custom renders", module)
5959
);
6060
})
6161
.add("with render tooltip", () => {
62-
const renderTooltip: CommitOptions["renderTooltip"] = (commit) => {
62+
const renderTooltip: CommitOptions["renderTooltip"] = (commit: any) => {
6363
const commitSize = commit.style.dot.size * 2;
6464
return (
6565
<g transform={`translate(${commitSize + 10}, ${commitSize / 2})`}>
@@ -113,7 +113,7 @@ storiesOf("gitgraph-react/6. Custom renders", module)
113113
);
114114
})
115115
.add("with render message", () => {
116-
const renderMessage: CommitOptions["renderMessage"] = (commit) => {
116+
const renderMessage: CommitOptions["renderMessage"] = (commit: any) => {
117117
return (
118118
<text
119119
y={commit.style.dot.size}
@@ -151,7 +151,7 @@ storiesOf("gitgraph-react/6. Custom renders", module)
151151
);
152152
})
153153
.add("with render message (long)", () => {
154-
const renderMessage: CommitOptions["renderMessage"] = (commit) => {
154+
const renderMessage: CommitOptions["renderMessage"] = (commit: any) => {
155155
return (
156156
<g transform={`translate(0, ${commit.style.dot.size})`}>
157157
<text fill={commit.style.dot.color} alignmentBaseline="central">
@@ -197,7 +197,7 @@ storiesOf("gitgraph-react/6. Custom renders", module)
197197
);
198198
})
199199
.add("with render message (long & reverse orientation)", () => {
200-
const renderMessage: CommitOptions["renderMessage"] = (commit) => {
200+
const renderMessage: CommitOptions["renderMessage"] = (commit: any) => {
201201
return (
202202
<g transform={`translate(0, ${commit.style.dot.size})`}>
203203
<text fill={commit.style.dot.color} alignmentBaseline="central">
@@ -248,7 +248,7 @@ storiesOf("gitgraph-react/6. Custom renders", module)
248248
);
249249
})
250250
.add("with render branch label", () => {
251-
const renderLabel: BranchOptions["renderLabel"] = (branch) => {
251+
const renderLabel: BranchOptions["renderLabel"] = (branch: any) => {
252252
return (
253253
<text
254254
alignmentBaseline="middle"
@@ -281,7 +281,7 @@ storiesOf("gitgraph-react/6. Custom renders", module)
281281
);
282282
})
283283
.add("with render tag", () => {
284-
const renderTag: TagOptions["render"] = (name, style) => {
284+
const renderTag: TagOptions["render"] = (name: any, style: any) => {
285285
return (
286286
<text style={{ font: style.font }} fill={style.bgColor} y={6}>
287287
🎷 {name}

packages/stories/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"noImplicitReturns": true,
1818
"noImplicitThis": true,
1919
"noUnusedLocals": true,
20-
"moduleResolution": "node",
20+
"moduleResolution": "node"
2121
},
2222
"include": ["src/**/*"]
2323
}

0 commit comments

Comments
 (0)