|
@ -137,6 +137,12 @@ tag app |
|
|
global.setTimeout(&, 0) do |
|
|
global.setTimeout(&, 0) do |
|
|
window.location.href = 'https://www.google.com/search?q=' + state.query.trim! |
|
|
window.location.href = 'https://www.google.com/search?q=' + state.query.trim! |
|
|
|
|
|
|
|
|
|
|
|
def toggle_settings |
|
|
|
|
|
if settings_active |
|
|
|
|
|
settings_active = no |
|
|
|
|
|
else |
|
|
|
|
|
settings_active = yes |
|
|
|
|
|
|
|
|
def render |
|
|
def render |
|
|
<self> |
|
|
<self> |
|
|
|
|
|
|
|
@ -144,7 +150,7 @@ tag app |
|
|
d:flex fld:column jc:flex-start ai:center |
|
|
d:flex fld:column jc:flex-start ai:center |
|
|
bxs:0px 0px 10px rgba(0,0,0,0.35) |
|
|
bxs:0px 0px 10px rgba(0,0,0,0.35) |
|
|
w:80% h:80% max-width:700px min-height:205px |
|
|
w:80% h:80% max-width:700px min-height:205px |
|
|
p:40px pt:20px box-sizing:border-box rd:10px |
|
|
p:30px box-sizing:border-box rd:10px |
|
|
|
|
|
|
|
|
css .buttons |
|
|
css .buttons |
|
|
d:flex fld:row jc:space-around w:100% h:50px |
|
|
d:flex fld:row jc:space-around w:100% h:50px |
|
@ -164,7 +170,7 @@ tag app |
|
|
|
|
|
|
|
|
css .links |
|
|
css .links |
|
|
d:flex fld:column jc:flex-start |
|
|
d:flex fld:column jc:flex-start |
|
|
w:100% mt:20px ofy:auto fl:1 |
|
|
w:100% mt:10px ofy:auto fl:1 |
|
|
px:20px |
|
|
px:20px |
|
|
|
|
|
|
|
|
css .link |
|
|
css .link |
|
@ -196,10 +202,10 @@ tag app |
|
|
css .link@hover .delete |
|
|
css .link@hover .delete |
|
|
o:100 |
|
|
o:100 |
|
|
|
|
|
|
|
|
|
|
|
<[d:flex fld:column jc:space-between ai:center w:100%]> |
|
|
|
|
|
if settings_active |
|
|
<.buttons> |
|
|
<.buttons> |
|
|
|
|
|
|
|
|
<.button@click=handle_click_export> "EXPORT" |
|
|
<.button@click=handle_click_export> "EXPORT" |
|
|
|
|
|
|
|
|
if loading_import |
|
|
if loading_import |
|
|
<.button.disabled> "IMPORT" |
|
|
<.button.disabled> "IMPORT" |
|
|
else |
|
|
else |
|
@ -210,7 +216,7 @@ tag app |
|
|
@click=(this.value = '') |
|
|
@click=(this.value = '') |
|
|
type="file" |
|
|
type="file" |
|
|
> |
|
|
> |
|
|
|
|
|
else |
|
|
<input$input |
|
|
<input$input |
|
|
@hotkey('mod+k').capture=$input..focus |
|
|
@hotkey('mod+k').capture=$input..focus |
|
|
bind=state.query |
|
|
bind=state.query |
|
@ -221,6 +227,7 @@ tag app |
|
|
@input=handle_input |
|
|
@input=handle_input |
|
|
@paste=handle_paste |
|
|
@paste=handle_paste |
|
|
> |
|
|
> |
|
|
|
|
|
<[fs:25px c:purple4 cursor:pointer]@click=toggle_settings> "..." |
|
|
if state.query.trim!.split(/\s+/).length > 1 |
|
|
if state.query.trim!.split(/\s+/).length > 1 |
|
|
if loading_create |
|
|
if loading_create |
|
|
<.create.disabled> "+ {state.query}" |
|
|
<.create.disabled> "+ {state.query}" |
|
|