From 60fd33a0f9ce93b44ecfaa8b290421c33f4fdab8 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Thu, 21 Jan 2021 17:37:57 -0600 Subject: [PATCH] Added external definition services --- electron/Index.vue | 69 +++++++++++++++++++++++ learn/dictionary/WordDefinition.vue | 15 +++-- learn/dictionary/definition-dictionary.ts | 4 +- 3 files changed, 80 insertions(+), 8 deletions(-) diff --git a/electron/Index.vue b/electron/Index.vue index 9d9af39..9d335e1 100644 --- a/electron/Index.vue +++ b/electron/Index.vue @@ -93,6 +93,11 @@ @@ -128,6 +133,7 @@ import * as SlimcatImporter from './importer'; import _ from 'lodash'; import { EventBus } from '../chat/preview/event-bus'; + import { DefinitionDictionary } from '../learn/dictionary/definition-dictionary'; // import Bluebird from 'bluebird'; // import Connection from '../fchat/connection'; // import Notifications from './notifications'; @@ -518,6 +524,30 @@ showLogs(): void { (this.$refs['logsDialog']).show(); } + + + getCleanedWordDefinition(): string { + return DefinitionDictionary.cleanExpression(this.wordDefinitionLookup); + } + + async openDefinitionWithDictionary(): Promise { + await electron.remote.shell.openExternal(`https://www.dictionary.com/browse/${encodeURI(this.getCleanedWordDefinition())}`); + } + + + async openDefinitionWithThesaurus(): Promise { + await electron.remote.shell.openExternal(`https://www.thesaurus.com/browse/${encodeURI(this.getCleanedWordDefinition())}`); + } + + + async openDefinitionWithUrbanDictionary(): Promise { + await electron.remote.shell.openExternal(`https://www.urbandictionary.com/define.php?term=${encodeURIComponent(this.getCleanedWordDefinition())}`); + } + + + async openDefinitionWithWikipedia(): Promise { + await electron.remote.shell.openExternal(`https://en.wikipedia.org/wiki/${encodeURI(this.getCleanedWordDefinition())}`); + } } @@ -601,4 +631,43 @@ } } } + + + .btn.wordDefBtn { + background-color: red; + padding: 0.2rem 0.2rem; + line-height: 90%; + margin-right: 0.2rem; + text-align: center; + + i { + font-style: normal !important; + color: white; + font-weight: bold + } + + &.thesaurus { + background-color: #F44725 + } + + &.urbandictionary { + background-color: #d96a36; + + i { + color: #fadf4b; + } + } + + &.dictionary { + background-color: #314ca7; + } + + &.wikipedia { + background-color: white; + + i { + color: black; + } + } + } diff --git a/learn/dictionary/WordDefinition.vue b/learn/dictionary/WordDefinition.vue index e7dee90..e770ffa 100644 --- a/learn/dictionary/WordDefinition.vue +++ b/learn/dictionary/WordDefinition.vue @@ -1,10 +1,13 @@