This repository was archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoptions.js
97 lines (91 loc) · 3.1 KB
/
options.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
'use strict'
/**
* Options JS
*/
var port = chrome.extension.connect({name: 'bomnibox'})
$(document).ready(function () {
var s = $('.search')
var r = $('#results')
// on change option
$('#titlesearch').on('change', function () {
chrome.storage.sync.set({
optionTitleSearch: $(this).prop('checked')
}, function () {
port.postMessage({'action': 'search', 'text': s.val()})
})
}).next().text(chrome.i18n.getMessage('option_titlesearch'))
chrome.storage.sync.get('optionTitleSearch', function (data) {
if (data && data.optionTitleSearch) $('#titlesearch').prop('checked', true)
})
var scrollToActive = function () {
var t = r.children('.active').offset().top - $(window).height() + 70
$(window).scrollTop(t)
}
var to = null
s.one('keydown', function () {
this.value = ''
}).on('keyup', function (ev) {
var el = $(this)
clearTimeout(to)
if (ev.keyCode === 13) {
r.children('.active').trigger('click')
ev.preventDefault()
} else if (ev.keyCode === 38) {
var a = r.children('.active')
if (a.prev().length) {
a.removeClass('active').prev().addClass('active')
scrollToActive()
}
if (!r.children('.active').length) r.children().first().addClass('active')
ev.preventDefault()
} else if (ev.keyCode === 40) {
var a = r.children('.active')
if (a.next().length) {
a.removeClass('active').next().addClass('active')
scrollToActive()
}
if (!r.children('.active').length) r.children().first().addClass('active')
ev.preventDefault()
} else if (ev.keyCode === 46) {
var a = r.children('.active')
port.postMessage({'action': 'delete', 'url': a.attr('data-url')})
a.remove()
ev.preventDefault()
} else {
to = setTimeout(function () {
var v = el.val().trim()
if (!v.length || ev.ctrlKey || chrome.i18n.getMessage('searchInput') === v) {
r.hide()
return
}
port.postMessage({'action': 'search', 'text': v})
}, 100)
}
})
r.on('click', '> div', function (ev) {
window.open($(ev.currentTarget).attr('data-url'))
window.close()
})
$('.help-icon').on('click', function () {
$('#help').fadeToggle()
})
port.onMessage.addListener(function (data) {
if (data.action === 'search-callback') {
r.hide()
if (data.suggestions.length) {
r.html('').show()
var w = r.width() - 20
data.suggestions.forEach(function (entry) {
r.append('<div data-url="' + entry.content + '" style="width:' + w + 'px">' + entry.description + '</div>')
})
r.children().first().addClass('active')
}
}
})
s.val(chrome.i18n.getMessage('searchInput')).focus()
$('#help')
.append($('<h3>').text(chrome.i18n.getMessage('help_1')))
.append($('<p>').html(chrome.i18n.getMessage('help_2').replace(/\%s/, '<b>local phpmy</b>').replace(/\%s/, '<b>local</b>').replace(/\%s/, '<b>phpmy</b>').replace(/\n/ig, '<br/>')))
.append($('<h3>').text(chrome.i18n.getMessage('help_3')))
.append($('<p>').text(chrome.i18n.getMessage('help_4')))
})