Skip to content

Commit 88d9712

Browse files
committed
✅ import rename + tests
1 parent c1753f4 commit 88d9712

File tree

6 files changed

+16
-4
lines changed

6 files changed

+16
-4
lines changed

@navikt/aksel/src/codemod/transforms/darkside/box-to-boxnew/box-to-boxnew.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66
findProp,
77
} from "../../../utils/ast";
88
import { getLineTerminator } from "../../../utils/lineterminator";
9+
import moveAndRenameImport from "../../../utils/moveAndRenameImport";
910

1011
const propsAffected = ["background", "borderColor", "shadow"];
1112

@@ -15,21 +16,21 @@ export default function transformer(file: FileInfo, api: API) {
1516

1617
const toSourceOptions = getLineTerminator(file.source);
1718

18-
const sourceName = findComponentImport({
19+
const localName = findComponentImport({
1920
file,
2021
j,
2122
name: "Box",
2223
packageType: "react",
2324
});
2425

25-
if (!sourceName) {
26+
if (!localName) {
2627
return;
2728
}
2829

2930
const astElements = findJSXElement({
3031
root,
3132
j,
32-
name: sourceName,
33+
name: localName,
3334
originalName: "Box",
3435
});
3536

@@ -53,5 +54,12 @@ export default function transformer(file: FileInfo, api: API) {
5354
}
5455
}
5556

57+
moveAndRenameImport(j, root, {
58+
fromImport: "@navikt/ds-react",
59+
toImport: "@navikt/ds-react",
60+
fromName: "Box",
61+
toName: "BoxNew",
62+
});
63+
5664
return root.toSource(toSourceOptions);
5765
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import { Box as AkselBox } from "@navikt/ds-react"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import { BoxNew as AkselBox } from "@navikt/ds-react"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import { Box } from "@navikt/ds-react"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import { BoxNew as Box } from "@navikt/ds-react"

@navikt/aksel/src/codemod/transforms/darkside/box-to-boxnew/tests/index.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { check } from "../../../../utils/check";
22

33
const migration = "box-to-boxnew";
4-
const fixtures = ["box"];
4+
const fixtures = ["box", "import", "import2"];
55

66
for (const fixture of fixtures) {
77
check(__dirname, {

0 commit comments

Comments
 (0)