parent
03370301a7
commit
ccbe08cf66
7 changed files with 110 additions and 7 deletions
@ -0,0 +1,22 @@ |
||||
import { injectable } from 'tsyringe'; |
||||
import { Operation } from '../../shared/operations'; |
||||
import MemoryStorage from '../infrastructures/MemoryStorage'; |
||||
|
||||
const REPEAT_KEY = 'repeat'; |
||||
|
||||
@injectable() |
||||
export default class RepeatRepository { |
||||
private cache: MemoryStorage; |
||||
|
||||
constructor() { |
||||
this.cache = new MemoryStorage(); |
||||
} |
||||
|
||||
getLastOperation(): Operation | undefined { |
||||
return this.cache.get(REPEAT_KEY); |
||||
} |
||||
|
||||
setLastOperation(op: Operation): void { |
||||
this.cache.set(REPEAT_KEY, op); |
||||
} |
||||
} |
@ -0,0 +1,49 @@ |
||||
import { injectable } from 'tsyringe'; |
||||
import * as operations from '../../shared/operations'; |
||||
import RepeatRepository from '../repositories/RepeatRepository'; |
||||
|
||||
type Operation = operations.Operation; |
||||
|
||||
@injectable() |
||||
export default class RepeatUseCase { |
||||
constructor( |
||||
private repeatRepository: RepeatRepository, |
||||
) { |
||||
} |
||||
|
||||
storeLastOperation(op: Operation): void { |
||||
this.repeatRepository.setLastOperation(op); |
||||
} |
||||
|
||||
getLastOperation(): operations.Operation | undefined { |
||||
return this.repeatRepository.getLastOperation(); |
||||
} |
||||
|
||||
// eslint-disable-next-line complexity
|
||||
isRepeatable(op: Operation): boolean { |
||||
switch (op.type) { |
||||
case operations.NAVIGATE_HISTORY_PREV: |
||||
case operations.NAVIGATE_HISTORY_NEXT: |
||||
case operations.NAVIGATE_LINK_PREV: |
||||
case operations.NAVIGATE_LINK_NEXT: |
||||
case operations.NAVIGATE_PARENT: |
||||
case operations.NAVIGATE_ROOT: |
||||
case operations.PAGE_SOURCE: |
||||
case operations.PAGE_HOME: |
||||
case operations.TAB_CLOSE: |
||||
case operations.TAB_CLOSE_FORCE: |
||||
case operations.TAB_CLOSE_RIGHT: |
||||
case operations.TAB_REOPEN: |
||||
case operations.TAB_RELOAD: |
||||
case operations.TAB_PIN: |
||||
case operations.TAB_UNPIN: |
||||
case operations.TAB_TOGGLE_PINNED: |
||||
case operations.TAB_DUPLICATE: |
||||
case operations.ZOOM_IN: |
||||
case operations.ZOOM_OUT: |
||||
case operations.ZOOM_NEUTRAL: |
||||
return true; |
||||
} |
||||
return false; |
||||
} |
||||
} |
@ -1,9 +1,11 @@ |
||||
import { injectable } from 'tsyringe'; |
||||
import * as operations from '../../shared/operations'; |
||||
import * as messages from '../../shared/messages'; |
||||
|
||||
@injectable() |
||||
export default class BackgroundClient { |
||||
export default interface OperationClient { |
||||
execBackgroundOp(op: operations.Operation): Promise<void>; |
||||
} |
||||
|
||||
export class OperationClientImpl implements OperationClient { |
||||
execBackgroundOp(op: operations.Operation): Promise<void> { |
||||
return browser.runtime.sendMessage({ |
||||
type: messages.BACKGROUND_OPERATION, |
Reference in new issue