Merge remote-tracking branch 'origin/main'

# Conflicts:
#	popup/popup.js
This commit is contained in:
Achiya Elyasaf
2023-08-06 10:01:43 +03:00
7 changed files with 126 additions and 158 deletions

View File

@@ -5,7 +5,7 @@
}, },
"content_scripts": [ "content_scripts": [
{ {
"js": ["scripts/jquery.js", "scripts/content.js", "scripts/utils.js"], "js": ["scripts/jquery.js", "scripts/content.js"],
"matches": ["https://*.overleaf.com/project/*"] "matches": ["https://*.overleaf.com/project/*"]
} }
], ],
@@ -36,8 +36,7 @@
} }
}, },
"background": { "background": {
"service_worker": "scripts/service-worker.js", "service_worker": "scripts/service-worker.js"
"type": "module"
}, },
"permissions": ["storage", "tabs"], "permissions": ["storage", "tabs"],
"manifest_version": 3, "manifest_version": 3,

View File

@@ -8,14 +8,15 @@ body {
.extension-title { .extension-title {
font-size: 24px; font-size: 24px;
color: #4a4a4a; color: #4a4a4a;
margin-bottom: 20px; margin-bottom: 10px;
} }
.form-container { .form-container {
background-color: #fff; background-color: #fff;
border-radius: 5px; border-radius: 5px;
margin: 10px 0; margin-bottom: 10px;
padding: 20px; padding: 10px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
} }
@@ -38,6 +39,14 @@ body {
margin-bottom: 10px; margin-bottom: 10px;
} }
.btn-container {
display: flex;
align-items: center;
justify-content: space-between;
margin-left: 3px;
margin-right: 3px;
}
.btn { .btn {
font-size: 14px; font-size: 14px;
padding: 8px 16px; padding: 8px 16px;
@@ -46,9 +55,9 @@ body {
border: none; border: none;
border-radius: 4px; border-radius: 4px;
cursor: pointer; cursor: pointer;
margin: 5px 0; margin: 5px 5px 0 5px;
transition: background-color 0.3s; transition: background-color 0.3s;
width: 300px; width: 200px;
} }
.btn:hover { .btn:hover {
@@ -70,7 +79,6 @@ body {
} }
#controls { #controls {
margin-top: 30px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
@@ -78,7 +86,8 @@ body {
.control { .control {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
margin-bottom: 10px; margin-bottom: 5px;
margin-top: 5px;
} }
.input { .input {
@@ -103,7 +112,7 @@ body {
.settings-text { .settings-text {
font-size: 18px; font-size: 18px;
color: #4a4a4a; color: #4a4a4a;
margin-bottom: 20px; margin-bottom: 10px;
} }
.settings-container { .settings-container {
@@ -115,7 +124,8 @@ body {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
margin-bottom: 10px; margin-bottom: 3px;
margin-top: 3px;
} }
.settings-item-text { .settings-item-text {
@@ -126,8 +136,8 @@ body {
.switch { .switch {
position: relative; position: relative;
display: inline-block; display: inline-block;
width: 60px; width: 40px;
height: 34px; height: 24px;
} }
.switch input { .switch input {
@@ -150,8 +160,8 @@ body {
.slider:before { .slider:before {
position: absolute; position: absolute;
content: ""; content: "";
height: 26px; height: 16px;
width: 26px; width: 16px;
left: 4px; left: 4px;
bottom: 4px; bottom: 4px;
background-color: white; background-color: white;
@@ -163,11 +173,11 @@ input:checked + .slider {
} }
input:checked + .slider:before { input:checked + .slider:before {
transform: translateX(26px); transform: translateX(16px);
} }
.slider.round { .slider.round {
border-radius: 34px; border-radius: 24px;
} }
.slider.round:before { .slider.round:before {

View File

@@ -1,59 +1,62 @@
<html> <html>
<head> <head>
<script src="/scripts/jquery.js"></script> <script src="/scripts/jquery.js"></script>
<script src="/scripts/utils.js" type="module"></script> <script src="/scripts/utils.js" type="module"></script>
<script src="/popup/popup.js" type="module"></script> <script src="/popup/popup.js" type="module"></script>
<link rel="stylesheet" href="/popup/popup.css" /> <link rel="stylesheet" href="/popup/popup.css"/>
</head> </head>
<body> <body>
<h1 class="extension-title">LeafLLM: an AI-powered Overleaf</h1> <h1 class="extension-title">LeafLLM: an AI-powered Overleaf</h1>
<div id="controls" class="form-container"> <div id="controls" class="form-container">
<div class="control"> <div class="control">
<div class="input"><span>ALT</span><span>I</span></div> <div class="input" id="shortcut-Improve"><span>ALT</span><span>I</span></div>
<div class="effect">Improve selected text.</div> <div class="effect">Improve selected text.</div>
</div> </div>
<div class="control"> <div class="control">
<div class="input"><span>ALT</span><span>C</span></div> <div class="input" id="shortcut-Complete"><span>ALT</span><span>C</span></div>
<div class="effect">Complete selected text.</div> <div class="effect">Complete selected text.</div>
</div> </div>
<div class="control"> <div class="control">
<div class="input"><span>ALT</span><span>A</span></div> <div class="input" id="shortcut-Ask"><span>ALT</span><span>A</span></div>
<div class="effect">Ask GPT.</div> <div class="effect">Ask GPT.</div>
</div>
</div> </div>
<div id="settings-form" class="form-container"> </div>
<div class="settings-text">Settings</div> <div id="settings-form" class="form-container">
<div class="settings-container"> <div class="settings-text">Settings</div>
<div class="settings-container">
<div class="settings-item"> <div class="settings-item">
<div class="settings-item-text">Text Improvement</div> <div class="settings-item-text">Text Improvement</div>
<label class="switch"> <label class="switch">
<input name="text-Improve" class="settings-item-checkbox" type="checkbox" /> <input name="text-Improve" class="settings-item-checkbox" type="checkbox"/>
<span class="slider round"></span> <span class="slider round"></span>
</label> </label>
</div> </div>
<div class="settings-item"> <div class="settings-item">
<div class="settings-item-text">Text Completion</div> <div class="settings-item-text">Text Completion</div>
<label class="switch"> <label class="switch">
<input name="text-Complete" class="settings-item-checkbox" type="checkbox" /> <input name="text-Complete" class="settings-item-checkbox" type="checkbox"/>
<span class="slider round"></span> <span class="slider round"></span>
</label> </label>
</div> </div>
<div class="settings-item"> <div class="settings-item">
<div class="settings-item-text">Ask</div> <div class="settings-item-text">Ask</div>
<label class="switch"> <label class="switch">
<input name="text-Ask" class="settings-item-checkbox" type="checkbox" /> <input name="text-Ask" class="settings-item-checkbox" type="checkbox"/>
<span class="slider round"></span> <span class="slider round"></span>
</label> </label>
</div> </div>
</div>
</div> </div>
<div id="api-token-form" class="form-container"> </div>
<div class="api-token-text"><span>API Token is </span><span class="api-token-status">not set</span></div> <div id="api-token-form" class="form-container">
<input class="api-token-input" name="api-token" placeholder="OpenAI API Token" type="text" /> <div class="api-token-text"><span>API Token is </span><span class="api-token-status">not set</span></div>
<div class="message">To get an API key, go to <a href="https://platform.openai.com/account/api-keys">https://platform.openai.com/account/api-keys</a> </div> <input class="api-token-input" name="api-token" placeholder="OpenAI API Token" type="text"/>
<button class="submit btn">Set API Token</button> <div class="message">To get an API key, go to <a href="https://platform.openai.com/account/api-keys">https://platform.openai.com/account/api-keys</a>
<button class="clear btn">Reset API Token</button>
</div> </div>
<div id="message-box" class="message-box"></div> <div class="btn-container">
</body> <button class="submit btn">Set API Token</button>
<button class="clear btn">Reset API Token</button>
</div>
</div>
<div id="message-box" class="message-box"></div>
</body>
</html> </html>

View File

@@ -1,5 +1,3 @@
import {setSetting} from '../scripts/utils.js'
const apiKeyRegex = /sk-[a-zA-Z0-9]{48}/ const apiKeyRegex = /sk-[a-zA-Z0-9]{48}/
function addMessage(message) { function addMessage(message) {
@@ -21,14 +19,16 @@ async function refreshStorage() {
chrome.storage.local.get(['Improve', 'Complete', 'Ask']).then((settings) => { chrome.storage.local.get(['Improve', 'Complete', 'Ask']).then((settings) => {
let bindingFailures = Object.values(settings) let bindingFailures = Object.values(settings)
.filter(({ status }) => status === 'error') .filter(({ status }) => status === 'error')
.map(({ key, shortcut }) => `${shortcut} for ${key}`) .map(({ key, shortcut }) => `${shortcut} for ${key}`)
.join(', ') .join(', ')
if (bindingFailures.length > 0) { if (bindingFailures.length > 0) {
addErrorMessage(`Could not bound the following shortcuts:\n${bindingFailures}.\nYou can set it manually at <a href="chrome://extensions/shortcuts">chrome://extensions/shortcuts</a>.`) addErrorMessage(`Could not bind the following shortcuts:\n${bindingFailures}.\nYou can set it manually at <a href="chrome://extensions/shortcuts">chrome://extensions/shortcuts</a>.`)
} }
Object.values(settings).forEach(({ key, status }) => { Object.values(settings).forEach(({ key, status, shortcut }) => {
$(`#settings-form input[name='text-${key}']:checkbox`).prop('checked', status === 'enabled') $(`#settings-form input[name='text-${key}']:checkbox`).prop('checked', status === 'enabled')
let shortcut2 = status === 'error' ? 'not set' : shortcut
$(`#shortcut-${key}`).html(`<span>${shortcut2}</span>`)
}) })
}) })
} }
@@ -48,13 +48,9 @@ async function handleAPITokenSet(event) {
return return
} }
try { chrome.storage.local.set({ openAIAPIKey })
chrome.storage.local.set({ openAIAPIKey }).then(refreshStorage) .then(refreshStorage)
} catch (error) { .catch((error) => addErrorMessage(`Failed to remove API Token. Error: ${error}`))
console.log(error)
addErrorMessage('Failed to set API Token.')
return
}
} }
async function handleAPITokenClear(event) { async function handleAPITokenClear(event) {
@@ -63,29 +59,24 @@ async function handleAPITokenClear(event) {
clearMessages() clearMessages()
try { chrome.storage.local.remove('openAIAPIKey')
chrome.storage.local.remove('openAIAPIKey').then(refreshStorage) .then(refreshStorage)
} catch (error) { .catch((error) => addErrorMessage(`Failed to remove API Token. Error: ${error}`))
console.log(error)
addErrorMessage('Failed to remove API Token.')
return
}
} }
function makeHandleSettingChange(key) { async function makeHandleSettingChange(key) {
return async (event) => { return async (event) => {
event.preventDefault() event.preventDefault()
event.stopPropagation() event.stopPropagation()
clearMessages() clearMessages()
const value = event.target.checked const value = event.target.checked
chrome.storage.local.get(key).then(setting => { const setting = await chrome.storage.local.get(key)
if(setting[key].status !== 'error') { if (setting[key].status !== 'error') {
setting[key].status = value ? 'enabled' : 'disabled' setting[key].status = value ? 'enabled' : 'disabled'
setSetting(setting[key].key, setting[key]) await chrome.storage.local.set({ [key]: setting[key] })
} }
return refreshStorage() return refreshStorage()
})
} }
} }
@@ -97,10 +88,5 @@ $(document).ready(async function () {
commands.forEach((key) => { commands.forEach((key) => {
$(`#settings-form input[name='text-${key}']:checkbox`).on('change', makeHandleSettingChange(key)) $(`#settings-form input[name='text-${key}']:checkbox`).on('change', makeHandleSettingChange(key))
}) })
return refreshStorage()
$('body').on('click', 'a', function(){
chrome.tabs.create({url: $(this).attr('href')});
return false;
});
await refreshStorage()
}) })

View File

@@ -39,9 +39,8 @@ class OpenAIAPI {
temperature: 0.5 temperature: 0.5
} }
const result = await this.query('completions', data) return this.query('completions', data)
.then(result => result[0].text)
return result[0].text
} }
async improveText(text) { async improveText(text) {
@@ -54,9 +53,8 @@ class OpenAIAPI {
temperature: 0.5 temperature: 0.5
} }
const result = await this.query('edits', data) return this.query('edits', data)
.then(result => result[0].text)
return result[0].text
} }
} }
@@ -70,14 +68,10 @@ function replaceSelectedText(replacementText, selection) {
} }
} }
async function settingIsEnabled(setting) { async function settingIsEnabled(key) {
let result return chrome.storage.local.get(key)
try { .then(setting => 'enabled' === setting[key].status)
result = await chrome.storage.local.get(setting) .catch(() => false)
} catch (error) {
return false
}
return result[setting]
} }
function commentText(text) { function commentText(text) {
@@ -91,7 +85,7 @@ function commentText(text) {
} }
async function improveTextHandler(openAI) { async function improveTextHandler(openAI) {
if (!(await settingIsEnabled('textImprovement'))) throw new Error('Text improvement is not enabled.') if (!(await settingIsEnabled('Improve'))) throw new Error('Text improvement is not enabled.')
const selection = window.getSelection() const selection = window.getSelection()
const selectedText = selection.toString() const selectedText = selection.toString()
if (!selectedText) return if (!selectedText) return
@@ -101,20 +95,20 @@ async function improveTextHandler(openAI) {
} }
async function completeTextHandler(openAI) { async function completeTextHandler(openAI) {
if (!(await settingIsEnabled('textCompletion'))) throw new Error('Text completion is not enabled.') if (!(await settingIsEnabled('Complete'))) throw new Error('Text completion is not enabled.')
const selection = window.getSelection() const selection = window.getSelection()
const selectedText = selection.toString() const selectedText = selection.toString()
if (!selectedText) return if (!selectedText) return
const editedText = await openAI.completeText(selectedText) const editedText = (await openAI.completeText(selectedText)).trimStart()
replaceSelectedText(selectedText + editedText, selection) replaceSelectedText(selectedText + '\n' + editedText, selection)
} }
async function askHandler(openAI) { async function askHandler(openAI) {
if (!(await settingIsEnabled('textAsk'))) throw new Error('Text ask is not enabled.') if (!(await settingIsEnabled('Ask'))) throw new Error('Ask is not enabled.')
const selection = window.getSelection() const selection = window.getSelection()
const selectedText = selection.toString() const selectedText = selection.toString()
if (!selectedText) return if (!selectedText) return
const editedText = await openAI.completeText('In Latex, ' + selectedText) const editedText = (await openAI.completeText('In latex, ' + selectedText)).trimStart()
replaceSelectedText(editedText, selection) replaceSelectedText(editedText, selection)
} }
@@ -130,28 +124,38 @@ function setAPIKey(key) {
currentAPIKey = key currentAPIKey = key
if (currentAPIKey) { if (currentAPIKey) {
openAI = new OpenAIAPI(currentAPIKey) openAI = new OpenAIAPI(currentAPIKey)
console.log('LeafLLM: OpenAI API key set, enabling LeafLLM features.') log('OpenAI API key set, enabling LeafLLM features.')
} else { } else {
openAI = undefined openAI = undefined
console.log('LeafLLM: OpenAI API key is not set, LeafLLM features are disabled.') log('OpenAI API key is not set, LeafLLM features are disabled.')
} }
} }
function handleCommand(command) { function handleCommand(command) {
if (command === 'Improve') { if (command === 'Improve') {
improveTextHandler(openAI).catch(e => error(`Failed to execute the '${command}' command. Error message: ${e}`)) improveTextHandler(openAI).catch(e => error(`Failed to execute the '${command}' command.`, e))
} else if (command === 'Complete') { } else if (command === 'Complete') {
completeTextHandler(openAI).catch(e => error(`Failed to execute the '${command}' command. Error message: ${e}`)) completeTextHandler(openAI).catch(e => error(`Failed to execute the '${command}' command.`, e))
} else if (command === 'Ask') { } else if (command === 'Ask') {
askHandler(openAI).catch(e => error(`Failed to execute the '${command}' command. Error message: ${e}`)) askHandler(openAI).catch(e => error(`Failed to execute the '${command}' command.`, e))
} }
} }
function error(msg) { function error(msg, error) {
if(error) {
msg += ` Error message: ${error.message}`
if(error.cause) {
console.error(`\nCause: ${JSON.stringify(error.cause)}`)
}
}
customAlert(msg) customAlert(msg)
console.error(`LeafLLM: ${msg}`) console.error(`LeafLLM: ${msg}`)
} }
function log(msg) {
console.log(`LeafLLM: ${msg}`)
}
function customAlert(msg,duration) function customAlert(msg,duration)
{ {
if(!duration) duration = 4000; if(!duration) duration = 4000;
@@ -168,7 +172,7 @@ function customAlert(msg,duration)
chrome.runtime.onMessage.addListener( chrome.runtime.onMessage.addListener(
function (request, sender, sendResponse) { function (request, sender, sendResponse) {
console.log(`Received request: ${JSON.stringify(request)}`) log(`Received request: ${JSON.stringify(request)}`)
if (request.command === 'setup') { if (request.command === 'setup') {
setAPIKey(request.apiKey) setAPIKey(request.apiKey)
} else { } else {

View File

@@ -1,5 +1,3 @@
import {setSetting} from './utils.js'
const settings = [ const settings = [
{ key: 'Complete', shortcut: 'Alt+C', status: 'enabled', type: 'Command' }, { key: 'Complete', shortcut: 'Alt+C', status: 'enabled', type: 'Command' },
{ key: 'Improve', shortcut: 'Alt+I', status: 'enabled', type: 'Command' }, { key: 'Improve', shortcut: 'Alt+I', status: 'enabled', type: 'Command' },
@@ -9,7 +7,7 @@ const settings = [
async function sendMessage(message) { async function sendMessage(message) {
const [tab] = await chrome.tabs.query({ active: true, lastFocusedWindow: true }) const [tab] = await chrome.tabs.query({ active: true, lastFocusedWindow: true })
if (tab == null || tab.url?.startsWith('chrome://')) return undefined if (tab == null || tab.url?.startsWith('chrome://')) return undefined
const response = await chrome.tabs.sendMessage(tab.id, message) chrome.tabs.sendMessage(tab.id, message)
// do something with response here, not outside the function // do something with response here, not outside the function
// console.log(response) // console.log(response)
} }
@@ -41,7 +39,7 @@ async function checkCommandShortcuts() {
if (shortcut === '') { if (shortcut === '') {
command.status = 'error' command.status = 'error'
} }
setSetting(command.key, command) chrome.storage.local.set({ [command.key]: command })
} }
} }
}) })

View File

@@ -1,32 +0,0 @@
/**
* Set a setting in storage {@link https://developer.chrome.com/docs/extensions/reference/storage/#type-StorageArea:~:text=to%20the%20callback.-,set,-void}
* @param key
* @param value
* @param {function}[callback] Optional callback function
*/
export async function setSetting(key, value, callback) {
let obj = {}
obj[key] = value
if (typeof callback === 'undefined') {
chrome.storage.local.set(obj).catch(error => {
console.log(`Failed to set ${key} setting. Error: ${error}`)
})
} else {
chrome.storage.local.set(obj, callback).catch(error => {
console.log(`Failed to set ${key} setting. Error: ${error}`)
})
}
}
/**
* Get a setting from storage
* @param {string | string[] | object} [keys=null] - The keys to get (see {@link https://developer.chrome.com/docs/extensions/reference/storage/#usage})
* @param {function}[callback] Optional callback function
*/
export async function getSetting(keys = null, callback) {
if (typeof callback === 'undefined') {
return chrome.storage.local.get(keys, (items) => Object.values(items))
}else {
return chrome.storage.local.get(keys, (items) => callback(Object.values(items)))
}
}