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 @@ {{wordDefinitionLookup}} + + D + T + UD + W @@ -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 @@ - - - ({{definition.type}}.) {{definition.definition}} - {{definition.synonyms.join(', ').replace(/_/g, ' ')}} - - + + + + ({{definition.type}}.) {{definition.definition}} + {{definition.synonyms.join(', ').replace(/_/g, ' ')}} + + + No definitions found for '{{ expression }}'. +
({{definition.type}}.) {{definition.definition}}