[Feature Request] Add Tabs to accomodate for several homepages #1316
-
DescriptionFor a power user with many services and many bookmarks, the homepage gets quite crowded. OtherNo response |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 2 replies
-
Yes, this would be great, to create subpages (similar to Homer or Dashy). I am deploying a second docker container to host the second page, but would prefer just to have a single container with two or more subpages. |
Beta Was this translation helpful? Give feedback.
-
I would potentially like to take a stab at this. The biggest dilemma in my mind is the configuration for it. It feels as though the tab could be set under layout:
Media:
tab: 2
style: row
columns: 4 I would need to dive deeper into sorting to make sure I understand how that part happens but the next issue will be bookmarks, which I think similarly need a way to specify tags. Imo, it might be a bit off topic for this particular discussion, but I think maybe they layout schema in general could use an update (would require a major version change). Here is just a rough example of what I think might be a decent alternative: layout:
boomarks:
- "Social Media"
- "Developer Tools"
- "Other Utilities":
tab: 2
services:
- Media:
tab: 2
style: row
columns: 4 Or something a little more data-friendly (inspired by helm configs): layout:
boomarks:
- name: "Social Media"
- name: "Developer Tools"
- name: "Other Utilities"
tab: 2
services:
- name: "Media"
tab: 2
style: row
columns: 4 Which unmarshals to this very nice JSON: {
"layout": {
"boomarks": [
{
"name": "Social Media"
},
{
"name": "Developer Tools"
},
{
"name": "Other Utilities",
"tab": 2
}
],
"services": [
{
"name": "Media",
"tab": 2,
"style": "row",
"columns": 4
}
]
}
} |
Beta Was this translation helpful? Give feedback.
-
Regardless of the tab functionality, I'd really appreciate the inclusion of bookmarks in the layout section. This would also be a great opportunity to add group icons to bookmarks, just as they work for services right now. |
Beta Was this translation helpful? Give feedback.
-
I just realised i really want this. I have one homepage at the moment which has all my services across 4 machines clustered by service type (media / monitoring etc)... but it would be sooo handy to have a second tab / page with the same services but this time clustered by the server they're running on. please please someone make this happen. |
Beta Was this translation helpful? Give feedback.
-
Closed by #1981 |
Beta Was this translation helpful? Give feedback.
-
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. |
Beta Was this translation helpful? Give feedback.
Closed by #1981
Thanks to denispapec