diff --git a/app.js b/app.js index afd1fef..0de3e97 100644 --- a/app.js +++ b/app.js @@ -3,8 +3,7 @@ let kara = new Vue({ data: { features: { changeName: false, - themes: true, - ownReactions: true, + themes: false, setNameAtStart: true }, messages: [], @@ -19,7 +18,6 @@ let kara = new Vue({ username: '', themes: null, activeTheme: 'slate', - talk: false, addModal: { includeAll: false, keywords: '', @@ -33,33 +31,12 @@ let kara = new Vue({ location: '' }, notes: [], - answers: [ - { - includeAll: false, - keywords: [ - 'hi', 'hallo', 'servas', 'servus', 'hello' - ], - responses: [ - 'Hey! :)', - 'Hello!', - 'How are you?' - ] - }, - { - includeAll: true, - keywords: [ - 'how', 'are', 'you' - ], - responses: [ - 'I\'m good! Thanks for asking! :) How about you?', - 'A bit tired from trying to do that think called "thinking".. i\'ll figure it out one day.', - 'Wooo! I\'m hyped for party! You\'re in?' - ] - } - ] + reactions: [] }, mounted() { this.getSavedData(); + this.getReactions(); + if (this.features.themes) { this.getBootswatchThemes(); } @@ -88,38 +65,7 @@ let kara = new Vue({ this.scrollDown(); }, methods: { - karaTalks(message) { - var speech = new SpeechSynthesisUtterance(); - - // Set the text and voice attributes. - speech.text = message; - speech.volume = 1; - speech.rate = 1; - speech.pitch = 1; - - window.speechSynthesis.speak(speech); - }, - addMessage(body, bot, me = false) { - this.messages.push({ - body: body, - bot: bot, - command: body.search('/') === 0, - me: me, - time: Date.now() - }) - }, - botMessage(body) { - this.addMessage(body, true); - if (this.talk) { - this.karaTalks(body); - } - }, - userMessage(body) { - this.addMessage(body, false); - this.lastMessage = body; - - this.updateStorage(); - }, + // Initial initialGreeting() { this.botMessage( this.oneOf( @@ -129,8 +75,6 @@ let kara = new Vue({ ] ) ); - - this.updateStorage(); }, welcomeBack() { this.botMessage( @@ -143,6 +87,66 @@ let kara = new Vue({ ) ); }, + + // Name + askForName() { + this.botMessage( + this.oneOf([ + 'May i ask for your name?', + 'Whats your name? :)', + 'How can i call you?', + 'How did your developers call you? :)' + ]) + ); + + this.askedForName = true; + }, + setName(message) { + this.username = message.trim(); + this.settingsModal.username = this.username; + this.askedForName = false; + + this.botMessage( + this.oneOf([ + "That's a beautiful name!", + "Okay, i'll call you " + this.username + " from now on :)", + "Nice to meet you, " + this.username + ". :D" + ]) + ) + + this.updateStorage(); + }, + + // Messages / Chat + addMessage(body, bot, me = false) { + this.messages.push({ + body: body, + bot: bot, + command: body.search('/') === 0, + me: me, + time: Date.now() + }) + }, + addImageMessage(imageObject, bot) { + this.lastMessageData = imageObject; + + this.messages.push({ + body: imageObject.body, + bot: bot, + src: imageObject.src + }); + + this.updateStorage(); + }, + botMessage(message) { + this.addMessage(message, true); + }, + userMessage(body) { + this.addMessage(body, false); + this.lastMessage = body; + + this.updateStorage(); + }, sendMessage() { if (this.chatbox.trim() === '') { return false; @@ -155,6 +159,10 @@ let kara = new Vue({ this.react(this.chatbox); this.chatbox = ''; }, + meMessage(message) { + this.addMessage(this.username + ' ' + message, false, true); + this.react(message, true); + }, react(message, recursive = false) { this.isTyping = true; @@ -173,7 +181,7 @@ let kara = new Vue({ } else if (this.takeNote === true) { this.saveNote(message); } else { - let answer = this.getAnswer(message); + let answer = this.getReaction(message); if (answer) { this.botMessage(answer); } @@ -186,139 +194,80 @@ let kara = new Vue({ }, 1800); } }, - processCommands(message) { - if (this.checkForCommands(message, 'note')) { - let noteToSave = this.checkForCommands(message, 'note'); - this.saveNote(noteToSave); - } - - if (this.checkForCommands(message, 'clear')) { - this.clearChat(); - } + getReaction(message) { + let preserveLastMessageData = false; + message = this.cleanupMessage(message); - if (this.checkForCommands(message, 'weather')) { - this.checkWeather() - } + let keywords = message.split(' '); + let answer = undefined; - if (this.checkForCommands(message, 'joke')) { - this.tellJoke(this.checkForCommands(message, 'joke')) + if (this.lastMessageData.joke && this.includesOneOf(keywords, ['another', 'more'])) { + this.tellJoke(this.lastMessageData.category); + return false; } - if (this.checkForCommands(message, 'me')) { - this.meMessage(this.checkForCommands(message, 'me')) - } - - if (this.checkForCommands(message, 'talk')) { - this.talk = !this.talk; - alert(this.talk); - } - }, - checkForCommands(message, commands) { - if (!Array.isArray(commands)) { - commands = [commands]; + if (this.lastMessageData.meme && this.includesOneOf(keywords, ['another', 'more'])) { + this.getRandomMeme(this.lastMessageData.category); + return false; } - let commandFound = false; - let parameter = false; - - commands.forEach((command) => { - if (commandFound) { - return; + if (this.lastMessageData.isJeopardy) { + if (this.includesAllOf(keywords, ['give', 'up'])) { + this.lastMessageData = {}; + return 'The right question would have been: "' + this.lastMessageData.question + '"'; } - let commandString = '/' + command; - if (message.search(commandString) === 0) { - parameter = message.replace(commandString, '').trim(); - commandFound = true; + if (this.isSimilar(message, this.lastMessageData.question)) { + this.lastMessageData = {}; + return this.oneOf([ + 'Wow! This is the right question.', + 'Correct!' + ]); + } else { + return this.oneOf([ + "Sorry, that's not correct.", + "That's not what we're searching for.", + "Nope, sorry. You can always give up by typing \"I give up\" if you wan't to.", + ]); } - }); - - return parameter ? parameter : commandFound; - }, - scrollDown() { - $('#chat-box').stop().animate({ - scrollTop: ($('#chat-box')[0].scrollHeight * 10) - }, 800); - }, - oneOf(answers) { - let amountOfAnswers = answers.length; - let randomIndex = Math.floor(Math.random() * (amountOfAnswers)); - - return this.convertWildcards(answers[randomIndex]); - }, - convertWildcards(message) { - message = message.replace('$name$', this.username); - message = message.replace('$botname$', this.name); - - return message; - }, - includesOneOf(phrases, wordsToSearch) { - let includes = false; + } - wordsToSearch.forEach((searchWord) => { - if (phrases.includes(searchWord)) { - includes = true; + if (this.lastMessageData.isTrivia) { + if (this.includesAllOf(keywords, ['give', 'up'])) { + this.lastMessageData = {}; + return this.oneOf([ + 'The right answer would have been: "' + this.lastMessageData.question + '"' + ]); } - }) - - return includes; - }, - includesAllOf(phrases, wordsToSearch) { - let includesAllPhrases = true; - wordsToSearch.forEach((searchWord) => { - if (!phrases.includes(searchWord)) { - includesAllPhrases = false; + if (this.isSimilar(message, this.lastMessageData.answer)) { + this.lastMessageData = {}; + return this.oneOf([ + 'Congratulations! This is the correct answer.', + 'Correct!' + ]); + } else { + return this.oneOf([ + "Sorry, that's not correct.", + "That's not what we're searching for.", + "Nope, sorry. You can always give up by typing \"I give up\" if you wan't to.", + ]); } - }) - - return includesAllPhrases; - }, - cleanupMessage(message) { - message = message.toLowerCase(); - return message.replace('?', '') - .replace('!', '') - .replace('.', '') - .replace(',', '') - .replace('-', '') - .replace('_', '') - .replace('#', '') - .replace('\'', '') - .replace('"', '') - .replace('+', '') - .replace('*', '') - .replace('ยง', '') - .replace('$', '') - .replace('%', '') - .replace('&', '') - .replace('/', '') - .replace('(', '') - .replace(')', '') - .replace('=', '') - .replace('\\', '') - .replace('@', '') - .replace('~', '') - .replace('โ€ฆ', ''); - }, - getAnswer(message) { - message = this.cleanupMessage(message); - - let phrases = message.split(' '); - let answer = undefined; + } - if (this.lastMessageData.joke && this.includesOneOf(phrases, ['another', 'more'])) { - this.tellJoke(this.lastMessageData.category); + if (!preserveLastMessageData) { + this.lastMessageData = {}; } - if (this.includesAllOf(phrases, ['change', 'my', 'name'])) { + if (this.includesAllOf(keywords, ['change', 'my', 'name'])) { this.askedForName = true; return "Please tell me how i should call you."; } - if (this.includesAllOf(phrases, ['new', 'note']) || - this.includesAllOf(phrases, ['new', 'task']) || - this.includesAllOf(phrases, ['take', 'note']) || - this.includesAllOf(phrases, ['save', 'to', 'clipboard']) + if (this.includesAllOf(keywords, ['new', 'note']) || + this.includesAllOf(keywords, ['new', 'task']) || + this.includesAllOf(keywords, ['take', 'note']) || + this.includesAllOf(keywords, ['save', 'to', 'clipboard']) ) { this.takeNote = true; return this.oneOf([ @@ -328,56 +277,114 @@ let kara = new Vue({ ]); } - if (this.includesAllOf(phrases, ['clear', 'chat'])) { + if (this.includesAllOf(keywords, ['clear', 'chat'])) { + this.clearChat(); + return false; + } + + if (this.includesAllOf(keywords, ['play']) && + this.includesOneOf(keywords, ['quiz', 'trivia']) + ) { + this.startQuiz(); + return false; + } + + if (this.includesAllOf(keywords, ['play', 'jeopardy'])) { + this.startJeopardy(); + return false; + } + + if (this.includesAllOf(keywords, ['roll', 'dice'])) { + this.rollDice(); + return false; + } + + if (this.includesAllOf(keywords, ['clear', 'chat'])) { this.clearChat(); return false; } - if (this.includesAllOf(phrases, ['weather']) && - this.includesOneOf(phrases, ['how', 'whats']) + if (this.includesAllOf(keywords, ['weather']) && + this.includesOneOf(keywords, ['how', 'whats']) ) { this.checkWeather(); return false; } - if (this.includesAllOf(phrases, ['knock', 'joke'])) { + if (this.includesAllOf(keywords, ['knock', 'joke'])) { this.tellJoke('knock-knock'); return false; } - if (this.includesAllOf(phrases, ['joke']) && this.includesOneOf(phrases, ['coding', 'programming', 'code', 'it'])) { + if (this.includesAllOf(keywords, ['joke']) && this.includesOneOf(keywords, ['coding', 'programming', 'code', 'it'])) { + this.tellJoke('programming'); + return false; + } + + if (this.includesAllOf(keywords, ['cat']) && + this.includesOneOf(keywords, ['images', 'photos', 'send']) + ) { + this.getRandomCat(); + return false; + } + + if (this.includesOneOf(keywords, ['doggo', 'dog', 'shiba']) && + this.includesOneOf(keywords, ['images', 'photos', 'send']) + ) { + this.getRandomShiba(); + return false; + } + + if (this.includesAllOf(keywords, ['dank', 'meme'])) { + this.getRandomMeme('dankmemes') + return false; + } + + if (this.includesAllOf(keywords, ['dank', 'meme'])) { + this.getRandomMeme('dankmemes'); + return false; + } + + if (this.includesAllOf(keywords, ['meme']) && + this.includesOneOf(keywords, ['get', 'send']) + ) { + this.getRandomMeme(); + return false; + } + + if (this.includesAllOf(keywords, ['joke']) && this.includesOneOf(keywords, ['coding', 'programming', 'code', 'it'])) { this.tellJoke('programming'); return false; } - if (this.includesAllOf(phrases, ['tell', 'joke']) || - this.includesAllOf(phrases, ['something', 'funny']) || - this.includesAllOf(phrases, ['cheer', 'me', 'up']) + if (this.includesAllOf(keywords, ['tell', 'joke']) || + this.includesAllOf(keywords, ['something', 'funny']) || + this.includesAllOf(keywords, ['cheer', 'me', 'up']) ) { this.tellJoke('general'); return false; } - if (this.includesAllOf(phrases, ['whats', 'the', 'time']) || this.includesAllOf(phrases, ['how', 'late'])) { + if (this.includesAllOf(keywords, ['whats', 'the', 'time']) || this.includesAllOf(keywords, ['how', 'late'])) { return "It's " + moment().format('LT'); } - if (this.includesAllOf(phrases, ['what', 'day', 'it'])) { + if (this.includesAllOf(keywords, ['what', 'day', 'it'])) { return "It's " + moment().format('dddd') + "."; } - if (this.includesAllOf(phrases, ['what', 'date', 'it']) || this.includesAllOf(phrases, ['whats', 'the', 'date'])) { + if (this.includesAllOf(keywords, ['what', 'date', 'it']) || this.includesAllOf(keywords, ['whats', 'the', 'date'])) { return "It's " + moment().format('dddd') + ", " + moment().format('MMMM Do YYYY') + "."; } - this.answers.forEach((answerOption) => { - if (answerOption.includeAll === true) { - if (this.includesAllOf(phrases, answerOption.keywords)) { - answer = this.oneOf(answerOption.responses); + this.reactions.forEach((reactionOption) => { + if (reactionOption.includeAll === true) { + if (this.includesAllOf(keywords, reactionOption.keywords)) { + answer = this.oneOf(reactionOption.responses); } } else { - if (this.includesOneOf(phrases, answerOption.keywords)) { - answer = this.oneOf(answerOption.responses); + if (this.includesOneOf(keywords, reactionOption.keywords)) { + answer = this.oneOf(reactionOption.responses); } } }); @@ -386,142 +393,92 @@ let kara = new Vue({ return answer; } - return 'I don\'t know what to say..'; - }, - addResponseToInput() { - this.addModal.responses.push(''); + this.botMessage("I don't know what to say.."); }, - addNewResponseContainer() { - let includeAll = this.addModal.includeAll; - let keywords = this.cleanupMessage(this.addModal.keywords).split(','); - let responses = this.addModal.responses; - - this.answers.push({ - includeAll: includeAll, - keywords: keywords, - responses: responses - }); - - this.addModal.includeAll = false; - this.addModal.keywords = ''; - this.addModal.responses = ['']; + // Forms + saveSettings() { + this.name = this.settingsModal.name; + this.username = this.settingsModal.username; + this.location = this.settingsModal.location; this.updateStorage(); + + // this.botMessage('Settings saved! :)'); + this.scrollDown(); }, - updateStorage() { - localStorage.setItem('name', this.name); - localStorage.setItem('username', this.username); - localStorage.setItem('activeTheme', this.activeTheme); - localStorage.setItem('messages', JSON.stringify(this.messages)); - localStorage.setItem('answers', JSON.stringify(this.answers)); - localStorage.setItem('notes', JSON.stringify(this.notes)); - localStorage.setItem('lastMessage', JSON.stringify(this.lastMessage)); - localStorage.setItem('location', JSON.stringify(this.location)); - }, - getSavedData() { - let savedName = localStorage.getItem('name'); - this.name = savedName ? savedName : this.name; + // Commands + processCommands: function (message) { + if (this.checkForCommands(message, 'note')) { + let noteToSave = this.checkForCommands(message, 'note'); + this.saveNote(noteToSave); + } - let savedUsername = localStorage.getItem('username'); - this.username = savedUsername ? savedUsername : null; + if (this.checkForCommands(message, 'clear')) { + this.clearChat(); + } - let savedActiveTheme = localStorage.getItem('activeTheme'); - this.activeTheme = savedActiveTheme ? savedActiveTheme : 'slate'; + if (this.checkForCommands(message, 'weather')) { + this.checkWeather(); + } - let savedMessages = JSON.parse(localStorage.getItem('messages')); - this.messages = savedMessages ? savedMessages : []; + if (this.checkForCommands(message, 'joke')) { + this.tellJoke(this.checkForCommands(message, 'joke')); + } - let savedAnswers = JSON.parse(localStorage.getItem('answers')); - this.answers = savedAnswers ? savedAnswers : []; + if (this.checkForCommands(message, 'meme')) { + this.getRandomMeme(this.checkForCommands(message, 'meme')); + } else if (this.checkForCommands(message, 'me ')) { + this.meMessage(this.checkForCommands(message, 'me ')); + } - let savedNotes = JSON.parse(localStorage.getItem('notes')); - this.notes = savedNotes ? savedNotes : []; - - let savedLastMessage = JSON.parse(localStorage.getItem('lastMessage')); - this.lastMessage = savedLastMessage ? savedLastMessage : null; - - let savedLocation = JSON.parse(localStorage.getItem('location')); - this.location = savedLocation ? savedLocation : null; + if (this.checkForCommands(message, 'cat')) { + this.getRandomCat(); + } - this.scrollDown(); - }, - askForName() { - this.botMessage( - this.oneOf([ - 'May i ask for your name?', - 'Whats your name? :)', - 'How can i call you?', - 'How did your developers call you? :)' - ]) - ); + if (this.checkForCommands(message, 'shiba')) { + this.getRandomShiba(); + } - this.askedForName = true; - }, - setName(message) { - this.username = message.trim(); - this.settingsModal.username = this.username; - this.askedForName = false; - this.updateStorage(); + if (this.checkForCommands(message, 'birb')) { + this.getRandomBirb(); + } - this.botMessage( - this.oneOf([ - "That's a beautiful name!", - "Okay, i'll call you " + this.username + " from now on :)", - "Nice to meet you, " + this.username + ". :D" - ]) - ) - }, - saveNote(message) { - this.takeNote = false; + if (this.checkForCommands(message, 'quiz')) { + this.startQuiz(); + } - this.notes.push({ - time: moment(), - body: message, - checked: false - }); + if (this.checkForCommands(message, 'jeopardy')) { + this.startJeopardy(); + } - this.updateStorage(); + if (this.checkForCommands(message, 'dice')) { + this.rollDice(); + } - this.botMessage( - this.oneOf([ - "Saved! :)", - "You can read and check your notes in the clipboard-section. :)" - ]) - ) + this.lastMessage = message; }, - clearNotes() { - this.notes = []; + checkForCommands(message, commands) { + if (!Array.isArray(commands)) { + commands = [commands]; + } - this.botMessage( - this.oneOf([ - "Notes cleared. ๐Ÿšฎ" - ]) - ); + let commandFound = false; + let parameter = false; - this.updateStorage(); - }, - saveSettings() { - this.name = this.settingsModal.name; - this.username = this.settingsModal.username; - this.location = this.settingsModal.location; - this.updateStorage(); + commands.forEach((command) => { + if (commandFound) { + return; + } + let commandString = '/' + command; - // this.botMessage('Settings saved! :)'); - this.scrollDown(); - }, - clearChat() { - this.messages = []; - this.botMessage(this.oneOf([ - 'Chat cleared.', - 'Evidence destroyed.', - 'Mind cleared.', - 'Uhm.. i think forgot everything we ever talked about.. oops.', - 'A fresh start!', - "You've got something to hide? Nevermind, gotcha fam. Chat is cleared now. ๐Ÿฑโ€๐Ÿ‘ค" - ])); + if (message.search(commandString) === 0) { + parameter = message.replace(commandString, '').trim(); + commandFound = true; + } + }); - this.updateStorage(); + return parameter ? parameter : commandFound; }, checkWeather() { let vue = this; @@ -539,12 +496,103 @@ let kara = new Vue({ vue.botMessage('In ' + response.data.name + ' it\'s ' + response.data.main.temp.toFixed() + 'ยฐC with ' + response.data.weather[0].description + '.'); }) .catch(function (error) { - alert(error); + alertify.notify(error, 'danger'); vue.botMessage('I couldn\'t check the weather for your location. ๐Ÿค”'); }) this.updateStorage(); }, + getRandomMeme(category = 'memes') { + let vue = this; + let url = 'https://meme-api.herokuapp.com/gimme/'; + + let categorySet = false; + + if (category !== true && category !== false) { + category = category.trim(); + categorySet = true; + } else { + category = 'memes' + } + + axios.get(url + category) + .then(function (response) { + vue.addImageMessage({ + body: response.data.title, + src: response.data.url + }, true); + + vue.lastMessageData = { + meme: true, + category: category + }; + }) + .catch(function (error) { + vue.botMessage("Hmm.. i can't think of any good memes right now, sorry.. ๐Ÿ˜ž"); + }) + + this.updateStorage(); + }, + getRandomCat() { + let vue = this; + let url = 'https://api.thecatapi.com/v1/images/search?apiKey=5666b3cc-a7a3-406f-904d-b13594780d7f'; + + axios.get(url) + .then(function (response) { + vue.addImageMessage({ + caption: '', + image: response.data[0].url + }, true); + setTimeout(() => { + vue.scrollDown(); + }, 1000) + }) + .catch(function (error) { + vue.botMessage("I can't find any images at the moment, sorry.. ๐Ÿ˜ฟ"); + }) + + this.updateStorage(); + }, + getRandomShiba() { + let vue = this; + let url = 'http://shibe.online/api/shibes'; + + axios.get(url) + .then(function (response) { + vue.addImageMessage({ + caption: '', + image: response.data[0].url + }, true); + setTimeout(() => { + vue.scrollDown(); + }, 1000) + }) + .catch(function (error) { + vue.botMessage("I can't find any images at the moment, sorry.. ๐Ÿถ"); + }) + + this.updateStorage(); + }, + getRandomBirb() { + let vue = this; + let url = '//random.birb.pw/tweet.json'; + + axios.get(url) + .then(function (response) { + vue.addImageMessage({ + caption: '', + image: 'https://random.birb.pw/img/' + response.data.file + }, true); + setTimeout(() => { + vue.scrollDown(); + }, 1000) + }) + .catch(function (error) { + vue.botMessage("I can't find any images at the moment, sorry.. ๐Ÿฆ"); + }) + + this.updateStorage(); + }, tellJoke(category) { let vue = this; let categorySet = false; @@ -560,7 +608,6 @@ let kara = new Vue({ axios.get(url) .then(function (response) { - console.log(response); let joke = response.data[0]; vue.botMessage(joke.setup); @@ -587,14 +634,220 @@ let kara = new Vue({ this.updateStorage(); }, - meMessage(message) { - this.addMessage(this.username + ' ' + message, false, true); - this.react(message, true); + startQuiz() { + let vue = this; + let url = 'https://jservice.io/api/random'; + + axios.get(url) + .then(function (response) { + let clue = response.data[0]; + + vue.botMessage('Okay! Here is your question from the category "' + clue.category.title + '":'); + vue.botMessage(clue.question); + + vue.lastMessageData = { + isTrivia: true, + answer: clue.answer + }; + }) + .catch(function (error) { + vue.botMessage("It's not a good time for a quiz."); + }); + + this.updateStorage(); + }, + startJeopardy() { + let vue = this; + let url = 'https://jservice.io/api/random'; + + axios.get(url) + .then(function (response) { + let clue = response.data[0]; + + vue.botMessage('Okay! Here we go. The category is "' + clue.category.title + '":'); + vue.botMessage(clue.answer); + + vue.lastMessageData = { + isJeopardy: true, + question: clue.question + }; + }) + .catch(function (error) { + vue.botMessage("It's not a good time for a quiz."); + }); + + this.updateStorage(); + }, + rollDice() { + let dice = Math.random()*6; + + if (dice < 1) { + dice = 1; + } else { + dice = Math.floor(dice); + } + + this.addImageMessage({ + body: dice + '!', + src: 'img/' + dice + '.png' + }, true); + + this.updateStorage(); + }, + + // Notes + saveNote(message) { + this.takeNote = false; + + this.notes.push({ + time: moment(), + body: message, + checked: false + }); + + this.updateStorage(); + + this.botMessage( + this.oneOf([ + "Saved! :)", + "You can read and check your notes in the clipboard-section. :)" + ]) + ) + }, + clearNotes() { + this.notes = []; + + this.botMessage( + this.oneOf([ + "Notes cleared. ๐Ÿšฎ" + ]) + ); + + this.updateStorage(); + }, + + // LocalStorage + getSavedData() { + let savedName = localStorage.getItem('name'); + + this.name = savedName ? savedName : this.name; + + let savedUsername = localStorage.getItem('username'); + this.username = savedUsername ? savedUsername : null; + + let savedActiveTheme = localStorage.getItem('activeTheme'); + this.activeTheme = savedActiveTheme ? savedActiveTheme : 'slate'; + + let savedMessages = JSON.parse(localStorage.getItem('messages')); + this.messages = savedMessages ? savedMessages : []; + + let savedNotes = JSON.parse(localStorage.getItem('notes')); + this.notes = savedNotes ? savedNotes : []; + + let savedLastMessage = JSON.parse(localStorage.getItem('lastMessage')); + this.lastMessage = savedLastMessage ? savedLastMessage : null; + + let savedLocation = JSON.parse(localStorage.getItem('location')); + this.location = savedLocation ? savedLocation : null; + + this.scrollDown(); + }, + updateStorage() { + localStorage.setItem('name', this.name); + localStorage.setItem('username', this.username); + localStorage.setItem('activeTheme', this.activeTheme); + localStorage.setItem('messages', JSON.stringify(this.messages)); + localStorage.setItem('answers', JSON.stringify(this.reactions)); + localStorage.setItem('notes', JSON.stringify(this.notes)); + localStorage.setItem('lastMessage', JSON.stringify(this.lastMessage)); + localStorage.setItem('location', JSON.stringify(this.location)); }, clearStorage() { localStorage.clear(); location.reload(); }, + + // Utility + scrollDown() { + $('#chat-box').stop().animate({ + scrollTop: ($('#chat-box')[0].scrollHeight * 10) + }, 800); + }, + oneOf(answers) { + let amountOfAnswers = answers.length; + let randomIndex = Math.floor(Math.random() * (amountOfAnswers)); + + return this.convertWildcards(answers[randomIndex]); + }, + convertWildcards(message) { + message = message.replace('$name$', this.username); + message = message.replace('$botname$', this.name); + + return message; + }, + cleanupMessage(message) { + message = message.toLowerCase(); + return message.replace('?', '') + .replace('!', '') + .replace('.', '') + .replace(',', '') + .replace('-', '') + .replace('_', '') + .replace('#', '') + .replace('\'', '') + .replace('"', '') + .replace('+', '') + .replace('*', '') + .replace('ยง', '') + .replace('$', '') + .replace('%', '') + .replace('&', '') + .replace('/', '') + .replace('(', '') + .replace(')', '') + .replace('=', '') + .replace('\\', '') + .replace('@', '') + .replace('~', '') + .replace('โ€ฆ', ''); + }, + clearChat() { + this.messages = []; + this.botMessage(this.oneOf([ + 'Chat cleared.', + 'Evidence destroyed.', + 'Mind cleared.', + 'Uhm.. i think forgot everything we ever talked about.. oops.', + 'A fresh start!', + "You've got something to hide? Nevermind, gotcha fam. Chat is cleared now. ๐Ÿฑโ€๐Ÿ‘ค" + ])); + + this.updateStorage(); + }, + includesOneOf(keywords, wordsToSearch) { + let includes = false; + + wordsToSearch.forEach((searchWord) => { + if (keywords.includes(searchWord)) { + includes = true; + } + }) + + return includes; + }, + includesAllOf(keywords, wordsToSearch) { + let includesAllkeywords = true; + + wordsToSearch.forEach((searchWord) => { + if (!keywords.includes(searchWord)) { + includesAllkeywords = false; + } + }) + + return includesAllkeywords; + }, + + // Ajax calls for saving/receiving reactions & themes getBootswatchThemes() { let vue = this; @@ -605,6 +858,66 @@ let kara = new Vue({ .catch(function (error) { console.log(error); }) + }, + getReactions() { + let vue = this; + + axios.get('/reactions/get').then((response) => { + response.data.forEach((reaction) => { + vue.reactions.push(JSON.parse(reaction.reaction)); + }); + }).catch((error) => { + console.log(error); + }); + }, + + // Levenshtein distance + isSimilar(message1, message2) { + let longer = message1; + let shorter = message2; + + if (message1.length < message2.length) { + longer = message2; + shorter = message1; + } + + const longerLength = longer.length; + if (longerLength === 0) { + return 1.0; + } + + let similarity = (longerLength - this.editDistance(longer, shorter)) / parseFloat(longerLength); + + return similarity > 0.65; + }, + + editDistance: function (message1, message2) { + message1 = message1.toLowerCase(); + message2 = message2.toLowerCase(); + + let costs = []; + for (let i = 0; i <= message1.length; i++) { + let lastValue = i; + for (let j = 0; j <= message2.length; j++) { + if (i === 0) + costs[j] = j; + else { + if (j > 0) { + let newValue = costs[j - 1]; + if (message1.charAt(i - 1) !== message2.charAt(j - 1)) + newValue = Math.min(Math.min(newValue, lastValue), + costs[j]) + 1; + costs[j - 1] = lastValue; + lastValue = newValue; + } + } + } + if (i > 0) { + costs[message2.length] = lastValue; + } + } + + return costs[message2.length]; } } }) \ No newline at end of file