Move open parent and open root to background
This commit is contained in:
parent
e779fb1779
commit
8d0739463d
8 changed files with 108 additions and 57 deletions
|
@ -84,6 +84,10 @@ export default class OperationController {
|
|||
return this.navigateUseCase.openLinkPrev();
|
||||
case operations.NAVIGATE_LINK_NEXT:
|
||||
return this.navigateUseCase.openLinkNext();
|
||||
case operations.NAVIGATE_PARENT:
|
||||
return this.navigateUseCase.openParent();
|
||||
case operations.NAVIGATE_ROOT:
|
||||
return this.navigateUseCase.openRoot();
|
||||
}
|
||||
throw new Error('unknown operation: ' + operation.type);
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ export default class TabPresenter {
|
|||
return tabId;
|
||||
}
|
||||
|
||||
async getByKeyword(keyword: string, excludePinned = false): Promise<Tab[]> {
|
||||
async getByKeyword(keyword: string, excludePinned: boolean = false): Promise<Tab[]> {
|
||||
let tabs = await browser.tabs.query({ currentWindow: true });
|
||||
return tabs.filter((t) => {
|
||||
return t.url && t.url.toLowerCase().includes(keyword.toLowerCase()) ||
|
||||
|
|
|
@ -30,11 +30,28 @@ export default class NavigateUseCase {
|
|||
await this.navigateClient.linkPrev(tab.id!!);
|
||||
}
|
||||
|
||||
openParent(): Promise<void> {
|
||||
throw new Error('not implemented');
|
||||
async openParent(): Promise<void> {
|
||||
let tab = await this.tabPresenter.getCurrent();
|
||||
let url = new URL(tab.url!!);
|
||||
if (url.hash !== '') {
|
||||
url.hash = '';
|
||||
} else if (url.search !== '') {
|
||||
url.search = '';
|
||||
} else {
|
||||
const basenamePattern = /\/[^/]+$/;
|
||||
const lastDirPattern = /\/[^/]+\/$/;
|
||||
if (basenamePattern.test(url.pathname)) {
|
||||
url.pathname = url.pathname.replace(basenamePattern, '/');
|
||||
} else if (lastDirPattern.test(url.pathname)) {
|
||||
url.pathname = url.pathname.replace(lastDirPattern, '/');
|
||||
}
|
||||
}
|
||||
await this.tabPresenter.open(url.href);
|
||||
}
|
||||
|
||||
openRoot(): Promise<void> {
|
||||
throw new Error('not implemented');
|
||||
async openRoot(): Promise<void> {
|
||||
let tab = await this.tabPresenter.getCurrent();
|
||||
let url = new URL(tab.url!!);
|
||||
await this.tabPresenter.open(url.origin);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,6 @@ import KeymapUseCase from '../usecases/KeymapUseCase';
|
|||
import AddonEnabledUseCase from '../usecases/AddonEnabledUseCase';
|
||||
import FindSlaveUseCase from '../usecases/FindSlaveUseCase';
|
||||
import ScrollUseCase from '../usecases/ScrollUseCase';
|
||||
import NavigateUseCase from '../usecases/NavigateUseCase';
|
||||
import FocusUseCase from '../usecases/FocusUseCase';
|
||||
import ClipboardUseCase from '../usecases/ClipboardUseCase';
|
||||
import BackgroundClient from '../client/BackgroundClient';
|
||||
|
@ -19,7 +18,6 @@ export default class KeymapController {
|
|||
private addonEnabledUseCase: AddonEnabledUseCase,
|
||||
private findSlaveUseCase: FindSlaveUseCase,
|
||||
private scrollUseCase: ScrollUseCase,
|
||||
private navigateUseCase: NavigateUseCase,
|
||||
private focusUseCase: FocusUseCase,
|
||||
private clipbaordUseCase: ClipboardUseCase,
|
||||
private backgroundClient: BackgroundClient,
|
||||
|
@ -84,12 +82,6 @@ export default class KeymapController {
|
|||
case operations.MARK_JUMP_PREFIX:
|
||||
this.markKeyUseCase.enableJumpMode();
|
||||
break;
|
||||
case operations.NAVIGATE_PARENT:
|
||||
this.navigateUseCase.openParent();
|
||||
break;
|
||||
case operations.NAVIGATE_ROOT:
|
||||
this.navigateUseCase.openRoot();
|
||||
break;
|
||||
case operations.FOCUS_INPUT:
|
||||
this.focusUseCase.focusFirstInput();
|
||||
break;
|
||||
|
|
|
@ -6,10 +6,6 @@ export default interface NavigationPresenter {
|
|||
openLinkPrev(): void;
|
||||
|
||||
openLinkNext(): void;
|
||||
|
||||
openParent(): void;
|
||||
|
||||
openRoot(): void;
|
||||
}
|
||||
|
||||
const REL_PATTERN: {[key: string]: RegExp} = {
|
||||
|
@ -51,29 +47,6 @@ export class NavigationPresenterImpl implements NavigationPresenter {
|
|||
this.linkRel('next');
|
||||
}
|
||||
|
||||
openParent(): void {
|
||||
const loc = window.location;
|
||||
if (loc.hash !== '') {
|
||||
loc.hash = '';
|
||||
return;
|
||||
} else if (loc.search !== '') {
|
||||
loc.search = '';
|
||||
return;
|
||||
}
|
||||
|
||||
const basenamePattern = /\/[^/]+$/;
|
||||
const lastDirPattern = /\/[^/]+\/$/;
|
||||
if (basenamePattern.test(loc.pathname)) {
|
||||
loc.pathname = loc.pathname.replace(basenamePattern, '/');
|
||||
} else if (lastDirPattern.test(loc.pathname)) {
|
||||
loc.pathname = loc.pathname.replace(lastDirPattern, '/');
|
||||
}
|
||||
}
|
||||
|
||||
openRoot(): void {
|
||||
window.location.href = window.location.origin;
|
||||
}
|
||||
|
||||
// Code common to linkPrev and linkNext which navigates to the specified page.
|
||||
private linkRel(rel: 'prev' | 'next'): void {
|
||||
let link = selectLast<HTMLLinkElement>(`link[rel~=${rel}][href]`);
|
||||
|
|
|
@ -24,12 +24,4 @@ export default class NavigateUseCase {
|
|||
openLinkNext(): void {
|
||||
this.navigationPresenter.openLinkNext();
|
||||
}
|
||||
|
||||
openParent(): void {
|
||||
this.navigationPresenter.openParent();
|
||||
}
|
||||
|
||||
openRoot(): void {
|
||||
this.navigationPresenter.openRoot();
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue