A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.7 KiB
68 lines
1.7 KiB
// |
|
// window.find(aString, aCaseSensitive, aBackwards, aWrapAround, |
|
// aWholeWord, aSearchInFrames); |
|
// |
|
// NOTE: window.find is not standard API |
|
// https://developer.mozilla.org/en-US/docs/Web/API/Window/find |
|
|
|
import messages from 'shared/messages'; |
|
import actions from 'content/actions'; |
|
import * as consoleFrames from '../console-frames'; |
|
|
|
const find = (string, backwards) => { |
|
let caseSensitive = false; |
|
let wrapScan = true; |
|
|
|
|
|
// NOTE: aWholeWord dows not implemented, and aSearchInFrames does not work |
|
// because of same origin policy |
|
let found = window.find(string, caseSensitive, backwards, wrapScan); |
|
if (found) { |
|
return found; |
|
} |
|
window.getSelection().removeAllRanges(); |
|
return window.find(string, caseSensitive, backwards, wrapScan); |
|
}; |
|
|
|
const findNext = async(currentKeyword, reset, backwards) => { |
|
if (reset) { |
|
window.getSelection().removeAllRanges(); |
|
} |
|
|
|
let keyword = currentKeyword; |
|
if (currentKeyword) { |
|
browser.runtime.sendMessage({ |
|
type: messages.FIND_SET_KEYWORD, |
|
keyword: currentKeyword, |
|
}); |
|
} else { |
|
keyword = await browser.runtime.sendMessage({ |
|
type: messages.FIND_GET_KEYWORD, |
|
}); |
|
} |
|
if (!keyword) { |
|
return consoleFrames.postError('No previous search keywords'); |
|
} |
|
let found = find(keyword, backwards); |
|
if (found) { |
|
consoleFrames.postInfo('Pattern found: ' + keyword); |
|
} else { |
|
consoleFrames.postError('Pattern not found: ' + keyword); |
|
} |
|
|
|
return { |
|
type: actions.FIND_SET_KEYWORD, |
|
keyword, |
|
found, |
|
}; |
|
}; |
|
|
|
const next = (currentKeyword, reset) => { |
|
return findNext(currentKeyword, reset, false); |
|
}; |
|
|
|
const prev = (currentKeyword, reset) => { |
|
return findNext(currentKeyword, reset, true); |
|
}; |
|
|
|
export { next, prev };
|
|
|