mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-03 11:54:46 +02:00
Commiting in order to switch computers
This commit is contained in:
parent
491c07ed67
commit
c92083f88f
@ -49,6 +49,20 @@ Maximum of 24mb of storage per user. Please do not repeatedly hit the endpoint,
|
|||||||
- Add your `zone_id` (found in the Overview tab of your desired domain on Cloudflare)
|
- Add your `zone_id` (found in the Overview tab of your desired domain on Cloudflare)
|
||||||
- Add your `route`, which should be a domain or host, supporting a wildcard
|
- Add your `route`, which should be a domain or host, supporting a wildcard
|
||||||
|
|
||||||
|
```toml
|
||||||
|
name = "dashy-worker"
|
||||||
|
type = "javascript"
|
||||||
|
|
||||||
|
workers_dev = true
|
||||||
|
route = "example.com/*"
|
||||||
|
zone_id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
||||||
|
account_id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
||||||
|
|
||||||
|
kv_namespaces = [
|
||||||
|
{ binding = "DASHY_CLOUD_BACKUP", id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" }
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
#### Complete `index.js`
|
#### Complete `index.js`
|
||||||
- Write code to handle your requests, and interact with any other data sources in this file
|
- Write code to handle your requests, and interact with any other data sources in this file
|
||||||
- Generally, this is done within an event listener for 'fetch', and returns a promise
|
- Generally, this is done within an event listener for 'fetch', and returns a promise
|
||||||
@ -66,7 +80,7 @@ async function handleRequest(request) {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
- For the code used for Dashy's cloud service, see [here](https://notes.aliciasykes.com/p/j2F1deljv1)
|
- For the code used for Dashy's cloud service, see [here](https://gist.github.com/Lissy93/d19b43d50f30e02fa25f349cf5cb5ed8#file-index-js)
|
||||||
|
|
||||||
|
|
||||||
#### Commands
|
#### Commands
|
||||||
|
@ -54,6 +54,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
/* Sets the theme, by updating data-theme attribute on the html tag */
|
||||||
setLocalTheme(newTheme) {
|
setLocalTheme(newTheme) {
|
||||||
const htmlTag = document.getElementsByTagName('html')[0];
|
const htmlTag = document.getElementsByTagName('html')[0];
|
||||||
if (htmlTag.hasAttribute('data-theme')) htmlTag.removeAttribute('data-theme');
|
if (htmlTag.hasAttribute('data-theme')) htmlTag.removeAttribute('data-theme');
|
||||||
|
@ -1,7 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<nav class="side-bar">
|
<nav class="side-bar">
|
||||||
<div v-for="(section, index) in sections" :key="index">
|
<div v-for="(section, index) in sections" :key="index">
|
||||||
<SideBarItem class="item" :icon="section.icon" :title="section.title" />
|
<SideBarItem
|
||||||
|
class="item"
|
||||||
|
:icon="section.icon"
|
||||||
|
:title="section.name"
|
||||||
|
:click="launchItem"
|
||||||
|
/>
|
||||||
|
<SideBarSection v-if="isOpen" :items="section.items" />
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
</template>
|
</template>
|
||||||
@ -9,6 +15,7 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
import SideBarItem from '@/components/Workspace/SideBarItem.vue';
|
import SideBarItem from '@/components/Workspace/SideBarItem.vue';
|
||||||
|
import SideBarSection from '@/components/Workspace/SideBarSection.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SideBar',
|
name: 'SideBar',
|
||||||
@ -16,8 +23,19 @@ export default {
|
|||||||
props: {
|
props: {
|
||||||
sections: Array,
|
sections: Array,
|
||||||
},
|
},
|
||||||
|
data: () => ({
|
||||||
|
isOpen: false,
|
||||||
|
}),
|
||||||
components: {
|
components: {
|
||||||
SideBarItem,
|
SideBarItem,
|
||||||
|
SideBarSection,
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
launchItem() {
|
||||||
|
this.isOpen = !this.isOpen;
|
||||||
|
// Open SideBarSection, passing in items[]
|
||||||
|
// this.$emit('launch', url);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="side-bar-item">
|
<div class="side-bar-item" @click="click()">
|
||||||
<Icon v-if="icon" :icon="icon" size="small" />
|
<Icon v-if="icon" :icon="icon" size="small" :url="url" />
|
||||||
<p v-else>{{ title }}</p>
|
<p v-else>{{ title }}</p>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -8,7 +8,6 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
import Icon from '@/components/LinkItems/ItemIcon.vue';
|
import Icon from '@/components/LinkItems/ItemIcon.vue';
|
||||||
import Defaults from '@/utils/defaults';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SideBarItem',
|
name: 'SideBarItem',
|
||||||
@ -16,21 +15,12 @@ export default {
|
|||||||
props: {
|
props: {
|
||||||
icon: String,
|
icon: String,
|
||||||
title: String,
|
title: String,
|
||||||
},
|
url: String,
|
||||||
mounted() {
|
click: Function,
|
||||||
this.initiateFontAwesome();
|
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
Icon,
|
Icon,
|
||||||
},
|
},
|
||||||
methods: {
|
|
||||||
initiateFontAwesome() {
|
|
||||||
const fontAwesomeScript = document.createElement('script');
|
|
||||||
const faKey = this.config.appConfig.fontAwesomeKey || Defaults.fontAwesomeKey;
|
|
||||||
fontAwesomeScript.setAttribute('src', `https://kit.fontawesome.com/${faKey}.js`);
|
|
||||||
document.head.appendChild(fontAwesomeScript);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
52
src/components/Workspace/SideBarSection.vue
Normal file
52
src/components/Workspace/SideBarSection.vue
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
<template>
|
||||||
|
<div class="sub-side-bar">
|
||||||
|
<div v-for="(item, index) in items" :key="index">
|
||||||
|
<SideBarItem
|
||||||
|
class="item"
|
||||||
|
:icon="item.icon"
|
||||||
|
:title="item.title"
|
||||||
|
:url="item.url"
|
||||||
|
:click="launchItem"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
import SideBarItem from '@/components/Workspace/SideBarItem.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'SideBarSection',
|
||||||
|
inject: ['config'],
|
||||||
|
props: {
|
||||||
|
items: Array,
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
SideBarItem,
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
launchItem(url) {
|
||||||
|
this.$emit('launch', url);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@import '@/styles/media-queries.scss';
|
||||||
|
@import '@/styles/style-helpers.scss';
|
||||||
|
|
||||||
|
div.sub-side-bar {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
background: var(--side-bar-background);
|
||||||
|
color: var(--side-bar-color);
|
||||||
|
border: 1px dashed red;
|
||||||
|
text-align: center;
|
||||||
|
.item:not(:last-child) {
|
||||||
|
border-bottom: 1px dashed var(--side-bar-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
@ -9,15 +9,6 @@
|
|||||||
highly customizable and functianl dashboard, in order to improvde productivity
|
highly customizable and functianl dashboard, in order to improvde productivity
|
||||||
and enable easy organisation of running services or web links.
|
and enable easy organisation of running services or web links.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
|
||||||
Dashy is a web-based project with PWA mobile support. It's written in TypeScript,
|
|
||||||
and using the Vue.js framework, with a simple Node.js backend.
|
|
||||||
It can be run in a light-weight Alpine Docker container, with support for
|
|
||||||
healthcheck monitoring, self-updating and automatic restarting. Configuration
|
|
||||||
is done with a single YAML file, that is merged with the application when it
|
|
||||||
is built / compiled. The configuration can me modified using the UI, and then
|
|
||||||
exported back into the main config file.
|
|
||||||
</p>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
@ -51,7 +42,7 @@
|
|||||||
<img class="aht-pic" src="https://i.ibb.co/FnxqTfx/aht-bot-round.png" alt="Alicia Sykes">
|
<img class="aht-pic" src="https://i.ibb.co/FnxqTfx/aht-bot-round.png" alt="Alicia Sykes">
|
||||||
</a>
|
</a>
|
||||||
Dashy is developed an maintained by <a href="https://aliciasykes.com">Alicia Sykes</a>
|
Dashy is developed an maintained by <a href="https://aliciasykes.com">Alicia Sykes</a>
|
||||||
(<a href="https://github.com/lissy93">@Lissy93</a>).
|
(<a href="https://github.com/lissy93">@Lissy93</a>), with support from the community.
|
||||||
<ul>
|
<ul>
|
||||||
<li><b>PGP Key</b> - <a href="https://keybase.io/aliciasykes/pgp_keys.asc?fingerprint=0688f8d34587d954e9e51fb8fedb68f55c0283a7"><code>0688 F8D3 4587 D954 E9E5 1FB8 FEDB 68F5 5C02 83A7</code></a></li>
|
<li><b>PGP Key</b> - <a href="https://keybase.io/aliciasykes/pgp_keys.asc?fingerprint=0688f8d34587d954e9e51fb8fedb68f55c0283a7"><code>0688 F8D3 4587 D954 E9E5 1FB8 FEDB 68F5 5C02 83A7</code></a></li>
|
||||||
<li><b>BTC Address</b> - <code>3853bSxupMjvxEYfwGDGAaLZhTKxB2vEVC</code></li>
|
<li><b>BTC Address</b> - <code>3853bSxupMjvxEYfwGDGAaLZhTKxB2vEVC</code></li>
|
||||||
@ -101,8 +92,8 @@ article.about {
|
|||||||
background: var(--about-page-background);
|
background: var(--about-page-background);
|
||||||
color: var(--about-page-color);
|
color: var(--about-page-color);
|
||||||
width: 80%;
|
width: 80%;
|
||||||
max-width: 800px;
|
max-width: 1000px;
|
||||||
margin: 1rem auto;
|
margin: 1rem auto 2.5rem auto;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid var(--about-page-accent);
|
border: 1px solid var(--about-page-accent);
|
||||||
border-radius: var(--curve-factor);
|
border-radius: var(--curve-factor);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="work-space">
|
<div class="work-space">
|
||||||
<SideBar :sections="sections" />
|
<SideBar :sections="sections" @launch="launchService" />
|
||||||
<WebContent :url="url" />
|
<WebContent :url="url" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -9,11 +9,13 @@
|
|||||||
|
|
||||||
import SideBar from '@/components/Workspace/SideBar';
|
import SideBar from '@/components/Workspace/SideBar';
|
||||||
import WebContent from '@/components/Workspace/WebContent';
|
import WebContent from '@/components/Workspace/WebContent';
|
||||||
|
import Defaults, { localStorageKeys } from '@/utils/defaults';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Workspace',
|
name: 'Workspace',
|
||||||
props: {
|
props: {
|
||||||
sections: Array,
|
sections: Array,
|
||||||
|
appConfig: Object,
|
||||||
},
|
},
|
||||||
data: () => ({
|
data: () => ({
|
||||||
url: '',
|
url: '',
|
||||||
@ -22,6 +24,27 @@ export default {
|
|||||||
SideBar,
|
SideBar,
|
||||||
WebContent,
|
WebContent,
|
||||||
},
|
},
|
||||||
|
methods: {
|
||||||
|
launchService(url) {
|
||||||
|
this.url = url;
|
||||||
|
},
|
||||||
|
setTheme() {
|
||||||
|
const theme = localStorage[localStorageKeys.THEME] || this.confTheme || Defaults.theme;
|
||||||
|
const htmlTag = document.getElementsByTagName('html')[0];
|
||||||
|
if (htmlTag.hasAttribute('data-theme')) htmlTag.removeAttribute('data-theme');
|
||||||
|
htmlTag.setAttribute('data-theme', theme);
|
||||||
|
},
|
||||||
|
initiateFontAwesome() {
|
||||||
|
const fontAwesomeScript = document.createElement('script');
|
||||||
|
const faKey = this.appConfig.fontAwesomeKey || Defaults.fontAwesomeKey;
|
||||||
|
fontAwesomeScript.setAttribute('src', `https://kit.fontawesome.com/${faKey}.js`);
|
||||||
|
document.head.appendChild(fontAwesomeScript);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.setTheme();
|
||||||
|
this.initiateFontAwesome();
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user