author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 15 Jun 2011 19:22:05 +0200 | |
branch | stable |
changeset 7518 | 2431e3e9a4f2 |
parent 6927 | 340aba0c8c9e |
child 7879 | 9aae456abab5 |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
18 |
"""Set of views allowing edition of entities/relations using ajax""" |
0 | 19 |
|
20 |
__docformat__ = "restructuredtext en" |
|
21 |
||
1622
1a1c494b88e2
xtarget doesn't exists anymore
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
22 |
from cubicweb import role |
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
23 |
from cubicweb.view import View |
1132 | 24 |
from cubicweb.selectors import match_form_params, match_kwargs |
6924
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
25 |
from cubicweb.web import component, stdmsgs, formwidgets as fw |
0 | 26 |
|
6924
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
27 |
class AddRelationView(component.EditRelationMixIn, View): |
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
28 |
"""base class for view which let add entities linked by a given relation |
0 | 29 |
|
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
30 |
subclasses should define at least id, rtype and target class attributes. |
0 | 31 |
""" |
32 |
__registry__ = 'views' |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2867
diff
changeset
|
33 |
__regid__ = 'xaddrelation' |
742
99115e029dca
replaced most of __selectors__ assignments with __select__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
34 |
__select__ = (match_form_params('rtype', 'target') |
99115e029dca
replaced most of __selectors__ assignments with __select__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
35 |
| match_kwargs('rtype', 'target')) |
2799
b703639614e7
refactor property handling to avoid name conflicts
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2789
diff
changeset
|
36 |
cw_property_defs = {} # don't want to inherit this from Box |
0 | 37 |
expected_kwargs = form_params = ('rtype', 'target') |
38 |
||
6924
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
39 |
build_js = component.EditRelationMixIn.build_reload_js_call |
1622
1a1c494b88e2
xtarget doesn't exists anymore
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
40 |
|
0 | 41 |
def cell_call(self, row, col, rtype=None, target=None, etype=None): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
42 |
self.rtype = rtype or self._cw.form['rtype'] |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
43 |
self.target = target or self._cw.form['target'] |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
44 |
self.etype = etype or self._cw.form.get('etype') |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
45 |
entity = self.cw_rset.get_entity(row, col) |
4045
f4a52abb6f4f
cw 3.6 api update
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3451
diff
changeset
|
46 |
rschema = self._cw.vreg.schema.rschema(self.rtype) |
0 | 47 |
if not self.etype: |
48 |
if self.target == 'object': |
|
49 |
etypes = rschema.objects(entity.e_schema) |
|
50 |
else: |
|
51 |
etypes = rschema.subjects(entity.e_schema) |
|
52 |
if len(etypes) == 1: |
|
53 |
self.etype = etypes[0] |
|
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
54 |
self.w(u'<div id="%s">' % self.domid) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
55 |
self.w(u'<h1>%s</h1>' % self._cw._('relation %(relname)s of %(ent)s') |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
56 |
% {'relname': rschema.display_name(self._cw, role(self)), |
0 | 57 |
'ent': entity.view('incontext')}) |
58 |
self.w(u'<ul>') |
|
2866 | 59 |
for boxitem in self.unrelated_boxitems(entity): |
6497 | 60 |
self.w('<li class="invisible">%s</li>' % boxitem) |
0 | 61 |
self.w(u'</ul></div>') |
62 |
||
63 |
def unrelated_entities(self, entity): |
|
64 |
"""returns the list of unrelated entities |
|
65 |
||
66 |
if etype is not defined on the Box's class, the default |
|
67 |
behaviour is to use the entity's appropraite vocabulary function |
|
68 |
""" |
|
69 |
# use entity.unrelated if we've been asked for a particular etype |
|
70 |
if getattr(self, 'etype', None): |
|
1622
1a1c494b88e2
xtarget doesn't exists anymore
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
71 |
rset = entity.unrelated(self.rtype, self.etype, role(self), |
1a1c494b88e2
xtarget doesn't exists anymore
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
72 |
ordermethod='fetch_order') |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
73 |
self.pagination(self._cw, rset, w=self.w) |
0 | 74 |
return rset.entities() |
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
75 |
super(AddRelationView, self).unrelated_entities(self) |
6924
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
76 |
|
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
77 |
|
6927 | 78 |
def ajax_composite_form(container, entity, rtype, okjs, canceljs, |
79 |
entityfkwargs=None): |
|
6924
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
80 |
""" |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
81 |
* if entity is None, edit container (assert container.has_eid()) |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
82 |
* if entity has not eid, will be created |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
83 |
* if container has not eid, will be created (see vcreview InsertionPoint) |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
84 |
""" |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
85 |
req = container._cw |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
86 |
parentexists = entity is None or container.has_eid() |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
87 |
buttons = [fw.Button(onclick=okjs), |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
88 |
fw.Button(stdmsgs.BUTTON_CANCEL, onclick=canceljs)] |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
89 |
freg = req.vreg['forms'] |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
90 |
# main form kwargs |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
91 |
mkwargs = dict(action='#', domid='%sForm%s' % (rtype, container.eid), |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
92 |
form_buttons=buttons, |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
93 |
onsubmit='javascript: %s; return false' % okjs) |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
94 |
# entity form kwargs |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
95 |
# use formtype=inlined to skip the generic relations edition section |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
96 |
fkwargs = dict(entity=entity or container, formtype='inlined') |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
97 |
if entityfkwargs is not None: |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
98 |
fkwargs.update(entityfkwargs) |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
99 |
# form values |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
100 |
formvalues = {} |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
101 |
if entity is not None: # creation |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
102 |
formvalues[rtype] = container.eid |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
103 |
if parentexists: # creation / edition |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
104 |
mkwargs.update(fkwargs) |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
105 |
# use formtype=inlined to avoid viewing the relation edition section |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
106 |
form = freg.select('edition', req, **mkwargs) |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
107 |
else: # creation of both container and comment entities |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
108 |
form = freg.select('composite', req, form_renderer_id='default', |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
109 |
**mkwargs) |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
110 |
form.add_subform(freg.select('edition', req, entity=container, |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
111 |
mainform=False, mainentity=True)) |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
112 |
form.add_subform(freg.select('edition', req, mainform=False, **fkwargs)) |
b88221afe491
[js utils] backport some generic code from comments cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6497
diff
changeset
|
113 |
return form, formvalues |