embed-files: double-click icon to open

This commit is contained in:
Omar Rizwan 2021-07-03 08:31:45 -07:00
parent 9e8eda4531
commit 09e5b6b95c

View file

@ -6,6 +6,7 @@ if (chrome.extension.getBackgroundPage) {
// accept requests from the page // accept requests from the page
browser.runtime.onMessage.addListener(async (request, sender) => { browser.runtime.onMessage.addListener(async (request, sender) => {
if (request.op === 'LS') {
let {entries} = await Routes["/tabs/by-id/#TAB_ID"] let {entries} = await Routes["/tabs/by-id/#TAB_ID"]
.readdir({path: `/tabs/by-id/${sender.tab.id}`}); .readdir({path: `/tabs/by-id/${sender.tab.id}`});
entries = await Promise.all(entries.map(filename => { entries = await Promise.all(entries.map(filename => {
@ -15,19 +16,24 @@ if (chrome.extension.getBackgroundPage) {
} else if (filename === '..') { } else if (filename === '..') {
path = `/tabs/by-id`; path = `/tabs/by-id`;
} }
// how to store X, Y?
return doRequest({op: 'getattr', path}) return doRequest({op: 'getattr', path})
.then(stat => ({ ...stat, filename })); .then(stat => ({ ...stat, filename, path }));
})); }));
// TODO: report back not as reply, but as general msg // TODO: report back not as reply, but as general msg
return entries; return entries;
} else if (request.op === 'OPEN') {
chrome.tabs.create({
url: `file:///Users/osnr/t${request.path}`,
index: sender.tab.index + 1,
}); });
// send the file list to the page } else if (request.op === 'RELOCATE') {
// TODO: store new pos as local cached attr ?
// receive events from the page of }
// they dragged a new file in, });
// or they moved a file,
// or they double-clicked a file
} else { } else {
// When running in page: // When running in page:
@ -122,10 +128,14 @@ if (chrome.extension.getBackgroundPage) {
}; };
icon.addEventListener('mousedown', mouseDownHandler); icon.addEventListener('mousedown', mouseDownHandler);
icon.addEventListener('dblclick', () => {
chrome.runtime.sendMessage({op: 'OPEN', path: stat.path});
return false;
});
}; };
// ask for what the files are // ask for what the files are
chrome.runtime.sendMessage({hello: 'hello'}, function(response) { chrome.runtime.sendMessage({op: 'LS'}, function(response) {
response.forEach(stat => addFile(stat)); response.forEach(stat => addFile(stat));
}); });