mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-26 23:24:38 +02:00
✨ Adds XKCD comic widget
This commit is contained in:
parent
985b0000fa
commit
9d21fa48d0
@ -140,6 +140,26 @@ Shows recent price history for a given crypto asset, using price data fetched fr
|
|||||||
numDays: 7
|
numDays: 7
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### XKCD Comics
|
||||||
|
|
||||||
|
Have a laugh with the daily comic from [XKCD](https://xkcd.com/). A classic webcomic website covering everything from Linux, math, romance, science and language.
|
||||||
|
|
||||||
|
##### Options
|
||||||
|
|
||||||
|
**Field** | **Type** | **Required** | **Description**
|
||||||
|
--- | --- | --- | ---
|
||||||
|
**`comic`** | `string | number` | _Optional_ | Choose which comic to display. Set to either `random`, `latest` or the series number of a specific comic, like `627`. Defaults to `latest`
|
||||||
|
|
||||||
|
##### Example
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: XKCD of the Day
|
||||||
|
icon: fas fa-laugh
|
||||||
|
type: xkcd-comic
|
||||||
|
options:
|
||||||
|
comic: latest
|
||||||
|
```
|
||||||
|
|
||||||
### TFL Status
|
### TFL Status
|
||||||
|
|
||||||
Shows real-time tube status of the London Underground. All options are optional.
|
Shows real-time tube status of the London Underground. All options are optional.
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
<TflStatus v-else-if="widgetType === 'tfl-status'" :options="widgetOptions" />
|
<TflStatus v-else-if="widgetType === 'tfl-status'" :options="widgetOptions" />
|
||||||
<CryptoPriceChart v-else-if="widgetType === 'crypto-price-chart'" :options="widgetOptions" />
|
<CryptoPriceChart v-else-if="widgetType === 'crypto-price-chart'" :options="widgetOptions" />
|
||||||
<CryptoWatchList v-else-if="widgetType === 'crypto-watch-list'" :options="widgetOptions" />
|
<CryptoWatchList v-else-if="widgetType === 'crypto-watch-list'" :options="widgetOptions" />
|
||||||
|
<XkcdComic v-else-if="widgetType === 'xkcd-comic'" :options="widgetOptions" />
|
||||||
</Collapsable>
|
</Collapsable>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -27,6 +28,7 @@ import WeatherForecast from '@/components/Widgets/WeatherForecast.vue';
|
|||||||
import TflStatus from '@/components/Widgets/TflStatus.vue';
|
import TflStatus from '@/components/Widgets/TflStatus.vue';
|
||||||
import CryptoPriceChart from '@/components/Widgets/CryptoPriceChart.vue';
|
import CryptoPriceChart from '@/components/Widgets/CryptoPriceChart.vue';
|
||||||
import CryptoWatchList from '@/components/Widgets/CryptoWatchList.vue';
|
import CryptoWatchList from '@/components/Widgets/CryptoWatchList.vue';
|
||||||
|
import XkcdComic from '@/components/Widgets/XkcdComic.vue';
|
||||||
import Collapsable from '@/components/LinkItems/Collapsable.vue';
|
import Collapsable from '@/components/LinkItems/Collapsable.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -39,6 +41,7 @@ export default {
|
|||||||
TflStatus,
|
TflStatus,
|
||||||
CryptoPriceChart,
|
CryptoPriceChart,
|
||||||
CryptoWatchList,
|
CryptoWatchList,
|
||||||
|
XkcdComic,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
widget: Object,
|
widget: Object,
|
||||||
|
82
src/components/Widgets/XkcdComic.vue
Normal file
82
src/components/Widgets/XkcdComic.vue
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
<template>
|
||||||
|
<div class="xkcd-wrapper">
|
||||||
|
<h3 class="xkcd-title">{{ title }}</h3>
|
||||||
|
<a :href="`https://xkcd.com/${comicNum}/`">
|
||||||
|
<img :src="image" :alt="alt" class="xkcd-comic" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios';
|
||||||
|
import WidgetMixin from '@/mixins/WidgetMixin';
|
||||||
|
import ErrorHandler from '@/utils/ErrorHandler';
|
||||||
|
import { widgetApiEndpoints } from '@/utils/defaults';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mixins: [WidgetMixin],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
image: null,
|
||||||
|
title: '',
|
||||||
|
alt: '',
|
||||||
|
comicNum: '',
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.fetchData();
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
/* Let user select which comic to display: random, latest or a specific number */
|
||||||
|
comicNumber() {
|
||||||
|
const usersChoice = this.options.comic;
|
||||||
|
if (!usersChoice) {
|
||||||
|
return 'latest';
|
||||||
|
} else if (usersChoice === 'random') {
|
||||||
|
return Math.abs(Math.floor(Math.random() * (1 - 2553)));
|
||||||
|
} else if (!Number.isNaN(usersChoice)) {
|
||||||
|
return usersChoice;
|
||||||
|
}
|
||||||
|
return 'latest';
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/* Make GET request to CoinGecko API endpoint */
|
||||||
|
fetchData() {
|
||||||
|
axios.get(`${widgetApiEndpoints.xkcdComic}?comic=${this.comicNumber}`)
|
||||||
|
.then((response) => {
|
||||||
|
this.processData(response.data);
|
||||||
|
})
|
||||||
|
.catch((dataFetchError) => {
|
||||||
|
ErrorHandler('Unable to fetch data', dataFetchError);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/* Assign data variables to the returned data */
|
||||||
|
processData(data) {
|
||||||
|
this.image = data.img;
|
||||||
|
this.title = data.safe_title;
|
||||||
|
this.alt = data.alt;
|
||||||
|
this.comicNum = data.num;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.xkcd-wrapper {
|
||||||
|
.xkcd-title {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
margin: 0.25rem auto;
|
||||||
|
color: var(--widget-text-color);
|
||||||
|
}
|
||||||
|
.xkcd-comic {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 380px;
|
||||||
|
margin: 0.25rem auto;
|
||||||
|
border-radius: var(--curve-factor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
@ -210,6 +210,7 @@ module.exports = {
|
|||||||
tflStatus: 'https://api.tfl.gov.uk/line/mode/tube/status',
|
tflStatus: 'https://api.tfl.gov.uk/line/mode/tube/status',
|
||||||
cryptoPrices: 'https://api.coingecko.com/api/v3/coins/',
|
cryptoPrices: 'https://api.coingecko.com/api/v3/coins/',
|
||||||
cryptoWatchList: 'https://api.coingecko.com/api/v3/coins/markets/',
|
cryptoWatchList: 'https://api.coingecko.com/api/v3/coins/markets/',
|
||||||
|
xkcdComic: 'https://xkcd.vercel.app/',
|
||||||
},
|
},
|
||||||
/* URLs for web search engines */
|
/* URLs for web search engines */
|
||||||
searchEngineUrls: {
|
searchEngineUrls: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user