X-Git-Url: https://git.hcoop.net/clinton/lisp-on-lines.git/blobdiff_plain/7d87c1d23f23c4aa5632712191ee989240afe80a..12dcf3d4b06fd83b8c62c01a93dc26f94dc922ee:/src/mewa/slot-presentations.lisp diff --git a/src/mewa/slot-presentations.lisp b/src/mewa/slot-presentations.lisp index 131d01c..e0ddb79 100644 --- a/src/mewa/slot-presentations.lisp +++ b/src/mewa/slot-presentations.lisp @@ -1,5 +1,34 @@ (in-package :it.bese.ucw) +(defun multiple-value-funcall->list (function &rest args) + (multiple-value-call #'list (apply function args))) + +(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) () @@ -15,9 +44,9 @@ (old-time (when (slot-boundp instance (slot-name slot)) (slot-value instance (slot-name slot))))) (unless (or (eql old-time new-time) - (and (null old-time) new-time) - (equal :equal (clsql:time-compare new-time old-time))) - (setf (presentation-slot-value slot instance) 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)")) @@ -55,7 +84,8 @@ (new-instance (call-component (parent slot) - (make-instance 'mewa::mewa-presentation-search + (make-instance (or (cadr (mewa:find-attribute finstance :presentation-search)) + 'mewa::mewa-presentation-search) :search-presentation (mewa:make-presentation finstance :type :search-presentation) @@ -63,8 +93,7 @@ (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) - (clsql:update-objects-joins (list instance)))) + (meta-model:sync-instance instance))) (defmethod present-relation ((slot mewa-relation-slot-presentation) instance) ;;;;(<:as-html (slot-name slot) "=> " (foreign-instance slot) " from " instance ) @@ -75,18 +104,9 @@ :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 (