-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
pages and sections
You can have additional pages within your dashboard, with each having it's own config file. The config files for sub-pages can either be stored locally, or hosted separately. A link to each additional page will be displayed in the navigation bar.
You can edit additional pages using the interactive editor, exactly the same was as your primary page (so long as it's local). But please save changes to one page, before you start editing the next.
To get started, create a new .yml
config file for your sub-page, placing it within /app/user-data
. Then within your primary conf.yml
, choose a name, and specify the path to the new file.
This is an example. Make sure to add this to the topmost line above appConfig:, or anywhere else appropriately, to match the yml syntax.
pages:
- name: Networking Services
path: 'networking.yml'
- name: Work Stuff
path: 'work.yml'
The next step is to create the new page, if you mounted /app/user-data
in the docker command and not a volume, you can simply create the new page into that folder on the host.
If you mounted /app/user-data/conf.yml
in docker, you can either switch to the volume or create another bind mount to your new additional page.
If you're sub-page is located within /app/user-data
, then you only need to specify the filename, but if it's anywhere else, then the full path is required.
A default template a page can be found here: https://github.com/lissy93/dashy/blob/master/user-data/conf.yml Keep in mind the appConfig cannot be used on subpages and should be removed, for further info see Restrictions
The last very important step is to rebuild dashy, this can be easily done through to UI, by opening the settings menu on the top right, navigato to update config and then recompile application.
Now if you reload the page, on the top right there should be a new button to navigate to the new page. 🎉
Config files don't need to be local, you can store them anywhere, and data will be imported as sub-pages on page load.
For example:
pages:
- name: Getting Started
path: 'https://snippet.host/tvcw/raw'
- name: Homelab
path: 'https://snippet.host/tetp/raw'
- name: Browser Startpage
path: 'https://snippet.host/zcom/raw'
There are many options of how this can be used. You could store your config within a Git repository, in order to easily track and rollback changes. Or host your config on your NAS, to have it backed up with the rest of your files. Or use a hosted paste service, for example snippet.host, which supports never-expiring CORS-enabled pastes, which can also be edited later.
You will obviously not be able to write updates to remote configs directly through the UI editor, but you can still make and preview changes, then use the export menu to get a copy of the new config, which can then be pasted to the remote source manually. The config file must, of course be accessible from within Dashy. If your config contains sensitive info (like API keys, credentials, secret URLs, etc), take care not to expose it to the internet.
The following example shows creating a config, publishing it as a Gist, copying the URL to the raw file, and using it within your dashboard.
Only top-level fields supported by sub-pages are pageInfo
and sections
. The appConfig
and pages
will always be inherited from your main conf.yml
file. Other than that, sub-pages behave exactly the same as your default view, and can contain sections, items, widgets and page info like nav links, title and logo.
Note that since page paths are required by the router, they are set at build-time, not run-time, and so a rebuild (happens automatically) is required for changes to page paths to take effect (this only applies to changes to the pages
array, rebuild isn't required for editing page content).
A normal section will contain zero or more items, for example:
- name: Coding
icon: far fa-code
items:
- title: GitHub
url: https://github.com/
- title: StackOverflow
url: http://stackoverflow.com/
But items can also be grouped together, referred to as sub-items. This is useful for a group of less frequently used items, which you don't want to take up too much space.
Item groups may also have an optional title.
- name: Coding
icon: far fa-code
items:
- title: Normal Item 1
- title: Normal Item 2
- subItems:
- title: JavaScript
url: https://developer.mozilla.org
icon: si-javascript
- title: TypeScript
url: https://www.typescriptlang.org/docs
icon: si-typescript
- title: Svelt
url: https://svelte.dev/docs
icon: si-svelte
- title: Go
url: https://go.dev/doc
icon: si-go