Skip to content

Commit

Permalink
fix bug 176: preserve YAML comments when reordering items by matching…
Browse files Browse the repository at this point in the history
… content instead of position
  • Loading branch information
turnah committed Dec 10, 2024
1 parent 0190620 commit 8a2217c
Showing 1 changed file with 43 additions and 23 deletions.
66 changes: 43 additions & 23 deletions common/util-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,42 +236,62 @@ export function copyYAMLComments(doc : Document, src : Document) {

/**
* Copy yaml comments from srcItems to items
* Typescript is super annoying here, so I have to use any here
* TODO: Since comments are belong to the array index, the comments will be lost if the order of the items is changed or removed or added.
* Attempts to preserve comments by matching content rather than just array indices
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function copyYAMLCommentsItems(items : any, srcItems : any) {
function copyYAMLCommentsItems(items: any, srcItems: any) {
if (!items || !srcItems) {
return;
}

// First pass - try to match items by their content
for (let i = 0; i < items.length; i++) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const item : any = items[i];

// eslint-disable-next-line @typescript-eslint/no-explicit-any
const srcItem : any = srcItems[i];
const item: any = items[i];

Check failure on line 251 in common/util-common.ts

View workflow job for this annotation

GitHub Actions / ci (ubuntu-latest, 22)

Trailing spaces not allowed
// Try to find matching source item by content
const srcIndex = srcItems.findIndex((srcItem: any) =>

Check failure on line 253 in common/util-common.ts

View workflow job for this annotation

GitHub Actions / ci (ubuntu-latest, 22)

Unexpected any. Specify a different type

Check failure on line 253 in common/util-common.ts

View workflow job for this annotation

GitHub Actions / ci (ubuntu-latest, 22)

Trailing spaces not allowed
JSON.stringify(srcItem.value) === JSON.stringify(item.value) &&
JSON.stringify(srcItem.key) === JSON.stringify(item.key)
);

if (srcIndex !== -1) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const srcItem: any = srcItems[srcIndex];
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const nextSrcItem: any = srcItems[srcIndex + 1];

if (item.key && srcItem.key) {
item.key.comment = srcItem.key.comment;
item.key.commentBefore = srcItem.key.commentBefore;
}

if (!srcItem) {
continue;
}
if (srcItem.comment) {
item.comment = srcItem.comment;
}

if (item.key && srcItem.key) {
item.key.comment = srcItem.key.comment;
item.key.commentBefore = srcItem.key.commentBefore;
}
// Handle comments between array items
if (nextSrcItem && nextSrcItem.commentBefore) {
if (items[i + 1]) {
items[i + 1].commentBefore = nextSrcItem.commentBefore;
}
}

if (srcItem.comment) {
item.comment = srcItem.comment;
}
// Handle trailing comments after array items
if (srcItem.value && srcItem.value.comment) {
if (item.value) {
item.value.comment = srcItem.value.comment;
}
}

if (item.value && srcItem.value) {
if (typeof item.value === "object" && typeof srcItem.value === "object") {
item.value.comment = srcItem.value.comment;
item.value.commentBefore = srcItem.value.commentBefore;
if (item.value && srcItem.value) {
if (typeof item.value === "object" && typeof srcItem.value === "object") {
item.value.comment = srcItem.value.comment;
item.value.commentBefore = srcItem.value.commentBefore;

if (item.value.items && srcItem.value.items) {
copyYAMLCommentsItems(item.value.items, srcItem.value.items);
if (item.value.items && srcItem.value.items) {
copyYAMLCommentsItems(item.value.items, srcItem.value.items);
}
}
}
}
Expand Down

0 comments on commit 8a2217c

Please sign in to comment.