|
@ -1,8 +1,3 @@ |
|
|
# TODO, deal with these 3: |
|
|
|
|
|
# editing_link = no |
|
|
|
|
|
# prior_query = '' |
|
|
|
|
|
# viewing_community_links = yes |
|
|
|
|
|
|
|
|
|
|
|
let p = console.log |
|
|
let p = console.log |
|
|
|
|
|
|
|
|
# import sw from './sw.imba?serviceworker' |
|
|
# import sw from './sw.imba?serviceworker' |
|
@ -10,12 +5,14 @@ let p = console.log |
|
|
|
|
|
|
|
|
import download from 'downloadjs' |
|
|
import download from 'downloadjs' |
|
|
import { nanoid } from 'nanoid' |
|
|
import { nanoid } from 'nanoid' |
|
|
import { evaluate as eval_math } from 'mathjs' |
|
|
import { err } from './utils' |
|
|
|
|
|
|
|
|
import pkg from '../package.json' |
|
|
import pkg from '../package.json' |
|
|
let version = pkg.version |
|
|
let version = pkg.version |
|
|
|
|
|
p "fuzzyhome version {version}" |
|
|
import db from './db' |
|
|
import db from './db' |
|
|
import state from './state' |
|
|
import state from './state' |
|
|
|
|
|
let refs = {} |
|
|
import api from './api' |
|
|
import api from './api' |
|
|
import config from './config' |
|
|
import config from './config' |
|
|
|
|
|
|
|
@ -28,17 +25,6 @@ import app-link from './components/app-link' |
|
|
import app-bang from './components/app-bang' |
|
|
import app-bang from './components/app-bang' |
|
|
import './styles' |
|
|
import './styles' |
|
|
|
|
|
|
|
|
p "fuzzyhome version {version}" |
|
|
|
|
|
|
|
|
|
|
|
global._fuzzyhome_delete_everything = do |prompt=yes| |
|
|
|
|
|
return if prompt and window.confirm "This will delete everything. Are you sure?" |
|
|
|
|
|
indexedDB.deleteDatabase("fuzzyhome") |
|
|
|
|
|
delete localStorage.fuzzyhome_config |
|
|
|
|
|
delete localStorage.fuzzyhome_visited |
|
|
|
|
|
location.reload! |
|
|
|
|
|
|
|
|
|
|
|
let refs = {} |
|
|
|
|
|
|
|
|
|
|
|
extend tag element |
|
|
extend tag element |
|
|
get state |
|
|
get state |
|
|
state |
|
|
state |
|
@ -50,6 +36,8 @@ extend tag element |
|
|
console.log |
|
|
console.log |
|
|
get refs |
|
|
get refs |
|
|
refs |
|
|
refs |
|
|
|
|
|
get err |
|
|
|
|
|
err |
|
|
|
|
|
|
|
|
tag app |
|
|
tag app |
|
|
|
|
|
|
|
@ -58,12 +46,15 @@ tag app |
|
|
get render? do mounted? |
|
|
get render? do mounted? |
|
|
|
|
|
|
|
|
def mount |
|
|
def mount |
|
|
|
|
|
|
|
|
refs.settings = $as |
|
|
refs.settings = $as |
|
|
refs.edit = $ae |
|
|
refs.edit = $ae |
|
|
refs.community-links = $acl |
|
|
refs.community-links = $acl |
|
|
|
|
|
|
|
|
unless global.localStorage.fuzzyhome_visited |
|
|
unless global.localStorage.fuzzyhome_visited |
|
|
await add_initial_links! |
|
|
await api.add_initial_links! |
|
|
global.localStorage.fuzzyhome_visited = yes |
|
|
global.localStorage.fuzzyhome_visited = yes |
|
|
|
|
|
|
|
|
try |
|
|
try |
|
|
await api.reload_db! |
|
|
await api.reload_db! |
|
|
p "links:", state.links |
|
|
p "links:", state.links |
|
@ -72,111 +63,6 @@ tag app |
|
|
fatal_error = yes |
|
|
fatal_error = yes |
|
|
return |
|
|
return |
|
|
|
|
|
|
|
|
def add_initial_links |
|
|
|
|
|
let initial_links = [ |
|
|
|
|
|
"tutorial github.com/familyfriendlymikey/fuzzyhome" |
|
|
|
|
|
"!brave search `b search.brave.com/search?q=" |
|
|
|
|
|
"!youtube youtube.com/results?search_query=" |
|
|
|
|
|
"photopea photopea.com" |
|
|
|
|
|
"twitch twitch.tv" |
|
|
|
|
|
"messenger `me messenger.com" |
|
|
|
|
|
"instagram `in instagram.com" |
|
|
|
|
|
"localhost `3000 http://localhost:3000" |
|
|
|
|
|
] |
|
|
|
|
|
for link_text in initial_links |
|
|
|
|
|
try |
|
|
|
|
|
api.add_link link_text |
|
|
|
|
|
catch e |
|
|
|
|
|
err "adding link", e |
|
|
|
|
|
|
|
|
|
|
|
def err s, e |
|
|
|
|
|
p "error:" |
|
|
|
|
|
p e |
|
|
|
|
|
window.alert("Error {s}:\n\n{e}") |
|
|
|
|
|
|
|
|
|
|
|
get selected_link |
|
|
|
|
|
state.sorted_links[selection_index] |
|
|
|
|
|
|
|
|
|
|
|
get tip_url |
|
|
|
|
|
let split_query = state.query.trim!.split /\s+/ |
|
|
|
|
|
if split_query.length >= 2 |
|
|
|
|
|
return ' https://' + split_query.pop! |
|
|
|
|
|
else |
|
|
|
|
|
return '' |
|
|
|
|
|
|
|
|
|
|
|
get tip_name |
|
|
|
|
|
let split_query = state.query.trim!.split /\s+/ |
|
|
|
|
|
let name = split_query.join ' ' |
|
|
|
|
|
if split_query.length >= 2 |
|
|
|
|
|
split_query.pop! |
|
|
|
|
|
if split_query[-1].startsWith '~' |
|
|
|
|
|
split_query.pop! |
|
|
|
|
|
name = split_query.join ' ' |
|
|
|
|
|
if name.startsWith '!' |
|
|
|
|
|
name = name.slice(1) |
|
|
|
|
|
name |
|
|
|
|
|
|
|
|
|
|
|
get can_add |
|
|
|
|
|
return no if state.loading |
|
|
|
|
|
return no if settings_active |
|
|
|
|
|
let query = state.query.trim! |
|
|
|
|
|
return no if query is '' |
|
|
|
|
|
let split_query = query.split /\s+/ |
|
|
|
|
|
return no if split_query.length < 2 |
|
|
|
|
|
yes |
|
|
|
|
|
|
|
|
|
|
|
def handle_add |
|
|
|
|
|
state.loading = yes |
|
|
|
|
|
try |
|
|
|
|
|
await api.add_link state.query |
|
|
|
|
|
state.query = '' |
|
|
|
|
|
sort_links! |
|
|
|
|
|
catch e |
|
|
|
|
|
err "adding link", e |
|
|
|
|
|
state.loading = no |
|
|
|
|
|
|
|
|
|
|
|
def construct_link_text link |
|
|
|
|
|
let link_text = "" |
|
|
|
|
|
link_text += "!" if link.is_bang |
|
|
|
|
|
link_text += link.display_name |
|
|
|
|
|
link_text += " `{link.name}" if link.name isnt link.display_name |
|
|
|
|
|
link_text += " {link.url}" |
|
|
|
|
|
link_text |
|
|
|
|
|
|
|
|
|
|
|
def handle_esc |
|
|
|
|
|
if editing_link |
|
|
|
|
|
editing_link = no |
|
|
|
|
|
state.query = prior_query |
|
|
|
|
|
prior_query = '' |
|
|
|
|
|
elif viewing_community_links |
|
|
|
|
|
viewing_community_links = no |
|
|
|
|
|
sort_links! |
|
|
|
|
|
|
|
|
|
|
|
def name_exists new_name |
|
|
|
|
|
state.links.some! do |{name}| new_name is name |
|
|
|
|
|
|
|
|
|
|
|
def handle_paste e |
|
|
|
|
|
return unless config.data.enable_search_on_paste |
|
|
|
|
|
return if state.query.length > 0 |
|
|
|
|
|
global.setTimeout(&, 0) do |
|
|
|
|
|
return if math_result isnt no |
|
|
|
|
|
bang ||= config.data.default_bang |
|
|
|
|
|
handle_bang! |
|
|
|
|
|
|
|
|
|
|
|
def handle_click_copy s |
|
|
|
|
|
try |
|
|
|
|
|
await window.navigator.clipboard.writeText(s) |
|
|
|
|
|
state.query = '' |
|
|
|
|
|
sort_links! |
|
|
|
|
|
|
|
|
|
|
|
def handle_cut e |
|
|
|
|
|
return unless e.target.selectionStart == e.target.selectionEnd |
|
|
|
|
|
let s = math_result |
|
|
|
|
|
s ||= state.query |
|
|
|
|
|
await window.navigator.clipboard.writeText(s) |
|
|
|
|
|
state.query = '' |
|
|
|
|
|
sort_links! |
|
|
|
|
|
|
|
|
|
|
|
def render |
|
|
def render |
|
|
|
|
|
|
|
|
<self.disabled=state.loading> |
|
|
<self.disabled=state.loading> |
|
@ -186,7 +72,8 @@ tag app |
|
|
box-sizing:border-box p:30px rd:10px mt:10vh |
|
|
box-sizing:border-box p:30px rd:10px mt:10vh |
|
|
|
|
|
|
|
|
if fatal_error |
|
|
if fatal_error |
|
|
<[c:blue2]> |
|
|
<.fatal> |
|
|
|
|
|
css c:blue2 |
|
|
""" |
|
|
""" |
|
|
There was an error state.loading the database. |
|
|
There was an error state.loading the database. |
|
|
This could be due to a user setting |
|
|
This could be due to a user setting |
|
|