Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 121da31400 | |||
| 7c9a1bb624 | |||
| 550757a186 | |||
| dbe7751b77 | |||
| 957f468c59 | |||
| 325fdc8c83 | |||
| 245d70a6eb |
@@ -1,2 +1,9 @@
|
||||
# quickdial-webext
|
||||
|
||||
QuickDial is a WebExt Dial page for Firefox
|
||||
|
||||
[QuickDial on addons.mozilla.org](https://addons.mozilla.org/fr/firefox/addon/quick-dial/?src=search)
|
||||
|
||||
## Contribute and evolution :</br>
|
||||
* [CONTRIBUTING.md](https://github.com/MatMoul/quickdial-webext/blob/develop/CONTRIBUTING.md)
|
||||
|
||||
|
||||
5
TODO
@@ -1,6 +1,7 @@
|
||||
Add node settings popup
|
||||
Add custom image (thumbnails)
|
||||
Create style for popup
|
||||
Add a setting to customize bookmark root folder
|
||||
Add a setting to lock title from update
|
||||
Add a visual hint for multipage
|
||||
Need a best solution to update folder and bookmark when it are updated from Firefox
|
||||
Improve screenshot result
|
||||
Add favicon support
|
||||
|
||||
|
Before Width: | Height: | Size: 296 KiB After Width: | Height: | Size: 535 KiB |
|
Before Width: | Height: | Size: 187 KiB After Width: | Height: | Size: 207 KiB |
|
Before Width: | Height: | Size: 335 KiB After Width: | Height: | Size: 532 KiB |
BIN
screenshots/properties_main.png
Normal file
|
After Width: | Height: | Size: 360 KiB |
|
Before Width: | Height: | Size: 143 KiB After Width: | Height: | Size: 369 KiB |
|
Before Width: | Height: | Size: 242 KiB After Width: | Height: | Size: 364 KiB |
|
Before Width: | Height: | Size: 232 KiB After Width: | Height: | Size: 430 KiB |
@@ -10,6 +10,7 @@ app.init = function(){ // Init module
|
||||
app.GridNodes.sync(app.node, app.settings.grid.root, function(){
|
||||
browser.runtime.sendMessage({ cmd: app.Messages.Commands.gridNodesLoaded });
|
||||
app.Bookmarks.initListener();
|
||||
app.ContextMenus.initMenu();
|
||||
});
|
||||
});
|
||||
};
|
||||
@@ -188,11 +189,13 @@ app.ContextMenus.initMenu = function(){ // (Called from app.init) Init context m
|
||||
id: 'AddToQuickDial',
|
||||
title: browser.i18n.getMessage("menuAddToQuickDial"),
|
||||
contexts: ["all"],
|
||||
documentUrlPatterns: [ 'http://*/*', 'https://*/*', 'file://*/*' ]
|
||||
documentUrlPatterns: [ 'http://*/*', 'https://*/*', 'file://*/*', 'ftp://*/*' ]
|
||||
}, function(){});
|
||||
browser.contextMenus.onClicked.addListener(function(info, tab) { // Context menu click event
|
||||
//if (info.menuItemId == "AddToQuickDial")
|
||||
//app.GridNodes.createBookmark(app.settings.grid.node, info.pageUrl, tab.title, function(){});
|
||||
if (info.menuItemId == "AddToQuickDial")
|
||||
app.GridNodes.createBookmark(app.node, info.pageUrl, tab.title, function(){
|
||||
browser.runtime.sendMessage( { cmd: app.Messages.Commands.gridNodesLoaded } );
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@@ -360,6 +363,7 @@ app.GridNodes.sync = function(gridNode, rootPath, callback){ // Sync GridNodes w
|
||||
if(! gridNode.children) gridNode.children = [];
|
||||
else {
|
||||
for(var i=gridNode.children.length-1; i>=0; i--){
|
||||
if(!gridNode.children[i]) gridNode.children[i] = { type: app.GridNodes.GridNodeType.empty };
|
||||
if(gridNode.children[i].type==app.GridNodes.GridNodeType.empty){
|
||||
EmptyNodes.unshift(gridNode.children[i]);
|
||||
} else {
|
||||
@@ -483,14 +487,16 @@ app.GridNodes.setNodeIndex = function(gridNode, index, newIndex, callback){ // S
|
||||
}
|
||||
app.GridNodes.createBookmark = function(gridNode, url, title, callback){ // Create a new Bookmark in a GridNode. callback(gridNode, newGridNode)
|
||||
browser.bookmarks.onCreated.removeListener(app.Bookmarks._onCreated);
|
||||
var prefix = '';
|
||||
if(url.indexOf('://')<0) prefix = 'http://';
|
||||
browser.bookmarks.create({
|
||||
parentId: gridNode.id,
|
||||
title: title || url,
|
||||
url: url
|
||||
url: prefix + url
|
||||
}).then(function(bookmarkItem){
|
||||
if(!gridNode) return; // ??? Why this method are called a second time with gridNode = null ???
|
||||
browser.bookmarks.onCreated.addListener(app.Bookmarks._onCreated);
|
||||
var newGridNode = { id: bookmarkItem.id, type: app.GridNodes.GridNodeType.bookmark, url: url, title };
|
||||
var newGridNode = { id: bookmarkItem.id, type: app.GridNodes.GridNodeType.bookmark, url: prefix + url, title };
|
||||
var EmptyCellFound = false;
|
||||
for(var i=0; i<gridNode.children.length; i++){
|
||||
if(gridNode.children[i].type == app.GridNodes.GridNodeType.empty){
|
||||
|
||||
@@ -209,7 +209,7 @@ dial.initMenus = function(){
|
||||
document.body.appendChild(dial.ItemMenu);
|
||||
}
|
||||
dial.initStyles = function(){
|
||||
if(dial.Style) document.head.removeChild(dial.Style);
|
||||
var oldStyle = dial.Style;
|
||||
dial.Style = document.createElement('style'), StyleSheet;
|
||||
document.head.appendChild(dial.Style);
|
||||
dial.styles = {};
|
||||
@@ -234,9 +234,10 @@ dial.initStyles = function(){
|
||||
dial.styles.grid.linkFolder = dial.Style.sheet.cssRules[dial.Style.sheet.insertRule('.Grid td>a.Folder :first-child { background-image: ' + app.settings.grid.folderIcon + '; background-repeat: no-repeat; background-size: 100% 100%; }')].style;
|
||||
dial.styles.grid.linkBookmark = dial.Style.sheet.cssRules[dial.Style.sheet.insertRule('.Grid td>a.Bookmark :first-child { background-repeat: no-repeat; background-size: 100% 100%; }')].style;
|
||||
dial.styles.grid.linkBookmarkLoading = dial.Style.sheet.cssRules[dial.Style.sheet.insertRule('.Grid td>a.BookmarkLoading :first-child { background-image: url("' + app.settings.grid.cells.loadingIcon + '"); background-repeat: no-repeat; background-position: center center; }')].style;
|
||||
if(oldStyle) document.head.removeChild(oldStyle);
|
||||
};
|
||||
dial.initGrid = function(){
|
||||
if(dial.Grid) document.body.removeChild(dial.Grid);
|
||||
var oldGrid = dial.Grid;
|
||||
dial.Grid = document.createElement('table');
|
||||
var grid = document.createElement('table');
|
||||
dial.Grid.className = 'Grid';
|
||||
@@ -257,13 +258,25 @@ dial.initGrid = function(){
|
||||
link.onmousedown = function(){ dial._selectedItem = this; };
|
||||
|
||||
function dragstart_handler(ev) {
|
||||
if(!ev.target.Node){
|
||||
ev.preventDefault();
|
||||
return;
|
||||
}
|
||||
var index = (dial.page - 1) * (app.settings.grid.rows * app.settings.grid.columns) + +(ev.target.parentElement.getAttribute('gridindex'));
|
||||
if(app.settings.grid.backNode && dial.path != '/') index -= dial.page;
|
||||
ev.dataTransfer.setData("text/plain", index);
|
||||
}
|
||||
function dragover_handler(ev) {
|
||||
}
|
||||
function dragover_handler(ev) {
|
||||
ev.preventDefault();
|
||||
ev.dataTransfer.dropEffect = "move"
|
||||
if(app.settings.grid.backNode && dial.path != '/'){
|
||||
var gridIndex = 0;
|
||||
if(ev.target.tagName == 'DIV') gridIndex = +(ev.target.parentElement.parentElement.getAttribute('gridindex'));
|
||||
else gridIndex = +(ev.target.getAttribute('gridindex'));
|
||||
if(gridIndex==0) ev.dataTransfer.dropEffect = "none";
|
||||
else ev.dataTransfer.dropEffect = "move";
|
||||
} else {
|
||||
ev.dataTransfer.dropEffect = "move";
|
||||
}
|
||||
}
|
||||
function drop_handler(ev) {
|
||||
ev.preventDefault();
|
||||
@@ -286,6 +299,7 @@ dial.initGrid = function(){
|
||||
}
|
||||
document.body.appendChild(dial.Grid);
|
||||
dial.updateGridLayout();
|
||||
if(oldGrid) document.body.removeChild(oldGrid);
|
||||
return dial.Grid;
|
||||
};
|
||||
dial.updateGridLayout = function(){
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
"manifest_version": 2,
|
||||
"name": "Quick Dial",
|
||||
"version": "0.1.3",
|
||||
"version": "0.1.4",
|
||||
"author": "MatMoul",
|
||||
"homepage_url": "https://github.com/MatMoul/quickdial-webext",
|
||||
"developer": {
|
||||
|
||||