odoo/addons/share/static/src/js/share.js

89 lines
2.9 KiB
JavaScript
Raw Normal View History

openerp.share = function(session) {
function launch_wizard(self, view, user_type) {
var action = view.widget_parent.action;
var Share = new session.web.DataSet(self, 'share.wizard', view.dataset.get_context());
var domain = new session.web.CompoundDomain(view.dataset.domain);
if (view.fields_view.type == 'form') {
domain = new session.web.CompoundDomain(domain, [['id', '=', view.datarecord.id]]);
}
self.rpc('/web/session/eval_domain_and_context', {
domains: [domain],
contexts: [view.dataset.context]
}, function (result) {
Share.create({
name: action.name,
domain: result.domain,
action_id: action.id,
user_type: user_type || 'embedded',
view_type: view.fields_view.type,
}, function(result) {
var share_id = result.result;
var step1 = Share.call('go_step_1', [[share_id],], function(result) {
var action = result;
self.do_action(action);
});
});
});
}
function has_share(yes, no) {
if (!session.connection.share_flag) {
session.connection.share_flag = $.Deferred(function() {
var func = new session.web.Model("share.wizard").get_func("has_share");
func(session.connection.uid).pipe(function(res) {
if(res) {
session.connection.share_flag.resolve();
} else {
session.connection.share_flag.reject();
}
});
});
}
session.connection.share_flag.done(yes).fail(no);
}
session.web.Sidebar = session.web.Sidebar.extend({
add_default_sections: function() {
this._super();
var self = this;
has_share(function() {
self.add_items('other', [{
label: 'Share',
callback: self.on_sidebar_click_share,
classname: 'oe-share',
}]);
});
},
on_sidebar_click_share: function(item) {
var view = this.widget_parent
launch_wizard(this, view);
},
});
session.web.ViewManagerAction.include({
start: function() {
var self = this;
has_share(function() {
self.$element.find('a.oe-share_link').click(self.on_click_share_link);
self.$element.find('a.oe-share').click(self.on_click_share);
}, function() {
self.$element.find('a.oe-share_link').remove();
self.$element.find('a.oe-share').remove();
});
return this._super.apply(this, arguments);
},
on_click_share_link: function(e) {
e.preventDefault();
launch_wizard(this, this.views[this.active_view].controller);
},
on_click_share: function(e) {
e.preventDefault();
launch_wizard(this, this.views[this.active_view].controller, 'emails');
},
});
};