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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305
|
# diodisplay.tcl --
# Copyright 2002-2004 The Apache Software Foundation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# $Id: diodisplay.tcl 374757 2006-02-03 21:45:54Z karl $
#
package require Itcl
package require DIO
package require form
package provide DIODisplay 1.0
catch { ::itcl::delete class DIODisplay }
::itcl::class ::DIODisplay {
constructor {args} {
eval configure $args
load_response
if {[lempty $DIO]} {
return -code error "You must specify a DIO object"
}
if {[lempty $form]} {
set form [namespace which [::form #auto -defaults response]]
}
set document [env DOCUMENT_NAME]
if {[info exists response(num)] \
&& ![lempty $response(num)]} {
set pagesize $response(num)
}
read_css_file
}
destructor {
if {$cleanup} { do_cleanup }
}
method destroy {} {
::itcl::delete object $this
}
#
# configvar - a convenient helper for creating methods that can
# set and fetch one of the object's variables
#
method configvar {varName string} {
if {[lempty $string]} { return [set $varName] }
configure -$varName $string
}
#
# is_function - return true if name is known to be a function
# such as Search List Add Edit Delete Details Main Save DoDelete Cancel
# etc.
#
method is_function {name} {
if {[lsearch $functions $name] > -1} { return 1 }
if {[lsearch $allfunctions $name] > -1} { return 1 }
return 0
}
#
# do_cleanup - clean up our field subobjects, DIO objects, forms, and the
# like.
#
method do_cleanup {} {
## Destroy all the fields created.
foreach field $allfields { catch { $field destroy } }
## Destroy the DIO object.
catch { $DIO destroy }
## Destroy the form object.
catch { $form destroy }
}
#
# handle_error - emit an error message
#
method handle_error {error} {
puts "<B>An error has occurred processing your request</B>"
puts "<PRE>"
puts "$error"
puts ""
puts "$::errorInfo"
puts "</PRE>"
}
#
# read_css_file - parse and read in a CSS file so we can
# recognize CSS info and emit it in appropriate places
#
method read_css_file {} {
if {[lempty $css]} { return }
if {[catch {open [virtual_filename $css]} fp]} { return }
set contents [read $fp]
close $fp
array set tmpArray $contents
foreach class [array names tmpArray] {
set cssArray([string toupper $class]) $tmpArray($class)
}
}
#
# get_css_class - figure out which CSS class we want to use.
# If class exists, we use that. If not, we use default.
#
method get_css_class {tag default class} {
# if tag.class exists, use that
if {[info exists cssArray([string toupper $tag.$class])]} {
return $class
}
# if .class exists, use that
if {[info exists cssArray([string toupper .$class])]} {
return $class
}
# use the default
return $default
}
#
# parse_css_class - given a class and the name of an array, parse
# the named CSS class (read from the style sheet) and return it as
# key-value pairs in the named array.
#
method parse_css_class {class arrayName} {
# if we don't have an entry for the specified glass, give up
if {![info exists cssArray($class)]} {
return
}
# split CSS entry on semicolons, for each one...
upvar 1 $arrayName array
foreach line [split $cssArray($class) \;] {
# trim leading and trailing spaces
set line [string trim $line]
# split the line on a colon into property and value
lassign [split $line :] property value
# map the property to space-trimmed lowercase and
# space-trim the value, then store in the passed array
set property [string trim [string tolower $property]]
set value [string trim $value]
set array($property) $value
}
}
#
# button_image_src - return the value of the image-src element in
# the specified class (from the CSS style sheet), or an empty
# string if there isn't one.
#
method button_image_src {class} {
set class [string toupper input.$class]
parse_css_class $class array
if {![info exists array(image-src)]} {
return
}
return $array(image-src)
}
# state - return a list of name-value pairs that represents the current
# state of the query, which can be used to properly populate links
# outside DIOdisplay.
method state {} {
set state {}
foreach fld {mode query by how sort num page} {
if [info exists response($fld)] {
lappend state $fld $response($fld)
}
}
return $state
}
method show {} {
# if there's a mode in the response array, use that, else set
# mode to Main
set mode Main
if {[info exists response(mode)]} {
set mode $response(mode)
}
# if there is a style sheet defined, emit HTML to reference it
if {![lempty $css]} {
puts "<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"$css\">"
}
# put out the table header
puts {<TABLE WIDTH="100%" CLASS="DIO">}
puts "<TR>"
puts {<TD VALIGN="center" CLASS="DIO">}
# if mode isn't Main and persistentmain is set (the default),
# run Main
if {$mode != "Main" && $persistentmain} {
Main
}
if {![is_function $mode]} {
puts "In-valid function"
return
}
if {[catch "$this $mode" error]} {
handle_error $error
}
puts "</TD>"
puts "</TR>"
puts "</TABLE>"
if {$cleanup} { destroy }
}
method showview {} {
puts {<TABLE CLASS="DIOView">}
set row 0
foreach field $fields {
$field showview [lindex {"" "Alt"} $row]
set row [expr 1 - $row]
}
puts "</TABLE>"
}
#
# showform_prolog - emit a form for inserting a new record
#
# response(by) will contain whatever was in the "where" field
# response(query) will contain whatever was in the "is" field
#
method showform_prolog {{args ""}} {
get_field_values array
eval $form start $args
foreach fld [array names hidden] {
$form hidden $fld -value $hidden($fld)
}
$form hidden mode -value Save
$form hidden DIODfromMode -value $response(mode)
$form hidden DIODkey -value [$DIO makekey array]
puts {<TABLE CLASS="DIOForm">}
}
method showform_epilog {} {
set save [button_image_src DIOFormSaveButton]
set cancel [button_image_src DIOFormCancelButton]
puts "</TABLE>"
puts "<TABLE>"
puts "<TR>"
puts "<TD>"
if {![lempty $save]} {
$form image save -src $save -class DIOFormSaveButton
} else {
$form submit save.x -value "Save" -class DIOFormSaveButton
}
puts "</TD>"
puts "<TD>"
if {![lempty $cancel]} {
$form image cancel -src $cancel -class DIOFormSaveButton
} else {
$form submit cancel.x -value "Cancel" -class DIOFormCancelButton
}
puts "</TD>"
puts "</TR>"
puts "</TABLE>"
$form end
}
#
# showform - emit a form for inserting a new record
#
# response(by) will contain whatever was in the "where" field
# response(query) will contain whatever was in the "is" field
#
method showform {} {
showform_prolog
# emit each field
foreach field $fields {
showform_field $field
}
showform_epilog
}
# showform_field - emit the form field for the specified field using
# the showform method of the field. If the user has typed something
# into the search field and it matches the fields being emitted,
# use that value as the default
#
method showform_field {field} {
if {[info exists response(by)] && $response(by) == [$field text]} {
if {![$field readonly] && $response(query) != ""} {
$field value $response(query)
}
}
$field showform
}
method page_buttons {end {count 0}} {
if {$pagesize <= 0} { return }
if {![info exists response(page)]} { set response(page) 1 }
set pref DIO$end
if {!$count} {
set count [$DIOResult numrows]
}
set pages [expr ($count + $pagesize - 1) / $pagesize]
if {$pages <= 1} {
return
}
set first [expr $response(page) - 4]
if {$first > $pages - 9} {
set first [expr $pages - 9]
}
if {$first > 1} {
lappend pagelist 1 1
if {$first > 3} {
lappend pagelist ".." 0
} elseif {$first > 2} {
lappend pagelist 2 2
}
} else {
set first 1
}
set last [expr $response(page) + 4]
if {$last < 9} {
set last 9
}
if {$last > $pages} {
set last $pages
}
for {set i $first} {$i <= $last} {incr i} {
lappend pagelist $i $i
}
if {$last < $pages} {
if {$last < $pages - 2} {
lappend pagelist ".." 0
} elseif {$last < $pages - 1} {
incr last
lappend pagelist $last $last
}
lappend pagelist $pages $pages
}
foreach {n p} $pagelist {
if {$p == 0 || $p == $response(page)} {
lappend navbar $n
} else {
set html {<A HREF="}
append html "$document?mode=$response(mode)"
foreach var {query by how sort num} {
if {[info exists response($var)]} {
append html "&$var=$response($var)"
}
}
foreach fld [array names hidden] {
append html "&$fld=$hidden($fld)"
}
append html "&page=$p\">$n</A>"
lappend navbar $html
}
}
if {"$end" == "Bottom"} {
puts "<BR/>"
}
set class [get_css_class TABLE DIONavButtons ${pref}NavButtons]
puts "<TABLE WIDTH=\"100%\" CLASS=\"$class\">"
puts "<TR>"
puts "<TD>"
if {"$end" == "Top"} {
puts "$count rows, go to page"
} else {
puts "Go to page"
}
foreach link $navbar {
puts "$link "
}
puts "</TD>"
if {"$end" == "Top" && $pages>10} {
set f [::form #auto]
$f start
foreach fld [array names hidden] {
$f hidden $fld -value $hidden($fld)
}
foreach fld {mode query by how sort num} {
if [info exists response($fld)] {
$f hidden $fld -value $response($fld)
}
}
puts "<TD ALIGN=RIGHT>"
puts "Jump directly to"
$f text page -size 4 -value $response(page)
$f submit submit -value "Go"
puts "</TD>"
$f end
}
puts "</TR>"
puts "</TABLE>"
if {"$end" == "Top"} {
puts "<BR/>"
}
}
method rowheader {{total 0}} {
set fieldList $fields
if {![lempty $rowfields]} { set fieldList $rowfields }
set rowcount 0
puts <P>
if {$topnav} { page_buttons Top $total }
puts {<TABLE BORDER WIDTH="100%" CLASS="DIORowHeader">}
puts "<TR CLASS=DIORowHeader>"
foreach field $fieldList {
set text [$field text]
set sorting $allowsort
## If sorting is turned off, or this field is not in the
## sortfields, we don't display the sort option.
if {$sorting && ![lempty $sortfields]} {
if {[lsearch $sortfields $field] < 0} {
set sorting 0
}
}
if {$sorting && [info exists response(sort)]} {
if {"$response(sort)" == "$field"} {
set sorting 0
}
}
if {!$sorting} {
set html $text
} else {
set html {<A HREF="}
append html "$document?mode=$response(mode)"
foreach var {query by how num} {
if {[info exists response($var)]} {
append html "&$var=$response($var)"
}
}
foreach fld [array names hidden] {
append html "&$fld=$hidden($fld)"
}
append html "&sort=$field\">$text</A>"
}
set class [get_css_class TH DIORowHeader DIORowHeader-$field]
puts "<TH CLASS=\"$class\">$html</TH>"
}
if {![lempty $rowfunctions] && "$rowfunctions" != "-"} {
puts {<TH CLASS="DIORowHeaderFunctions">Functions</TH>}
}
puts "</TR>"
}
method showrow {arrayName} {
upvar 1 $arrayName a
incr rowcount
set alt ""
if {$alternaterows && ![expr $rowcount % 2]} { set alt Alt }
set fieldList $fields
if {![lempty $rowfields]} { set fieldList $rowfields }
puts "<TR>"
foreach field $fieldList {
set class [get_css_class TD DIORowField$alt DIORowField$alt-$field]
set text ""
if {[info exists a($field)]} {
set text $a($field)
if [info exists filters($field)] {
set text [$filters($field) $text]
}
}
if ![string length $text] {
set text " "
}
puts "<TD CLASS=\"$class\">$text</TD>"
}
if {![lempty $rowfunctions] && "$rowfunctions" != "-"} {
set f [::form #auto]
puts "<TD NOWRAP CLASS=\"DIORowFunctions$alt\">"
$f start
foreach fld [array names hidden] {
$f hidden $fld -value $hidden($fld)
}
$f hidden query -value [$DIO makekey a]
if {[llength $rowfunctions] > 1} {
$f select mode -values $rowfunctions -class DIORowFunctionSelect$alt
$f submit submit -value "Go" -class DIORowFunctionButton$alt
} else {
set func [lindex $rowfunctions 0]
$f hidden mode -value $func
$f submit submit -value $func -class DIORowFunctionButton$alt
}
puts "</TD>"
$f end
}
puts "</TR>"
}
method rowfooter {{total 0}} {
puts "</TABLE>"
if {$bottomnav} { page_buttons Bottom $total }
}
## Define a new function.
method function {name} {
lappend allfunctions $name
}
## Define a field in the object.
method field {name args} {
import_keyvalue_pairs data $args
lappend fields $name
lappend allfields $name
set class DIODisplayField
if {[info exists data(type)]} {
if {![lempty [::itcl::find classes *DIODisplayField_$data(type)]]} {
set class DIODisplayField_$data(type)
}
}
eval $class $name -name $name -display $this -form $form $args
set FieldTextMap([$name text]) $name
}
method fetch {key arrayName} {
upvar 1 $arrayName $arrayName
set result [$DIO fetch $key $arrayName]
set error [$DIO errorinfo]
if {![lempty $error]} { return -code error $error }
return $result
}
method store {arrayName} {
upvar 1 $arrayName array
set result [$DIO store array]
set error [$DIO errorinfo]
if {![lempty $error]} { return -code error $error }
return $result
}
method update_with_explicit_key {key arrayName} {
upvar 1 $arrayName array
set result [$DIO update_with_explicit_key $key array]
set error [$DIO errorinfo]
if {![lempty $error]} {return -code error $error}
return $result
}
method delete {key} {
set result [$DIO delete $key]
set error [$DIO errorinfo]
if {![lempty $error]} { return -code error $error }
return $result
}
method pretty_fields {list} {
foreach field $list {
lappend fieldList [$field text]
}
return $fieldList
}
method set_field_values {arrayName} {
upvar 1 $arrayName array
# for all the elements in the specified array, try to invoke
# the element as an object, invoking the method "value" to
# set the value to the specified value
foreach var [array names array] {
#if {[catch { $var value $array($var) } result] == 1} {}
if {[catch { $var configure -value $array($var) } result] == 1} {
}
}
}
method get_field_values {arrayName} {
upvar 1 $arrayName array
foreach field $allfields {
# for some reason the method for getting the value doesn't
# work for boolean values, which inherit DIODisplayField,
# something to do with configvar
#set array($field) [$field value]
set array($field) [$field cget -value]
}
}
method DisplayRequest {query} {
set DIOResult [eval $DIO search -select "count(*)" $query]
if [$DIOResult numrows] {
$DIOResult next -array a
set total $a(count)
} else {
set total 0
}
$DIOResult destroy
set DIOResult ""
append query [sql_order_by_syntax]
append query [sql_limit_syntax]
set DIOResult [eval $DIO search $query]
if {[$DIOResult numrows] <= 0} {
puts "Could not find any matching records."
$DIOResult destroy
set DIOResult ""
return
}
rowheader $total
$DIOResult forall -array a {
showrow a
}
rowfooter $total
$DIOResult destroy
set DIOResult ""
}
method Main {} {
puts "<TABLE BORDER=0 WIDTH=100% CLASS=DIOForm><TR>"
set selfunctions {}
foreach f $functions {
if {"$f" != "List"} {
lappend selfunctions $f
} else {
set f [::form #auto]
$f start
foreach fld [array names hidden] {
$f hidden $fld -value $hidden($fld)
}
$f hidden mode -value "List"
$f hidden query -value ""
puts "<TD CLASS=DIOForm ALIGN=CENTER VALIGN=MIDDLE WIDTH=0%>"
$f submit submit -value "Show All" -class DIORowFunctionButton
puts "</TD>"
$f end
}
}
puts "<TD CLASS=DIOForm VALIGN=MIDDLE WIDTH=100%>"
$form start
puts " "
foreach fld [array names hidden] {
$form hidden $fld -value $hidden($fld)
}
if {[llength $selfunctions] > 1} {
$form select mode -values $selfunctions -class DIOMainFunctionsSelect
puts "where"
} else {
puts "Where"
}
set useFields $fields
if {![lempty $searchfields]} { set useFields $searchfields }
$form select by -values [pretty_fields $useFields] \
-class DIOMainSearchBy
if [string match {[Ss]earch} $selfunctions] {
$form select how -values {"=" "<" "<=" ">" ">="}
} else {
puts "is"
}
if [info exists response(query)] {
$form text query -value $response(query) -class DIOMainQuery
} else {
$form text query -value "" -class DIOMainQuery
}
if {[llength $selfunctions] > 1} {
$form submit submit -value "GO" -class DIOMainSubmitButton
} else {
$form hidden mode -value $selfunctions
$form submit submit -value $selfunctions -class DIOMainSubmitButton
}
puts "</TD></TR>"
if {![lempty $numresults]} {
puts "<TR><TD CLASS=DIOForm>Results per page: "
$form select num -values $numresults -class DIOMainNumResults
puts "</TD></TR>"
}
$form end
puts "</TABLE>"
}
method sql_order_by_syntax {} {
if {[info exists response(sort)] && ![lempty $response(sort)]} {
return " ORDER BY $response(sort)"
}
if {![lempty $defaultsortfield]} {
return " ORDER BY $defaultsortfield"
}
}
method sql_limit_syntax {} {
if {$pagesize <= 0} { return }
set offset ""
if {[info exists response(page)]} {
set offset [expr ($response(page) - 1) * $pagesize]
}
return [$DIO sql_limit_syntax $pagesize $offset]
}
method Search {} {
set searchField $FieldTextMap($response(by))
set what $response(query)
if {[info exists response(how)] && [string length $response(how)]} {
set what "$response(how)$what"
}
DisplayRequest "-$searchField $what"
}
method List {} {
DisplayRequest ""
}
method Add {} {
showform
}
method Edit {} {
if {![fetch $response(query) array]} {
puts "That record does not exist in the database."
return
}
set_field_values array
showform
}
##
## When we save, we want to set all the fields' values and then get
## them into a new array. We do this because we want to clean any
## unwanted variables out of the array but also because some fields
## have special handling for their values, and we want to make sure
## we get the right value.
##
method Save {} {
if {[info exists response(cancel.x)]} {
Cancel
return
}
## We need to see if the key exists. If they are adding a new
## entry, we just want to see if the key exists. If they are
## editing an entry, we need to see if they changed the keyfield
## while editing. If they didn't change the keyfield, there's no
## reason to check it.
if {$response(DIODfromMode) == "Add"} {
set key [$DIO makekey response]
fetch $key a
} else {
set key $response(DIODkey)
set newkey [$DIO makekey response]
## If we have a new key, and the newkey doesn't exist in the
## database, we are moving this record to a new key, so we
## need to delete the old key.
if {$key != $newkey} {
if {![fetch $newkey a]} {
# no record already exists with the new key,
# do a special update
set_field_values response
get_field_values updateArray
update_with_explicit_key $key updateArray
headers redirect $document
return
}
}
}
# if we got here and array "a" exists, they're trying to alter a key
# to a key that already exists
if {[array exists a]} {
puts "That record already exists in the database."
return
}
set_field_values response
get_field_values storeArray
store storeArray
headers redirect $document
}
method Delete {} {
if {![fetch $response(query) array]} {
puts "That record does not exist in the database."
return
}
if {!$confirmdelete} {
DoDelete
return
}
puts "<CENTER>"
puts {<TABLE CLASS="DIODeleteConfirm">}
puts "<TR>"
puts {<TD COLSPAN=2 CLASS="DIODeleteConfirm">}
puts "Are you sure you want to delete this record from the database?"
puts "</TD>"
puts "</TR>"
puts "<TR>"
puts {<TD ALIGN="center" CLASS="DIODeleteConfirmYesButton">}
set f [::form #auto]
$f start
foreach fld [array names hidden] {
$f hidden $fld -value $hidden($fld)
}
$f hidden mode -value DoDelete
$f hidden query -value $response(query)
$f submit submit -value Yes -class DIODeleteConfirmYesButton
$f end
puts "</TD>"
puts {<TD ALIGN="center" CLASS="DIODeleteConfirmNoButton">}
set f [::form #auto]
$f start
foreach fld [array names hidden] {
$f hidden $fld -value $hidden($fld)
}
$f submit submit -value No -class "DIODeleteConfirmNoButton"
$f end
puts "</TD>"
puts "</TR>"
puts "</TABLE>"
puts "</CENTER>"
}
method DoDelete {} {
delete $response(query)
headers redirect $document
}
method Details {} {
if {![fetch $response(query) array]} {
puts "That record does not exist in the database."
return
}
set_field_values array
showview
}
method Cancel {} {
headers redirect $document
}
###
## Define variable functions for each variable.
###
method fields {{list ""}} {
if {[lempty $list]} { return $fields }
foreach field $list {
if {[lsearch $allfields $field] < 0} {
return -code error "Field $field does not exist."
}
}
set fields $list
}
method searchfields {{list ""}} {
if {[lempty $list]} { return $searchfields }
foreach field $list {
if {[lsearch $allfields $field] < 0} {
return -code error "Field $field does not exist."
}
}
set searchfields $list
}
method rowfields {{list ""}} {
if {[lempty $list]} { return $rowfields }
foreach field $list {
if {[lsearch $allfields $field] < 0} {
return -code error "Field $field does not exist."
}
}
set rowfields $list
}
method filter {field {value ""}} {
if [string length $value] {
set filters($field) [uplevel 1 [list namespace which $value]]
} else {
if [info exists filters($field)] {
return $filters($field)
} else {
return ""
}
}
}
method hidden {name {value ""}} {
if [string length $value] {
set hidden($name) $value
} else {
if [info exists hidden($name)] {
return $hidden($name)
} else {
return ""
}
}
}
method DIO {{string ""}} { configvar DIO $string }
method DIOResult {{string ""}} { configvar DIOResult $string }
method title {{string ""}} { configvar title $string }
method functions {{string ""}} { configvar functions $string }
method pagesize {{string ""}} { configvar pagesize $string }
method form {{string ""}} { configvar form $string }
method cleanup {{string ""}} { configvar cleanup $string }
method confirmdelete {{string ""}} { configvar confirmdelete $string }
method css {{string ""}} { configvar css $string }
method persistentmain {{string ""}} { configvar persistentmain $string }
method alternaterows {{string ""}} { configvar alternaterows $string }
method allowsort {{string ""}} { configvar allowsort $string }
method sortfields {{string ""}} { configvar sortfields $string }
method topnav {{string ""}} { configvar topnav $string }
method bottomnav {{string ""}} { configvar bottomnav $string }
method numresults {{string ""}} { configvar numresults $string }
method defaultsortfield {{string ""}} { configvar defaultsortfield $string }
method rowfunctions {{string ""}} { configvar rowfunctions $string }
## OPTIONS ##
public variable DIO ""
public variable DIOResult ""
public variable title ""
public variable fields ""
public variable searchfields ""
public variable functions "Search List Add Edit Delete Details"
public variable pagesize 25
public variable form ""
public variable cleanup 1
public variable confirmdelete 1
public variable css "diodisplay.css" {
if {![lempty $css]} {
catch {unset cssArray}
read_css_file
}
}
public variable persistentmain 1
public variable alternaterows 1
public variable allowsort 1
public variable sortfields ""
public variable topnav 1
public variable bottomnav 1
public variable numresults ""
public variable defaultsortfield ""
public variable rowfields ""
public variable rowfunctions "Details Edit Delete"
public variable response
public variable cssArray
public variable document ""
public variable allfields ""
public variable FieldTextMap
public variable allfunctions {
Search
List
Add
Edit
Delete
Details
Main
Save
DoDelete
Cancel
}
private variable rowcount
private variable filters
private variable hidden
} ; ## ::itcl::class DIODisplay
catch { ::itcl::delete class ::DIODisplayField }
#
# DIODisplayField object -- defined for each field we're displaying
#
::itcl::class ::DIODisplayField {
constructor {args} {
## We want to simulate Itcl's configure command, but we want to
## check for arguments that are not variables of our object. If
## they're not, we save them as arguments to the form when this
## field is displayed.
import_keyvalue_pairs data $args
foreach var [array names data] {
if {![info exists $var]} {
lappend formargs -$var $data($var)
} else {
set $var $data($var)
}
}
# if text (field description) isn't set, prettify the actual
# field name and use that
if {[lempty $text]} { set text [pretty [split $name _]] }
}
destructor {
}
method destroy {} {
::itcl::delete object $this
}
#
# get_css_class - ask the parent DIODIsplay object to look up
# a CSS class entry
#
method get_css_class {tag default class} {
return [$display get_css_class $tag $default $class]
}
#
# get_css_tag -- set tag to select or textarea if type is select
# or textarea, else to input
#
method get_css_tag {} {
switch -- $type {
"select" {
set tag select
}
"textarea" {
set tag textarea
}
default {
set tag input
}
}
}
#
# pretty -- prettify a list of words by uppercasing the first letter
# of each word
#
method pretty {string} {
set words ""
foreach w $string {
lappend words \
[string toupper [string index $w 0]][string range $w 1 end]
}
return [join $words " "]
}
method configvar {varName string} {
if {[lempty $string]} { return [set $varName] }
configure -$varName $string
}
#
# showview - emit a table row of either DIOViewRow, DIOViewRowAlt,
# DIOViewRow-fieldname (this object's field name), or
# DIOViewRowAlt-fieldname, a table data field of either
# DIOViewHeader or DIOViewHeader-fieldname, and then a
# value of class DIOViewField or DIOViewField-fieldname
#
method showview {{alt ""}} {
set class [get_css_class TR DIOViewRow$alt DIOViewViewRow$alt-$name]
puts "<TR CLASS=\"$class\">"
set class [get_css_class TD DIOViewHeader DIOViewHeader-$name]
puts "<TD CLASS=\"$class\">$text:</TD>"
set class [get_css_class TD DIOViewField DIOViewField-$name]
puts "<TD CLASS=\"$class\">$value</TD>"
puts "</TR>"
}
#
# showform -- like showview, creates a table row and table data, but
# if readonly isn't set, emits a form field corresponding to the type
# of this field
#
method showform {} {
puts "<TR>"
set class [get_css_class TD DIOFormHeader DIOFormHeader-$name]
puts "<TD CLASS=\"$class\">$text:</TD>"
set class [get_css_class TD DIOFormField DIOFormField-$name]
puts "<TD CLASS=\"$class\">"
if {$readonly} {
puts "$value"
} else {
set tag [get_css_tag]
set class [get_css_class $tag DIOFormField DIOFormField-$name]
if {$type == "select"} {
$form select $name -values $values -value $value -class $class
} else {
eval $form $type $name -value [list $value] $formargs -class $class
}
}
puts "</TD>"
puts "</TR>"
}
# methods that give us method-based access to get and set the
# object's variables...
method display {{string ""}} { configvar display $string }
method form {{string ""}} { configvar form $string }
method formargs {{string ""}} { configvar formargs $string }
method name {{string ""}} { configvar name $string }
method text {{string ""}} { configvar text $string }
method type {{string ""}} { configvar type $string }
method value {{string ""}} { configvar value $string }
method readonly {{string ""}} { configvar readonly $string }
public variable display ""
public variable form ""
public variable formargs ""
# values - for fields of type "select" only, the values that go in
# the popdown (or whatever) selector
public variable values ""
# name - the field name
public variable name ""
# text - the description text for the field. if not specified,
# it's constructed from a prettified version of the field name
public variable text ""
# value - the default value of the field
public variable value ""
# type - the data type of the field
public variable type "text"
# readonly - if 1, we don't allow the value to be changed
public variable readonly 0
} ; ## ::itcl::class DIODisplayField
catch { ::itcl::delete class ::DIODisplayField_boolean }
#
# DIODisplayField_boolen -- superclass of DIODisplayField that overrides
# a few methods to specially handle booleans
#
::itcl::class ::DIODisplayField_boolean {
inherit ::DIODisplayField
constructor {args} {eval configure $args} {
eval configure $args
}
method add_true_value {string} {
lappend trueValues $string
}
#
# showform -- emit a form field for a boolean
#
method showform {} {
puts "<TR>"
set class [get_css_class TD DIOFormHeader DIOFormHeader-$name]
puts "<TD CLASS=\"$class\">$text:</TD>"
set class [get_css_class TD DIOFormField DIOFormField-$name]
puts "<TD CLASS=\"$class\">"
if {$readonly} {
if {[boolean_value]} {
puts $true
} else {
puts $false
}
} else {
if {[boolean_value]} {
$form default_value $name $true
} else {
$form default_value $name $false
}
eval $form radiobuttons $name \
-values [list "$true $false"] $formargs
}
puts "</TD>"
puts "</TR>"
}
#
# showview -- emit a view for a boolean
#
method showview {{alt ""}} {
set class [get_css_class TR DIOViewRow$alt DIOViewRow$alt-$name]
puts "<TR CLASS=\"$class\">"
set class [get_css_class TD DIOViewHeader DIOViewHeader-$name]
puts "<TD CLASS=\"$class\">$text:</TD>"
set class [get_css_class TD DIOViewField DIOViewField-$name]
puts "<TD CLASS=\"$class\">"
if {[boolean_value]} {
puts $true
} else {
puts $false
}
puts "</TD>"
puts "</TR>"
}
#
# boolean_value -- return 1 if value is found in the values list, else 0
#
method boolean_value {} {
set val [string tolower $value]
if {[lsearch -exact $values $val] > -1} { return 1 }
return 0
}
method value {{string ""}} { configvar value $string }
public variable true "Yes"
public variable false "No"
public variable values "1 y yes t true on"
public variable value "" {
if {[boolean_value]} {
set value $true
} else {
set value $false
}
}
} ; ## ::itcl::class ::DIODisplayField_boolean
|