Browse Source

remove import and export buttons

main
Mikey Oz 3 years ago
parent
commit
cb5123c28a
  1. 17
      app/client.imba
  2. 2
      package.json
  3. 2
      sw.imba

17
app/client.imba

@ -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}"

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "fuzzyhome", "name": "fuzzyhome",
"version": "0.0.15", "version": "0.0.16",
"scripts": { "scripts": {
"start": "imba run -SMH --baseurl . -w server.imba", "start": "imba run -SMH --baseurl . -w server.imba",
"build-app": "imba build -SMH --baseurl . server.imba", "build-app": "imba build -SMH --baseurl . server.imba",

2
sw.imba

@ -1,7 +1,7 @@
let p = console.log let p = console.log
const app_prefix = "fuzzyhome_cache" const app_prefix = "fuzzyhome_cache"
const version = "0.0.15" const version = "0.0.16"
const cache_name = "{app_prefix}-{version}" const cache_name = "{app_prefix}-{version}"

Loading…
Cancel
Save