author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Fri, 31 Jul 2009 23:21:45 +0200 | |
changeset 2592 | c97c4b56e6a0 |
parent 2381 | caad2367d940 |
child 2710 | 40789c3044f3 |
permissions | -rw-r--r-- |
0 | 1 |
"""abstract box classes for CubicWeb web client |
2 |
||
3 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1885
diff
changeset
|
4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1885
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 7 |
""" |
8 |
__docformat__ = "restructuredtext en" |
|
2159 | 9 |
_ = unicode |
0 | 10 |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2159
diff
changeset
|
11 |
from logilab.mtconverter import xml_escape |
0 | 12 |
|
1149 | 13 |
from cubicweb import Unauthorized, role as get_role, target as get_target |
652
603c782dc092
various SyntaxErrors / missing import fixes + reorganization of the `registered` classmethod
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
640
diff
changeset
|
14 |
from cubicweb.selectors import (one_line_rset, primary_view, |
838
f2c56312b03a
rename abstract_* selectors into partial_* + add docstrings
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
816
diff
changeset
|
15 |
match_context_prop, partial_has_related_entities, |
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
809
diff
changeset
|
16 |
accepts_compat, has_relation_compat, |
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
809
diff
changeset
|
17 |
condition_compat, require_group_compat) |
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
809
diff
changeset
|
18 |
from cubicweb.view import View, ReloadableMixIn |
0 | 19 |
|
20 |
from cubicweb.web.htmlwidgets import (BoxLink, BoxWidget, SideBoxWidget, |
|
250
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
21 |
RawBoxItem, BoxSeparator) |
0 | 22 |
from cubicweb.web.action import UnregisteredAction |
23 |
||
24 |
||
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
809
diff
changeset
|
25 |
class BoxTemplate(View): |
0 | 26 |
"""base template for boxes, usually a (contextual) list of possible |
1493 | 27 |
|
0 | 28 |
actions. Various classes attributes may be used to control the box |
29 |
rendering. |
|
1493 | 30 |
|
0 | 31 |
You may override on of the formatting callbacks is this is not necessary |
32 |
for your custom box. |
|
1493 | 33 |
|
0 | 34 |
Classes inheriting from this class usually only have to override call |
35 |
to fetch desired actions, and then to do something like :: |
|
36 |
||
37 |
box.render(self.w) |
|
38 |
""" |
|
39 |
__registry__ = 'boxes' |
|
809 | 40 |
__select__ = match_context_prop() |
1181
620ec8e6ae19
cleanup, various fix to get something working
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
41 |
registered = classmethod(require_group_compat(View.registered)) |
1493 | 42 |
|
0 | 43 |
categories_in_order = () |
44 |
property_defs = { |
|
45 |
_('visible'): dict(type='Boolean', default=True, |
|
46 |
help=_('display the box or not')), |
|
47 |
_('order'): dict(type='Int', default=99, |
|
48 |
help=_('display order of the box')), |
|
49 |
# XXX 'incontext' boxes are handled by the default primary view |
|
50 |
_('context'): dict(type='String', default='left', |
|
51 |
vocabulary=(_('left'), _('incontext'), _('right')), |
|
52 |
help=_('context where this box should be displayed')), |
|
53 |
} |
|
54 |
context = 'left' |
|
55 |
htmlitemclass = 'boxItem' |
|
56 |
||
57 |
def sort_actions(self, actions): |
|
58 |
"""return a list of (category, actions_sorted_by_title)""" |
|
59 |
result = [] |
|
60 |
actions_by_cat = {} |
|
61 |
for action in actions: |
|
62 |
actions_by_cat.setdefault(action.category, []).append((action.title, action)) |
|
63 |
for key, values in actions_by_cat.items(): |
|
64 |
actions_by_cat[key] = [act for title, act in sorted(values)] |
|
65 |
for cat in self.categories_in_order: |
|
66 |
if cat in actions_by_cat: |
|
67 |
result.append( (cat, actions_by_cat[cat]) ) |
|
68 |
for item in sorted(actions_by_cat.items()): |
|
69 |
result.append(item) |
|
70 |
return result |
|
71 |
||
72 |
def mk_action(self, title, path, escape=True, **kwargs): |
|
73 |
"""factory function to create dummy actions compatible with the |
|
74 |
.format_actions method |
|
75 |
""" |
|
76 |
if escape: |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2159
diff
changeset
|
77 |
title = xml_escape(title) |
0 | 78 |
return self.box_action(self._action(title, path, **kwargs)) |
1493 | 79 |
|
0 | 80 |
def _action(self, title, path, **kwargs): |
1493 | 81 |
return UnregisteredAction(self.req, self.rset, title, path, **kwargs) |
0 | 82 |
|
83 |
# formating callbacks |
|
84 |
||
85 |
def boxitem_link_tooltip(self, action): |
|
86 |
if action.id: |
|
87 |
return u'keyword: %s' % action.id |
|
88 |
return u'' |
|
89 |
||
90 |
def box_action(self, action): |
|
91 |
cls = getattr(action, 'html_class', lambda: None)() or self.htmlitemclass |
|
92 |
return BoxLink(action.url(), self.req._(action.title), |
|
93 |
cls, self.boxitem_link_tooltip(action)) |
|
1493 | 94 |
|
0 | 95 |
|
96 |
class RQLBoxTemplate(BoxTemplate): |
|
97 |
"""abstract box for boxes displaying the content of a rql query not |
|
98 |
related to the current result set. |
|
1493 | 99 |
|
0 | 100 |
It rely on etype, rtype (both optional, usable to control registration |
101 |
according to application schema and display according to connected |
|
102 |
user's rights) and rql attributes |
|
103 |
""" |
|
640
8e64f12be69c
drop EntityAction usage in cw, upgrade rql_condition and friends
sylvain.thenault@logilab.fr
parents:
526
diff
changeset
|
104 |
#XXX __selectors__ = BoxTemplate.__selectors__ + (etype_rtype_selector,) |
0 | 105 |
|
106 |
rql = None |
|
1493 | 107 |
|
0 | 108 |
def to_display_rql(self): |
109 |
assert self.rql is not None, self.id |
|
110 |
return (self.rql,) |
|
1493 | 111 |
|
0 | 112 |
def call(self, **kwargs): |
113 |
try: |
|
114 |
rset = self.req.execute(*self.to_display_rql()) |
|
115 |
except Unauthorized: |
|
116 |
# can't access to something in the query, forget this box |
|
117 |
return |
|
118 |
if len(rset) == 0: |
|
119 |
return |
|
120 |
box = BoxWidget(self.req._(self.title), self.id) |
|
121 |
for i, (teid, tname) in enumerate(rset): |
|
122 |
entity = rset.get_entity(i, 0) |
|
123 |
box.append(self.mk_action(tname, entity.absolute_url())) |
|
124 |
box.render(w=self.w) |
|
125 |
||
1493 | 126 |
|
0 | 127 |
class UserRQLBoxTemplate(RQLBoxTemplate): |
128 |
"""same as rql box template but the rql is build using the eid of the |
|
129 |
request's user |
|
130 |
""" |
|
131 |
||
132 |
def to_display_rql(self): |
|
133 |
assert self.rql is not None, self.id |
|
134 |
return (self.rql, {'x': self.req.user.eid}, 'x') |
|
1493 | 135 |
|
0 | 136 |
|
137 |
class EntityBoxTemplate(BoxTemplate): |
|
138 |
"""base class for boxes related to a single entity""" |
|
809 | 139 |
__select__ = BoxTemplate.__select__ & one_line_rset() & primary_view() |
773 | 140 |
registered = accepts_compat(has_relation_compat(condition_compat(BoxTemplate.registered))) |
0 | 141 |
context = 'incontext' |
1493 | 142 |
|
0 | 143 |
def call(self, row=0, col=0, **kwargs): |
526 | 144 |
"""classes inheriting from EntityBoxTemplate should define cell_call""" |
0 | 145 |
self.cell_call(row, col, **kwargs) |
146 |
||
147 |
||
250
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
148 |
class RelatedEntityBoxTemplate(EntityBoxTemplate): |
838
f2c56312b03a
rename abstract_* selectors into partial_* + add docstrings
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
816
diff
changeset
|
149 |
__select__ = EntityBoxTemplate.__select__ & partial_has_related_entities() |
742
99115e029dca
replaced most of __selectors__ assignments with __select__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
670
diff
changeset
|
150 |
|
250
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
151 |
def cell_call(self, row, col, **kwargs): |
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
152 |
entity = self.entity(row, col) |
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
153 |
limit = self.req.property_value('navigation.related-limit') + 1 |
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
154 |
role = get_role(self) |
1885
c2011d238e98
replace sideRelated with sideBox
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1696
diff
changeset
|
155 |
self.w(u'<div class="sideBox">') |
250
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
156 |
self.wview('sidebox', entity.related(self.rtype, role, limit=limit), |
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
157 |
title=display_name(self.req, self.rtype, role)) |
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
158 |
self.w(u'</div>') |
7fd7a0d387d7
new RelatedEntityBoxTemplate base class
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
237
diff
changeset
|
159 |
|
0 | 160 |
|
161 |
class EditRelationBoxTemplate(ReloadableMixIn, EntityBoxTemplate): |
|
162 |
"""base class for boxes which let add or remove entities linked |
|
163 |
by a given relation |
|
164 |
||
165 |
subclasses should define at least id, rtype and target |
|
166 |
class attributes. |
|
167 |
""" |
|
1493 | 168 |
|
1624
baf484a182cd
should take arbitrary arguments
sylvain.thenault@logilab.fr
parents:
1493
diff
changeset
|
169 |
def cell_call(self, row, col, view=None, **kwargs): |
0 | 170 |
self.req.add_js('cubicweb.ajax.js') |
171 |
entity = self.entity(row, col) |
|
172 |
box = SideBoxWidget(display_name(self.req, self.rtype), self.id) |
|
173 |
count = self.w_related(box, entity) |
|
174 |
if count: |
|
175 |
box.append(BoxSeparator()) |
|
1696
ee0bea49e0e1
fix implementation to avoid separator with nothing following
sylvain.thenault@logilab.fr
parents:
1695
diff
changeset
|
176 |
if not self.w_unrelated(box, entity): |
ee0bea49e0e1
fix implementation to avoid separator with nothing following
sylvain.thenault@logilab.fr
parents:
1695
diff
changeset
|
177 |
del box.items[-1] # remove useless separator |
0 | 178 |
box.render(self.w) |
179 |
||
180 |
def div_id(self): |
|
181 |
return self.id |
|
1493 | 182 |
|
0 | 183 |
def box_item(self, entity, etarget, rql, label): |
184 |
"""builds HTML link to edit relation between `entity` and `etarget` |
|
185 |
""" |
|
1149 | 186 |
role, target = get_role(self), get_target(self) |
187 |
args = {role[0] : entity.eid, target[0] : etarget.eid} |
|
0 | 188 |
url = self.user_rql_callback((rql, args)) |
189 |
# for each target, provide a link to edit the relation |
|
190 |
label = u'[<a href="%s">%s</a>] %s' % (url, label, |
|
191 |
etarget.view('incontext')) |
|
192 |
return RawBoxItem(label, liclass=u'invisible') |
|
1493 | 193 |
|
0 | 194 |
def w_related(self, box, entity): |
195 |
"""appends existing relations to the `box`""" |
|
196 |
rql = 'DELETE S %s O WHERE S eid %%(s)s, O eid %%(o)s' % self.rtype |
|
197 |
related = self.related_entities(entity) |
|
198 |
for etarget in related: |
|
199 |
box.append(self.box_item(entity, etarget, rql, u'-')) |
|
200 |
return len(related) |
|
1493 | 201 |
|
0 | 202 |
def w_unrelated(self, box, entity): |
203 |
"""appends unrelated entities to the `box`""" |
|
204 |
rql = 'SET S %s O WHERE S eid %%(s)s, O eid %%(o)s' % self.rtype |
|
1696
ee0bea49e0e1
fix implementation to avoid separator with nothing following
sylvain.thenault@logilab.fr
parents:
1695
diff
changeset
|
205 |
i = 0 |
0 | 206 |
for etarget in self.unrelated_entities(entity): |
207 |
box.append(self.box_item(entity, etarget, rql, u'+')) |
|
1696
ee0bea49e0e1
fix implementation to avoid separator with nothing following
sylvain.thenault@logilab.fr
parents:
1695
diff
changeset
|
208 |
i += 1 |
ee0bea49e0e1
fix implementation to avoid separator with nothing following
sylvain.thenault@logilab.fr
parents:
1695
diff
changeset
|
209 |
return i |
0 | 210 |
|
211 |
def unrelated_entities(self, entity): |
|
212 |
"""returns the list of unrelated entities |
|
213 |
||
214 |
if etype is not defined on the Box's class, the default |
|
215 |
behaviour is to use the entity's appropraite vocabulary function |
|
216 |
""" |
|
217 |
# use entity.unrelated if we've been asked for a particular etype |
|
218 |
if hasattr(self, 'etype'): |
|
1149 | 219 |
return entity.unrelated(self.rtype, self.etype, get_role(self)).entities() |
0 | 220 |
# in other cases, use vocabulary functions |
221 |
entities = [] |
|
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
222 |
form = self.vreg.select('forms', 'edition', self.req, rset=self.rset, |
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
223 |
row=self.row or 0) |
1695
9a9822f3cb6c
update implementation to get vocab from form instead of entity
sylvain.thenault@logilab.fr
parents:
1624
diff
changeset
|
224 |
field = form.field_by_name(self.rtype, get_role(self), entity.e_schema) |
9a9822f3cb6c
update implementation to get vocab from form instead of entity
sylvain.thenault@logilab.fr
parents:
1624
diff
changeset
|
225 |
for _, eid in form.form_field_vocabulary(field): |
0 | 226 |
if eid is not None: |
227 |
rset = self.req.eid_rset(eid) |
|
228 |
entities.append(rset.get_entity(0, 0)) |
|
229 |
return entities |
|
1493 | 230 |
|
0 | 231 |
def related_entities(self, entity): |
1149 | 232 |
return entity.related(self.rtype, get_role(self), entities=True) |
0 | 233 |