mirror of
https://github.com/Lissy93/dashy.git
synced 2025-09-25 10:48:50 +02:00
🔀 Merge pull request #1909 from dkadioglu/patch-1
Add Widget for Chuck Norris quotes
This commit is contained in:
commit
3890c5006a
@ -29,6 +29,7 @@ Dashy has support for displaying dynamic content in the form of widgets. There a
|
|||||||
- [Stock Price History](#stock-price-history)
|
- [Stock Price History](#stock-price-history)
|
||||||
- [ETH Gas Prices](#eth-gas-prices)
|
- [ETH Gas Prices](#eth-gas-prices)
|
||||||
- [Joke of the Day](#joke)
|
- [Joke of the Day](#joke)
|
||||||
|
- [Chuck Norris quotes](#chucknorris)
|
||||||
- [XKCD Comics](#xkcd-comics)
|
- [XKCD Comics](#xkcd-comics)
|
||||||
- [Flight Data](#flight-data)
|
- [Flight Data](#flight-data)
|
||||||
- [NASA APOD](#astronomy-picture-of-the-day)
|
- [NASA APOD](#astronomy-picture-of-the-day)
|
||||||
@ -1001,6 +1002,36 @@ Renders a programming or generic joke. Data is fetched from the [JokesAPI](https
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
### Chuck Norris quotes
|
||||||
|
|
||||||
|
Renders a Chuck Norris quote. Data is fetched from the [ChuckNorrisAPI](https://api.chucknorris.io/) by @matchilling. All fields are optional.
|
||||||
|
|
||||||
|
<p align="center"><img width="400" src="https://tbd" /></p>
|
||||||
|
|
||||||
|
#### Options
|
||||||
|
|
||||||
|
**Field** | **Type** | **Required** | **Description**
|
||||||
|
--- | --- | --- | ---
|
||||||
|
**`categories`** | `string` | _Optional_ | Set the category of jokes to return. Use a string to specify a single category, or an array to pass in multiple options. Available options are: `animal`,`career`,`celebrity`,`dev`,`explicit`,`fashion`,`food`,`history`,`money`,`movie`,`music`,`political`,`religion`,`science`,`sport` and `travel`. An up-to-date list of supported categories can be found [here](https://api.chucknorris.io/jokes/categories). Defaults to not explicitely set and therefore any of the categories can come up.
|
||||||
|
|
||||||
|
#### Example
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- type: chucknorris
|
||||||
|
options:
|
||||||
|
categories: history,sport
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Info
|
||||||
|
|
||||||
|
- **CORS**: 🟢 Enabled
|
||||||
|
- **Auth**: 🟢 Not Required
|
||||||
|
- **Price**: 🟢 Free
|
||||||
|
- **Host**: Managed Instance
|
||||||
|
- **Privacy**: _See [matchilling's Privacy Policy](https://api.chucknorris.io/privacy)_
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
### XKCD Comics
|
### 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. All fields are optional.
|
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. All fields are optional.
|
||||||
|
66
src/components/Widgets/ChuckNorris.vue
Normal file
66
src/components/Widgets/ChuckNorris.vue
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<template>
|
||||||
|
<div class="chuckNorris-wrapper">
|
||||||
|
<p class="chuckNorris chuckNorris-line">{{ chuckNorrisLine }}</p>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios';
|
||||||
|
import WidgetMixin from '@/mixins/WidgetMixin';
|
||||||
|
import { widgetApiEndpoints } from '@/utils/defaults';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mixins: [WidgetMixin],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
chuckNorrisLine: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
/* Format the users preferred categories */
|
||||||
|
categories() {
|
||||||
|
let usersChoice = this.options.categories;
|
||||||
|
if (!usersChoice) return '';
|
||||||
|
if (Array.isArray(usersChoice)) usersChoice = usersChoice.join(',');
|
||||||
|
const categories = ["animal","career","celebrity","dev","explicit","fashion","food","history","money","movie","music","political","religion","science","sport","travel"];
|
||||||
|
if (categories.some((cat) => usersChoice.toLowerCase().includes(cat))) return usersChoice;
|
||||||
|
return '';
|
||||||
|
},
|
||||||
|
/* Combine data parameters for the API endpoint */
|
||||||
|
endpoint() {
|
||||||
|
if (this.categories !== '') return `${widgetApiEndpoints.chuckNorris}?category=${this.categories}`;
|
||||||
|
return `${widgetApiEndpoints.chuckNorris}`;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/* Make GET request to ChuckNorris API endpoint */
|
||||||
|
fetchData() {
|
||||||
|
axios.get(this.endpoint)
|
||||||
|
.then((response) => {
|
||||||
|
this.processData(response.data);
|
||||||
|
})
|
||||||
|
.catch((dataFetchError) => {
|
||||||
|
this.error('Unable to fetch any Chuck Norris quote', dataFetchError);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
this.finishLoading();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/* Assign data variables to the returned data */
|
||||||
|
processData(data) {
|
||||||
|
this.chuckNorrisLine = data.value;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.chuckNorris-wrapper {
|
||||||
|
p.chuckNorris {
|
||||||
|
color: var(--widget-text-color);
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
@ -49,15 +49,16 @@ const COMPAT = {
|
|||||||
anonaddy: 'addy.io',
|
anonaddy: 'addy.io',
|
||||||
apod: 'Apod',
|
apod: 'Apod',
|
||||||
'blacklist-check': 'BlacklistCheck',
|
'blacklist-check': 'BlacklistCheck',
|
||||||
|
chucknorris: 'ChuckNorris',
|
||||||
clock: 'Clock',
|
clock: 'Clock',
|
||||||
|
'code-stats': 'CodeStats',
|
||||||
|
'covid-stats': 'CovidStats',
|
||||||
'crypto-price-chart': 'CryptoPriceChart',
|
'crypto-price-chart': 'CryptoPriceChart',
|
||||||
'crypto-watch-list': 'CryptoWatchList',
|
'crypto-watch-list': 'CryptoWatchList',
|
||||||
'custom-search': 'CustomSearch',
|
'custom-search': 'CustomSearch',
|
||||||
'custom-list': 'CustomList',
|
'custom-list': 'CustomList',
|
||||||
'cve-vulnerabilities': 'CveVulnerabilities',
|
'cve-vulnerabilities': 'CveVulnerabilities',
|
||||||
'domain-monitor': 'DomainMonitor',
|
'domain-monitor': 'DomainMonitor',
|
||||||
'code-stats': 'CodeStats',
|
|
||||||
'covid-stats': 'CovidStats',
|
|
||||||
'drone-ci': 'DroneCi',
|
'drone-ci': 'DroneCi',
|
||||||
embed: 'EmbedWidget',
|
embed: 'EmbedWidget',
|
||||||
'eth-gas-prices': 'EthGasPrices',
|
'eth-gas-prices': 'EthGasPrices',
|
||||||
@ -81,16 +82,16 @@ const COMPAT = {
|
|||||||
'gl-network-traffic': 'GlNetworkTraffic',
|
'gl-network-traffic': 'GlNetworkTraffic',
|
||||||
'gl-system-load': 'GlSystemLoad',
|
'gl-system-load': 'GlSystemLoad',
|
||||||
'gl-cpu-temp': 'GlCpuTemp',
|
'gl-cpu-temp': 'GlCpuTemp',
|
||||||
|
'gluetun-status': 'GluetunStatus',
|
||||||
'health-checks': 'HealthChecks',
|
'health-checks': 'HealthChecks',
|
||||||
'hackernews-trending': 'HackernewsTrending',
|
'hackernews-trending': 'HackernewsTrending',
|
||||||
'gluetun-status': 'GluetunStatus',
|
|
||||||
iframe: 'IframeWidget',
|
iframe: 'IframeWidget',
|
||||||
image: 'ImageWidget',
|
image: 'ImageWidget',
|
||||||
joke: 'Jokes',
|
joke: 'Jokes',
|
||||||
|
linkding: 'Linkding',
|
||||||
'minecraft-status': 'MinecraftStatus',
|
'minecraft-status': 'MinecraftStatus',
|
||||||
'mullvad-status': 'MullvadStatus',
|
'mullvad-status': 'MullvadStatus',
|
||||||
mvg: 'Mvg',
|
mvg: 'Mvg',
|
||||||
linkding: 'Linkding',
|
|
||||||
'mvg-connection': 'MvgConnection',
|
'mvg-connection': 'MvgConnection',
|
||||||
'nd-cpu-history': 'NdCpuHistory',
|
'nd-cpu-history': 'NdCpuHistory',
|
||||||
'nd-load-history': 'NdLoadHistory',
|
'nd-load-history': 'NdLoadHistory',
|
||||||
|
@ -227,6 +227,7 @@ module.exports = {
|
|||||||
anonAddy: 'https://app.addy.io',
|
anonAddy: 'https://app.addy.io',
|
||||||
astronomyPictureOfTheDay: 'https://apod.as93.net/apod',
|
astronomyPictureOfTheDay: 'https://apod.as93.net/apod',
|
||||||
blacklistCheck: 'https://api.blacklistchecker.com/check',
|
blacklistCheck: 'https://api.blacklistchecker.com/check',
|
||||||
|
chuckNorris: 'https://api.chucknorris.io/jokes/random',
|
||||||
codeStats: 'https://codestats.net/',
|
codeStats: 'https://codestats.net/',
|
||||||
covidStats: 'https://disease.sh/v3/covid-19',
|
covidStats: 'https://disease.sh/v3/covid-19',
|
||||||
cryptoPrices: 'https://api.coingecko.com/api/v3/coins/',
|
cryptoPrices: 'https://api.coingecko.com/api/v3/coins/',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user