mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-27 19:29:57 +03:00
54 lines
1.0 KiB
JavaScript
54 lines
1.0 KiB
JavaScript
const constructFilesTreeForNavigation = (library) => {
|
|
for (let i = 0; i < library.length; i++) {
|
|
for (let j = 0; j < library[i].children.length; j++) {
|
|
let e = library[i].children[j];
|
|
if (e.decorator === "FILE") {
|
|
library[i].children[j].ignore = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return library;
|
|
};
|
|
|
|
export const generate = (library) => [
|
|
{
|
|
id: 1,
|
|
name: "Home",
|
|
pageTitle: "home",
|
|
decorator: "HOME",
|
|
children: null,
|
|
},
|
|
{
|
|
id: 2,
|
|
name: "Wallet",
|
|
pageTitle: "your wallet and addresses",
|
|
decorator: "WALLET",
|
|
},
|
|
...constructFilesTreeForNavigation(library),
|
|
{
|
|
id: 13,
|
|
name: "Edit account",
|
|
pageTitle: "your account",
|
|
decorator: "EDIT_ACCOUNT",
|
|
children: null,
|
|
ignore: true,
|
|
},
|
|
{
|
|
id: 14,
|
|
name: "Settings",
|
|
pageTitle: "your settings",
|
|
decorator: "SETTINGS",
|
|
children: null,
|
|
ignore: true,
|
|
},
|
|
{
|
|
id: 15,
|
|
name: null,
|
|
pageTitle: "files",
|
|
decorator: "FILE",
|
|
children: null,
|
|
ignore: true,
|
|
},
|
|
];
|