(in-package :mewa) (defaction edit-instance ((self mewa)) (call-presentation (instance self) :type :editor)) ;;;one-line objects (defcomponent mewa-one-line-presentation (mewa one-line-presentation) () (:default-initargs :attributes-getter #'one-line-attributes-getter)) (defmethod one-line-attributes-getter ((self mewa)) (or (meta-model:list-keys (instance self)))) ;;;objects (defcomponent mewa-object-presentation (mewa ucw:object-presentation) ((ucw::instance :accessor instance :initarg :instance :initform nil))) (defmethod present ((pres mewa-object-presentation)) (<:table :class (css-class pres) (dolist (slot (slots pres)) (<:tr :class "presentation-slot-row" (present-slot-as-row pres slot)))) (render-options pres (instance pres))) (defmethod present-slot-as-row ((pres mewa-object-presentation) (slot ucw::slot-presentation)) (<:td :class "presentation-slot-label" (<:as-html (label slot))) (<:td :class "presentation-slot-value" (present-slot slot (instance pres)))) (defcomponent two-column-presentation (mewa-object-presentation) ()) (defmethod present ((pres two-column-presentation)) (<:table :class (css-class pres) (loop for slot on (slots pres) by #'cddr do (<:tr :class "presentation-slot-row" (<:td :class "presentation-slot-label" (<:as-html (label (first slot)))) (<:td :class "presentation-slot-value" (present-slot (first slot) (instance pres))) (when (second slot) (<:td :class "presentation-slot-label" (<:as-html (label (second slot)))) (<:td :class "presentation-slot-value" (present-slot (second slot) (instance pres)))))) (render-options pres (instance pres)))) ;;;lists (defcomponent mewa-list-presentation (mewa ucw:list-presentation) ((ucw::instances :accessor instances :initarg :instances :initform nil) (instance :accessor instance) (select-label :accessor select-label :initform "select" :initarg :select-label) (selectablep :accessor selectablep :initform t :initarg :selectablep) (ucw::deleteablep :accessor deletablep :initarg :deletablep :initform nil) (viewablep :accessor viewablep :initarg :viewablep :initform nil))) (defaction select-from-listing ((listing mewa-list-presentation) object index) (answer object)) (defmethod render-list-row ((listing mewa-list-presentation) object index) (<:tr :class "item-row" (<:td :align "center" :valign "top" (when (ucw::editablep listing) (let ((object object)) ( (ucw::number-input self))) (def-search-expr ((self ucw::number-equal-to)) (meta-model:expr-= (ucw::number-input self))) (defcomponent mewa-presentation-search (ucw::presentation-search) ((display-results-p :accessor display-results-p :initarg :display-results-p :initform nil) (criteria-input :accessor criteria-input :initform "") (new-criteria :accessor new-criteria :initform nil))) (defmethod instance ((self mewa:mewa-presentation-search)) (instance (ucw::search-presentation self))) (defmethod search-expr ((self mewa:mewa-presentation-search) instance) (apply #'meta-model:expr-and instance (mapcan (lambda (c) (let ((e (search-expr c instance))) (if (listp e) e (list e)))) (ucw::criteria self)))) (defmethod search-query ((self mewa:mewa-presentation-search)) (search-expr self (instance self))) (defmethod valid-instances ((self mewa:mewa-presentation-search)) (meta-model:select-instances (instance self) (search-query self))) (defmethod get-all-instances ((self mewa-presentation-search)) (meta-model:select-instances (instance self))) (defmethod ok ((self mewa-presentation-search) &optional arg) (declare (ignore arg)) (setf (ucw::instances (ucw::list-presentation self)) (valid-instances self)) (setf (display-results-p self) t)) (defmethod set-search-input-for-criteria ((criteria ucw::criteria) (input t)) (error "No search-input-for-criteria method for ~A : ~A" criteria input)) (defmethod set-search-input-for-criteria ((c ucw::string-criteria) input) (setf (ucw::search-text c) input)) (defmethod set-search-input-for-criteria ((c ucw::negated-criteria) i) nil) (defmethod mewa-add-criteria ((self component) (criteria ucw::criteria)) (set-search-input-for-criteria criteria (criteria-input self)) (ucw::add-criteria self criteria)) (defmethod find-default-criteria (c ucw::mewa-string-slot-presentation) 'ucw::string-contains) (defmethod render-criteria ((res response) (s mewa-presentation-search)) (setf (criteria-input s) "") (<:ul (dolist (c (ucw::criteria s)) (<:li (render-on res c) (let ((c c)) (