14 lines
398 B
JavaScript
14 lines
398 B
JavaScript
export function normalizeData(data, path, extra = () => {}) {
|
|
return data.map((d) => ({
|
|
sha: d.commit.id,
|
|
message: d.commit.message,
|
|
titleHtml: d.commit_title_html,
|
|
committedDate: d.commit.committed_date,
|
|
commitPath: d.commit_path,
|
|
fileName: d.file_name,
|
|
filePath: `${path}/${d.file_name}`,
|
|
type: d.type,
|
|
__typename: 'LogTreeCommit',
|
|
...extra(d),
|
|
}));
|
|
}
|