Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nebogeo
symbai
Commits
e7421339
Commit
e7421339
authored
Apr 02, 2014
by
Dave Griffiths
Browse files
tying data together, adding more mupdate forms
parent
9ae77136
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
19 deletions
+56
-19
android/assets/dbsync.scm
android/assets/dbsync.scm
+22
-1
android/assets/lib.scm
android/assets/lib.scm
+9
-0
android/assets/starwisp.scm
android/assets/starwisp.scm
+25
-18
No files found.
android/assets/dbsync.scm
View file @
e7421339
...
...
@@ -530,12 +530,33 @@
((
eq?
widget-type
'image-view
)
(
let
((
image-name
(
entity-get-value
key
)))
(
msg
"updating image widget to: "
image-name
)
(
if
(
equal?
image-name
"none"
)
(
if
(
or
(
not
image-name
)
(
equal?
image-name
"none"
)
)
(
update-widget
widget-type
(
get-symbol-id
id-symbol
)
'image
"face"
)
(
update-widget
widget-type
(
get-symbol-id
id-symbol
)
'external-image
(
string-append
dirname
"files/"
image-name
)))))
(
else
(
msg
"mupdate-widget unhandled widget type"
widget-type
))))
(
define
(
mupdate-spinner
id-symbol
key
choices
)
(
let*
((
val
(
entity-get-value
key
))
(
index
(
index-find
val
(
map
mtext-lookup
choices
))))
(
if
index
(
update-widget
'spinner
(
get-id
(
string-append
(
symbol->string
id-symbol
)
"-spinner"
))
'selection
index
)
(
msg
"spinner item in db "
val
" not found in list of items"
))))
(
define
(
mupdate-spinner-other
id-symbol
key
choices
)
(
msg
"update spinner other..."
)
(
let*
((
val
(
entity-get-value
key
))
(
index
(
index-find
val
(
map
mtext-lookup
choices
))))
(
if
index
(
update-widget
'spinner
(
get-id
(
string-append
(
symbol->string
id-symbol
)
"-spinner"
))
'selection
index
)
(
update-widget
'edit-text
(
get-id
(
string-append
(
symbol->string
id-symbol
)
"-edit-text"
))
'selection
index
))))
;;;;
;; (y m d h m s)
(
define
(
date-minus-months
d
ms
)
...
...
android/assets/lib.scm
View file @
e7421339
...
...
@@ -62,6 +62,15 @@
((
eqv?
n
(
car
(
car
l
)))
(
car
l
))
(
else
(
findv
n
(
cdr
l
)))))
;; find the index of an item in a flat list
(
define
(
index-find
n
l
)
(
define
(
_
l
i
)
(
cond
((
null?
l
)
#f
)
((
equal?
n
(
car
l
))
i
)
(
else
(
_
(
cdr
l
)
(
+
i
1
)))))
(
_
l
0
))
(
define
(
sorted-add
l
i
)
(
cond
((
null?
l
)
(
list
i
))
...
...
android/assets/starwisp.scm
View file @
e7421339
...
...
@@ -62,7 +62,7 @@
(
list
'individual
(
list
"Individual"
))
(
list
'individuals
(
list
"Individuals"
))
(
list
'add-item
(
list
"+"
))
(
list
'add-item
-to-list
(
list
"+"
))
(
list
'default-village-name
(
list
"New village"
))
(
list
'title
(
list
"Symbai"
"Symbai"
"Symbai"
))
...
...
@@ -393,8 +393,8 @@
(
mtitle-scale
title
)
(
button
(
make-id
(
string-append
(
symbol->string
title
)
"-add"
))
(
mtext-lookup
title
)
40
(
layout
'fill-parent
'wrap-content
1
'centre
5
)
(
mtext-lookup
'add-item-to-list
)
40
(
layout
100
'wrap-content
1
'centre
5
)
(
lambda
()
(
entity-init!
db
table
entity-type
ktv-default
)
(
entity-add-value!
"parent"
"varchar"
(
parent-fn
))
...
...
@@ -647,7 +647,7 @@
(
mtext
'name-display
)
(
mtext
'family-display
)
(
mtext
'photo-id-display
)))
(
mbutton
'agreement
(
lambda
()
(
list
(
start-activity
"agreement"
0
""
))))
(
mbutton
'agreement
-button
(
lambda
()
(
list
(
start-activity
"agreement"
0
""
))))
(
horiz
(
mbutton-scale
'details-button
(
lambda
()
(
list
(
start-activity
"details"
0
""
))))
(
mbutton-scale
'family-button
(
lambda
()
(
list
(
start-activity
"family"
0
""
)))))
...
...
@@ -657,7 +657,7 @@
(
horiz
(
mbutton-scale
'geneaology-button
(
lambda
()
(
list
(
start-activity
"geneaology"
0
""
))))
(
mbutton-scale
'social-button
(
lambda
()
(
list
(
start-activity
"social"
0
""
)))))
(
spacer
20
)
(
delete-button
))
(
lambda
(
activity
arg
)
...
...
@@ -670,8 +670,7 @@
(
mupdate
'text-view
'name-display
"name"
)
(
mupdate
'text-view
'family-display
"family"
)
(
mupdate
'text-view
'photo-id-display
"photo-id"
)
;;(mupdate 'image-view 'photo "photo")
))
(
mupdate
'image-view
'photo
"photo"
)))
(
lambda
(
activity
)
'
())
(
lambda
(
activity
)
'
())
(
lambda
(
activity
)
'
())
...
...
@@ -693,15 +692,15 @@
)))
(
vert
(
medit-text
'details-name
"normal"
(
lambda
(
v
)
'
()))
(
medit-text
'details-family
"normal"
(
lambda
(
v
)
'
()))
(
medit-text
'details-photo-id
"normal"
(
lambda
(
v
)
'
()))))
(
mspinner-other
'tribe
'
(
one
two
three
)
(
lambda
(
v
)
'
()))
(
mspinner-other
'sub-tribe
'
(
one
two
three
)
(
lambda
(
v
)
'
()))
(
medit-text
'details-name
"normal"
(
lambda
(
v
)
(
entity-add-value!
"name"
"varchar"
v
)
'
()))
(
medit-text
'details-family
"normal"
(
lambda
(
v
)
(
entity-add-value!
"family"
"varchar"
v
)
'
()))
(
medit-text
'details-photo-id
"normal"
(
lambda
(
v
)
(
entity-add-value!
"photo-id"
"varchar"
v
)
'
()))))
(
mspinner-other
'tribe
'
(
one
two
three
)
(
lambda
(
v
)
(
msg
"tribe now:"
v
)
(
entity-add-value!
"tribe"
"varchar"
v
)
'
()))
(
mspinner-other
'sub-tribe
'
(
one
two
three
)
(
lambda
(
v
)
(
entity-add-value!
"subtribe"
"varchar"
v
)
'
()))
(
horiz
(
medit-text
'age
"numeric"
(
lambda
(
v
)
'
()))
(
mspinner
'gender
'
(
male
female
)
(
lambda
(
v
)
'
()))
(
mspinner
'education
'
(
one
two
three
)
(
lambda
(
v
)
'
())))
(
medit-text
'age
"numeric"
(
lambda
(
v
)
(
entity-add-value!
"age"
"int"
v
)
'
()))
(
mspinner
'gender
'
(
male
female
)
(
lambda
(
v
)
(
entity-add-value!
"gender"
"varchar"
v
)
'
()))
(
mspinner
'education
'
(
one
two
three
)
(
lambda
(
v
)
(
entity-add-value!
"education"
"varchar"
v
)
'
())))
)
(
lambda
(
activity
arg
)
(
set-current!
'activity-title
"Individual details"
)
...
...
@@ -711,7 +710,12 @@
(
mupdate
'edit-text
'details-name
"name"
)
(
mupdate
'edit-text
'details-family
"family"
)
(
mupdate
'edit-text
'details-photo-id
"photo-id"
)
;;(mupdate 'image-view 'photo "photo")
(
mupdate
'image-view
'photo
"photo"
)
(
mupdate-spinner-other
'tribe
"tribe"
'
(
one
two
three
))
(
mupdate-spinner-other
'sub-tribe
"subtribe"
'
(
one
two
three
))
(
mupdate
'edit-text
'age
"age"
)
(
mupdate-spinner
'gender
"gender"
'
(
male
female
))
(
mupdate-spinner
'education
"education"
'
(
one
two
three
))
))
(
lambda
(
activity
)
'
())
(
lambda
(
activity
)
'
())
...
...
@@ -724,8 +728,11 @@
;; todo: means we save when the camera happens
;; need to do this before init is called again in on-start,
;; which happens next
(
entity-set-value!
"photo"
"file"
(
string-append
(
entity-get-value
"unique_id"
)
"-face.jpg"
))
(
let
((
unique-id
(
entity-get-value
"unique_id"
)))
(
entity-add-value!
"photo"
"file"
(
string-append
unique-id
"-face.jpg"
))
(
entity-update-values!
)
;; need to reset the individual from the db now (as update reset it)
(
entity-init!
db
"sync"
"individual"
(
get-entity-by-unique
db
"sync"
unique-id
)))
(
list
(
mupdate
'image-view
'photo
"photo"
)))
(
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment