X-Git-Url: https://git.hcoop.net/clinton/lisp-on-lines.git/blobdiff_plain/19531fbd947da15a17f8e5557a1a1492eab2bca3..ec4f5786bb3917169e036c2ddfcb0d24f22379f1:/src/mewa/slot-presentations.lisp diff --git a/src/mewa/slot-presentations.lisp b/src/mewa/slot-presentations.lisp index 4d89895..edc42fd 100644 --- a/src/mewa/slot-presentations.lisp +++ b/src/mewa/slot-presentations.lisp @@ -1,7 +1,36 @@ (in-package :it.bese.ucw) +(defun multiple-value-funcall->list (function &rest args) + (multiple-value-call #'list (apply function args))) -(defslot-presentation clsql-wall-time-slot-presentation () +(defmacro multiple-value-bindf (vars form &body body) + `(destructuring-bind ,vars + (multiple-value-funcall->list #',(car form) ,@(cdr form)) + ,@body)) + +(defslot-presentation mewa-boolean-slot-presentation (boolean-slot-presentation) + ((slot-name :accessor slot-name :initarg :slot-name)) + (:type-name mewa-boolean)) + +(defslot-presentation mewa-string-slot-presentation (string-slot-presentation ) + + ((slot-name :accessor slot-name :initarg :slot-name)) + (:type-name mewa-string)) + +(defslot-presentation mewa-number-slot-presentation (number-slot-presentation) + ((slot-name :accessor slot-name :initarg :slot-name)) + (:type-name mewa-number)) + +(defslot-presentation mewa-integer-slot-presentation (integer-slot-presentation) + ((slot-name :accessor slot-name :initarg :slot-name)) + (:type-name mewa-integer)) + +(defslot-presentation mewa-currency-slot-presentation (currency-slot-presentation) + + ((slot-name :accessor slot-name :initarg :slot-name)) + (:type-name mewa-currency)) + +(defslot-presentation clsql-wall-time-slot-presentation (mewa-relation-slot-presentation) () (:type-name clsql-sys:wall-time)) @@ -11,7 +40,13 @@ (format nil "~a/~a/~a" m d y))))) (defmethod (setf presentation-slot-value) ((value string) (slot clsql-wall-time-slot-presentation) instance) - (setf (presentation-slot-value slot instance) (clsql:parse-date-time (remove #\Space value)))) + (let ((new-time (clsql:parse-date-time (remove #\Space value))) + (old-time (when (slot-boundp instance (slot-name slot)) + (slot-value instance (slot-name slot))))) + (unless (or (eql old-time new-time) + (when (and new-time old-time) + (equal :equal (clsql:time-compare new-time old-time)))) + (setf (presentation-slot-value slot instance) new-time )))) (defmethod label :around ((slot clsql-wall-time-slot-presentation)) (concatenate 'string (call-next-method) " (mm/dd/yyyy)")) @@ -36,6 +71,30 @@ (linkedp :accessor linkedp :initarg :linkedp :initform t)) (:type-name relation)) +(defun get-fkey-data (instance slot-name) + "ugly workaround b/c UCW does not like M-V-B" + (multiple-value-bind (finstance foreign-slot-name) + (meta-model:explode-foreign-key instance slot-name) + (cons finstance foreign-slot-name))) + +(defaction search-records ((slot mewa-relation-slot-presentation) instance) + (let* ((d (get-fkey-data instance (slot-name slot))) + (finstance (car d)) + (foreign-slot-name (cdr d)) + (new-instance + (call-component + (parent slot) + (make-instance (or (cadr (mewa:find-attribute finstance :presentation-search)) + 'mewa::mewa-presentation-search) + :search-presentation + (mewa:make-presentation finstance + :type :search-presentation) + :list-presentation + (mewa:make-presentation finstance + :type :listing))))) + (setf (slot-value instance (slot-name slot)) (slot-value new-instance foreign-slot-name)) + (meta-model:sync-instance instance))) + (defmethod present-relation ((slot mewa-relation-slot-presentation) instance) ;;;;(<:as-html (slot-name slot) "=> " (foreign-instance slot) " from " instance ) (let* ((i (foreign-instance slot)) @@ -45,18 +104,11 @@ :initargs (list :global-properties (list :editablep nil :linkedp nil))))) - (when (ucw::parent slot) (setf (component.place pres) (component.place (ucw::parent slot)))) - (flet ((render () (when i (