| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- MWF.xDesktop.requireApp("Selector", "Person", null, false);
- MWF.xApplication.Selector.Group = new Class({
- Extends: MWF.xApplication.Selector.Person,
- options: {
- "style": "default",
- "count": 0,
- "title": MWF.xApplication.Selector.LP.selectGroup,
- "groups": [],
- "roles": [],
- "values": [],
- "names": []
- },
- _listItemByKey: function(callback, failure, key){
- if (this.options.groups.length || this.options.roles.length) key = {"key": key, "groupList": this.options.groups, "roleList": this.options.roles};
- this.orgAction.listGroupByKey(function(json){
- if (callback) callback.apply(this, [json]);
- }.bind(this), failure, key);
- },
- _getItem: function(callback, failure, id, async){
- this.orgAction.getGroup(function(json){
- if (callback) callback.apply(this, [json]);
- }.bind(this), failure, ((typeOf(id)==="string") ? id : id.distinguishedName), async);
- },
- _newItemSelected: function(data, selector, item){
- return new MWF.xApplication.Selector.Group.ItemSelected(data, selector, item)
- },
- _listItemByPinyin: function(callback, failure, key){
- if (this.options.groups.length || this.options.roles.length) key = {"key": key, "groupList": this.options.groups, "roleList": this.options.roles};
- this.orgAction.listGroupByPinyin(function(json){
- if (callback) callback.apply(this, [json]);
- }.bind(this), failure, key);
- },
- _newItem: function(data, selector, container){
- return new MWF.xApplication.Selector.Group.Item(data, selector, container);
- },
- _listItemNext: function(last, count, callback){
- this.orgAction.listGroupNext(last, count, function(json){
- if (callback) callback.apply(this, [json]);
- }.bind(this));
- },
- _getChildrenItemIds: function(data){
- return data.groupList;
- }
- });
- MWF.xApplication.Selector.Group.Item = new Class({
- Extends: MWF.xApplication.Selector.Person.Item,
- _getShowName: function(){
- return this.data.name;
- },
- _getTtiteText: function(){
- return this.data.name;
- },
- _setIcon: function(){
- this.iconNode.setStyle("background-image", "url("+"/x_component_Selector/$Selector/default/icon/groupicon.png)");
- },
- loadSubItem: function(){
- this.selector.orgAction.listPersonNested(this.data.id, function(json){
- this.textNode.set("text", this.textNode.get("text")+" ("+json.data.length+")");
- var usersText = "";
- json.data.each(function(item){
- usersText+=item.name+", ";
- }.bind(this));
- var node = new Element("div", {"styles": {"max-width": "300px"}, "text": usersText});
- if (!Browser.Platform.ios){
- this.tooltip = new mBox.Tooltip({
- content: node,
- setStyles: {content: {padding: 15, lineHeight: 20}},
- attach: this.node,
- transition: 'flyin'
- });
- }
- //this.textNode.set("title", usersText);
- }.bind(this));
- }
- });
- MWF.xApplication.Selector.Group.ItemSelected = new Class({
- Extends: MWF.xApplication.Selector.Person.ItemSelected,
- _getShowName: function(){
- return this.data.name;
- },
- _getTtiteText: function(){
- return this.data.name;
- },
- _setIcon: function(){
- this.iconNode.setStyle("background-image", "url("+"/x_component_Selector/$Selector/default/icon/groupicon.png)");
- },
- loadSubItem: function(){
- this.selector.orgAction.listPersonNested(this.data.id, function(json){
- this.textNode.set("text", this.textNode.get("text")+" ("+json.data.length+")");
- var usersText = "";
- json.data.each(function(item){
- usersText+=item.name+", ";
- }.bind(this));
- var node = new Element("div", {"styles": {"max-width": "300px"}, "text": usersText});
- if (!Browser.Platform.ios){
- this.tooltip = new mBox.Tooltip({
- content: node,
- setStyles: {content: {padding: 15, lineHeight: 20}},
- attach: this.node,
- transition: 'flyin'
- });
- }
- //this.textNode.set("title", usersText);
- }.bind(this));
- }
- });
- MWF.xApplication.Selector.Group.Filter = new Class({
- Implements: [Options, Events],
- options: {
- "style": "default",
- "groups": [],
- "roles": [],
- },
- initialize: function(value, options){
- this.setOptions(options);
- this.value = value;
- this.orgAction = MWF.Actions.get("x_organization_assemble_control");
- },
- filter: function(value, callback){
- this.value = value;
- var key = this.value;
- if (this.options.groups.length || this.options.roles.length) key = {"key": key, "groupList": this.options.groupList, "roleList": this.options.roleList};
- this.orgAction.listGroupByKey(function(json){
- data = json.data;
- if (callback) callback(data)
- }.bind(this), null, key);
- }
- });
|