| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322 |
- MWF.xApplication.Forum = MWF.xApplication.Forum || {};
- MWF.xApplication.ForumDocument = MWF.xApplication.ForumDocument || {};
- MWF.require("MWF.widget.O2Identity", null,false);
- //MWF.xDesktop.requireApp("Forum", "Actions.RestActions", null, false);
- MWF.xDesktop.requireApp("Forum", "Common", null, false);
- MWF.xDesktop.requireApp("Forum", "Attachment", null, false);
- MWF.xDesktop.requireApp("Forum", "lp."+MWF.language, null, false);
- MWF.xDesktop.requireApp("Forum", "Access", null, false);
- MWF.xDesktop.requireApp("Template", "Explorer", null, false);
- MWF.xDesktop.requireApp("Template", "MPopupForm", null, false);
- MWF.xDesktop.requireApp("Forum", "TopNode", null, false);
- MWF.xApplication.ForumDocument.options = {
- multitask: true,
- executable: true
- };
- MWF.xApplication.ForumDocument.Main = new Class({
- Extends: MWF.xApplication.Common.Main,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "name": "ForumDocument",
- "icon": "icon.png",
- "width": "1324",
- "height": "720",
- "isResize": true,
- "isMax": true,
- "isNew" : false,
- "isEdited" : true,
- "index" : 1,
- "replyIndex" : null,
- "viewPageNum" : 1,
- "title": MWF.xApplication.ForumDocument.LP.title
- },
- onQueryLoad: function(){
- this.lp = MWF.xApplication.Forum.LP;
- },
- onQueryClose: function(){
- if( this.userCache ){
- for( var key in this.userCache ){
- delete this.userCache[key];
- }
- }
- this.userCache;
- },
- loadApplication: function(callback){
- this.userData = layout.desktop.session.user;
- this.userName = this.userData.distinguishedName;
- this.restActions = this.actions = MWF.Actions.get("x_bbs_assemble_control"); //new MWF.xApplication.Forum.Actions.RestActions();
- this.path = "/x_component_ForumDocument/$Main/"+this.options.style+"/";
- if( this.status ){
- this.setOptions( this.status )
- }
- if( this.options.isNew && !this.options.id ){
- if( this.options.advanceId ){
- this.advanceId = this.options.advanceId;
- this.createNode();
- this.loadApplicationContent();
- }else{
- this.actions.getUUID( function( id ){
- this.advanceId = id;
- this.createNode();
- this.loadApplicationContent();
- }.bind(this))
- }
- }else{
- this.createNode();
- this.loadApplicationContent();
- }
- },
- loadController: function(callback){
- this.access = new MWF.xApplication.Forum.Access( this.restActions, this.lp );
- if(callback)callback();
- },
- createNode: function(){
- this.content.setStyle("overflow", "hidden");
- this.node = new Element("div", {
- "styles": this.css.node
- }).inject(this.content);
- },
- loadApplicationContent: function(){
- this.loadController(function(){
- this.access.login( function(){
- this.loadApplicationLayout();
- }.bind(this) )
- }.bind(this))
- },
- clearContent : function(){
- this.node.empty();
- this.pagingBarTop = null;
- this.pagingContainerTop = null;
- delete this.pagingBarTop;
- delete this.pagingContainerTop;
- },
- reload : function(oldid, appid){
- this.node.empty();
- this.pagingBarTop = null;
- this.pagingContainerTop = null;
- delete this.pagingBarTop;
- delete this.pagingContainerTop;
- this.loadApplicationLayout();
- //if( this.appCurrentList.indexOf( this > 0 ){
- // this.appCurrentList.erase(this);
- // this.appCurrentList.push(this)
- //}
- if( oldid && appid && (oldid != appid) ){
- delete this.desktop.apps[oldid];
- this.appId = appid;
- this.desktop.apps[appid] = this;
- }
- },
- loadApplicationLayout : function(){
- this.contentContainerNode = new Element("div.contentContainerNode", {
- "styles": this.css.contentContainerNode
- }).inject(this.node);
- if( this.options.id ){
- this.restActions.listSubjectPermission( this.options.id, function( permission ){
- this.permission = permission.data;
- if( this.options.isEdited ){
- this.restActions.getSubject( this.options.id , function( data ){
- this.data = data.data;
- this._loadApplicationLayout( this.data.sectionId , this.data.title );
- }.bind(this))
- }else{
- this.restActions.getSubjectView( this.options.id , function( data ){
- this.data = data.data.currentSubject;
- this.nextSubject = data.data.nextSubject;
- this.lastSubject = data.data.lastSubject;
- this._loadApplicationLayout( this.data.sectionId , this.data.title );
- }.bind(this))
- }
- }.bind(this) )
- }else{
- this._loadApplicationLayout( this.options.sectionId, this.lp.createSubject );
- }
- },
- _loadApplicationLayout : function( sectionId, title ){
- this.options.sectionId = sectionId;
- this.restActions.listSectionPermission( sectionId, function( permission ){
- this.sectionPermission = permission.data;
- this.restActions.getSection( sectionId, function( json ) {
- this.sectionData = json.data;
- //this.access.hasSectionAdminAuthority( this.sectionData , function( flag ){
- // this.isAdmin = flag;
- this.restActions.getCategory(this.sectionData.forumId, function (forumData) {
- this.forumData = forumData.data;
- this.createTopNode( title );
- var tail = this.inBrowser ? (MWFForum.getSystemConfigValue( MWFForum.BBS_TITLE_TAIL ) || "") : "";
- this.setTitle( title + tail );
- this.createMiddleNode();
- }.bind(this));
- //}.bind(this) );
- }.bind(this))
- }.bind(this) )
- },
- createTopNode: function( title ){
- var node = new MWF.xApplication.Forum.TopNode(this.contentContainerNode, this, this, {
- type: this.options.style
- });
- this.topNode = node;
- node.load();
- //var forumSetting = MWF.xApplication.Forum.ForumSetting[this.sectionData.forumId];
- //var forumColor = forumSetting ? forumSetting.forumColor : "";
- var topNode = this.topNode = new Element("div.topNode", {
- "styles": this.css.topNode
- }).inject(this.contentContainerNode);
- var topTitleMiddleNode = new Element("div.topTitleMiddleNode", {
- "styles": this.css.topTitleMiddleNode
- }).inject(topNode);
- var topItemTitleNode = new Element("div.topItemTitleNode", {
- "styles": this.css.topItemTitleNode,
- "text": MWFForum.getBBSName() || MWF.xApplication.Forum.LP.title
- }).inject(topTitleMiddleNode);
- topItemTitleNode.addEvent("click", function(){
- var appId = "Forum";
- if (this.desktop.apps[appId]){
- this.desktop.apps[appId].setCurrent();
- }else {
- this.desktop.openApplication(null, "Forum", { "appId": appId });
- }
- if( !this.inBrowser ){
- this.close();
- }
- }.bind(this));
- var topItemSepNode = new Element("div.topItemSepNode", {
- "styles": this.css.topItemSepNode,
- "text" : ">"
- }).inject(topTitleMiddleNode);
- var topItemTitleNode = new Element("div.topItemTitleNode", {
- "styles": this.css.topItemTitleNode,
- "text": this.sectionData.forumName
- }).inject(topTitleMiddleNode);
- topItemTitleNode.addEvent("click", function(){
- var appId = "ForumCategory"+this.forumId;
- if (this.obj.desktop.apps[appId]){
- this.obj.desktop.apps[appId].setCurrent();
- }else {
- this.obj.desktop.openApplication(null, "ForumCategory", { "categoryId" : this.forumId ,"appId": appId });
- }
- if( !this.obj.inBrowser ){
- this.obj.close();
- }
- //this.obj.close();
- }.bind({ obj: this, forumId : this.sectionData.forumId }));
- var topItemSepNode = new Element("div.topItemSepNode", {
- "styles": this.css.topItemSepNode,
- "text" : ">"
- }).inject(topTitleMiddleNode);
- var topItemTitleNode = new Element("div.topItemTitleNode", {
- "styles": this.css.topItemTitleNode,
- "text": this.sectionData.sectionName
- }).inject(topTitleMiddleNode);
- topItemTitleNode.addEvent("click", function(){
- var appId = "ForumSection"+this.sectionData.id;
- if (this.desktop.apps[appId]){
- this.desktop.apps[appId].setCurrent();
- }else {
- this.desktop.openApplication(null, "ForumSection", {
- "sectionId" : this.sectionData.id,
- "appId": appId
- });
- }
- if( !this.inBrowser ){
- this.close();
- }
- //this.close();
- }.bind(this));
- var topItemSepNode = new Element("div.topItemSepNode", {
- "styles": this.css.topItemSepNode,
- "text" : ">"
- }).inject(topTitleMiddleNode);
- var topItemTitleNode = new Element("div.topItemTitleNode", {
- "styles": this.css.topItemTitleLastNode,
- "text": this.options.isNew ? (this.lp.createSubject) : ("["+ this.data.type +"]" + this.data.title )
- }).inject(topTitleMiddleNode);
- //this.topRightTextNode = new Element("div", {
- // "styles": this.css.topRightTextNode,
- // "text": this.lp.setting
- //}).inject(this.topRightTextNode)
- },
- createMiddleNode: function(){
- this.middleNode = new Element("div.middleNode", {
- "styles": this.css.middleNode
- }).inject(this.contentContainerNode);
- this.addEvent("resize", function () {
- this.setContentSize();
- }.bind(this));
- this.setContentSize();
- this.middleNode.addEvent("selectstart", function(e){
- e.stopPropagation();
- });
- //MWF.require("MWF.widget.ScrollBar", function () {
- // this.scrollBar = new MWF.widget.ScrollBar(this.contentContainerNode, {
- // "indent": false,
- // "style": "xApp_TaskList",
- // "where": "before",
- // "distance": 30,
- // "friction": 4,
- // "axis": {"x": false, "y": true},
- // "onScroll": function (y) {
- // }
- // });
- //}.bind(this));
- if( this.options.isNew || this.options.isEdited ){
- this._createMiddleNode_eidt();
- }else{
- this._createMiddleNode_read();
- }
- },
- _createMiddleNode_eidt : function(){
- this.data = this.data || {};
- var _self = this;
- this.contentDiv = new Element("div.contentDiv",{"styles":this.css.contentDiv}).inject(this.middleNode);
- var html = "<table width='100%' bordr='0' cellpadding='5' cellspacing='0' styles='formTable'>" +
- "<tr>" +
- " <td styles='formTableTitle' lable='title' width='10%' style='min-width:100px;'></td>" +
- " <td styles='formTableValue' item='typeCategory' width='10%'></td>" +
- " <td styles='formTableValue' item='type' width='10%'></td>" +
- " <td styles='formTableValue' item='title' width='70%'></td>" +
- "</tr><tr>" +
- " <td></td>" +
- " <td item='tipNode' colspan='3'></td>" +
- "</tr><tr>" +
- " <td styles='formTableTitle' lable='summary'></td>" +
- " <td styles='formTableValue' item='summary' colspan='3'></td>" +
- "</tr><tr item='portalImageTr' style='display:none'>" +
- " <td styles='formTableTitle' lable='picId'></td>" +
- " <td styles='formTableValue' colspan='3'><div item='picId' styles='portalImageAre' ></div></td>" +
- "</tr><tr>" +
- " <td styles='formTableTitle' lable='content'></td>" +
- " <td styles='formTableValue' item='content' colspan='3'></td>" +
- "</tr><tr>" +
- " <td styles='formTableTitle'>"+ this.lp.attachment +"</td>" +
- " <td item='attachment' colspan='3'></td>" +
- "</tr><tr style='display:none' item='voteArea'>" +
- " <td styles='formTableTitle'>"+ this.lp.vote +"</td>" +
- " <td item='voteContainer' colspan='3'></td>" +
- "</tr><tr>" +
- " <td styles='formTableTitle' lable=''></td>" +
- " <td item='action' colspan='3'></td>" +
- "</tr>"+
- "</table>";
- this.contentDiv.set("html", html);
- var tipNode = this.contentDiv.getElement("[item='tipNode']");
- var typeSettings = this._loadTypeSetting();
- var typeSetting = typeSettings[ this.forumData.indexListStyle ];
- if( typeSetting.image ){
- this.contentDiv.getElements("[item='portalImageTr']")[0].setStyle("display","");
- }
- var subjectTypeSelectValue;
- if( this.sectionData.subjectType ){
- subjectTypeSelectValue = this.sectionData.subjectType.split("|");
- }else if( this.forumData.subjectType ){
- subjectTypeSelectValue = this.forumData.subjectType.split("|");
- }else{
- subjectTypeSelectValue = this.lp.subjectTypeDefaultValue.split("|");
- }
- var typeCategorySelectValue;
- if( this.sectionData.typeCategory ){
- typeCategorySelectValue = this.sectionData.typeCategory.split("|");
- }else if( this.forumData.typeCategory ){
- typeCategorySelectValue = this.forumData.typeCategory.split("|");
- }else{
- typeCategorySelectValue = this.lp.typeCategoryDefaultValue.split("|");
- }
- MWF.xDesktop.requireApp("Template", "MForm", function () {
- this.form = new MForm(this.contentDiv, this.data , {
- style: "forum",
- verifyType: "batch",
- isEdited: true,
- itemTemplate: {
- title: {text: this.lp.subject, notEmpty : true,
- onPostLoad : function(item) {
- item.tipNode = tipNode;
- }
- },
- typeCategory :{ type : "select", selectValue : typeCategorySelectValue , notEmpty : true, event : {
- change : function(item, ev){
- if( item.getValue() == this.lp.vote ){
- this.contentDiv.getElements( "[item='voteArea']").setStyle("display","");
- this.loadVoteArea();
- }else{
- this.contentDiv.getElements( "[item='voteArea']").setStyle("display","none");
- }
- }.bind(this)}
- },
- type: {text: this.lp.type, type : "select", selectValue : subjectTypeSelectValue , notEmpty : true },
- summary: {text: this.lp.summary, type : "text", event : { "keyup" : function( item, ev){
- if( item.getValue().length > 70 ){
- item.setValue( item.getValue().substr( 0, 70 ) );
- }
- } } },
- picId: { text: this.lp.portalImage, type : "imageClipper",
- disable : !typeSetting.image,
- style : {
- imageStyle : this.css.portalImageNode,
- actionStyle : this.css.uploadActionNode
- },
- aspectRatio : 1.5,
- reference : this.advanceId || this.data.id,
- referenceType: "forumDocument"
- },
- content: {text: this.lp.content, type : "rtf", notEmpty : true, RTFConfig : {
- isSetImageMaxWidth : true,
- reference : this.advanceId || this.data.id,
- referenceType: "forumDocument"//,
- //skin : "bootstrapck" //,
- //filebrowserCurrentDocumentImage: function (e, callback) {
- // _self.selectDocImage( callback );
- //}
- }}
- }
- }, this, this.css);
- this.form.load();
- }.bind(this), true);
- if( this.data.typeCategory == this.lp.vote ){
- this.contentDiv.getElement( "[item='voteArea']").setStyle("display","");
- this.loadVoteArea();
- }
- var actionTd = this.contentDiv.getElements("[item='action']")[0];
- this.saveAction = new Element("div",{
- styles : this.css.actionNode,
- text: this.lp.saveSubject
- }).inject(actionTd);
- this.saveAction.addEvent("click",function(ev){
- this.saveSubject( ev );
- }.bind(this));
- var attachmentArea = this.contentDiv.getElements("[item='attachment']")[0];
- this.loadAttachment(attachmentArea)
- },
- _loadTypeSetting: function(){
- var path = "/x_component_Forum/$ColumnTemplate/template/setting.json";
- var templateSetting;
- MWF.xApplication.Forum.ColumnTemplate = MWF.xApplication.Forum.ColumnTemplate || {};
- if (MWF.xApplication.Forum.ColumnTemplate.Setting){
- templateSetting = MWF.xApplication.Forum.ColumnTemplate.Setting;
- }else{
- var r = new Request.JSON({
- url: path,
- secure: false,
- async: false,
- method: "get",
- noCache: false,
- onSuccess: function(responseJSON, responseText){
- templateSetting = MWF.xApplication.Forum.ColumnTemplate.Setting = responseJSON;
- }.bind(this),
- onError: function(text, error){
- alert(error + text);
- }
- });
- r.send();
- }
- return templateSetting;
- },
- loadVoteArea : function(){
- this.voteContainer = this.contentDiv.getElement("[item='voteContainer']");
- MWF.xDesktop.requireApp("ForumDocument", "Vote", function(){
- this.vote = new MWF.xApplication.ForumDocument.Vote(this.voteContainer, this, {
- isNew : this.options.isNew,
- isEdited : this.options.isEdited
- }, this.data);
- this.vote.load();
- }.bind(this), true)
- },
- reloadAllParents : function(){
- var aid = "Forum";
- if (this.desktop.apps[aid]){
- this.desktop.apps[aid].reload();
- }
- aid = "ForumCategory"+this.sectionData.forumId;
- if (this.desktop.apps[aid]){
- this.desktop.apps[aid].reload();
- }
- aid = "ForumSection"+this.sectionData.id;
- if (this.desktop.apps[aid]){
- this.desktop.apps[aid].reload();
- }
- },
- saveSubject : function(ev){
- var _self = this;
- var data = this.form.getResult(true, ",", true, false, true);
- if( !data ){ //校验没通过
- // 校验投票
- var typeCategory = this.form.getItem("typeCategory");
- if( typeCategory.getValue() == this.lp.vote ){
- this.vote.getVoteInfor()
- }
- return;
- }
- if( data.typeCategory == this.lp.vote ){
- var voteData = this.vote.getVoteInfor();
- if( !voteData )return;
- for( var key in voteData ){
- data[key] = voteData[key];
- }
- this.confirm("warn", ev, this.lp.confirmPublishVoteDocumentTitle, this.lp.confirmPublishVoteDocumentContent, 350, 120, function(){
- _self._saveSubject( data );
- this.close();
- }, function(){
- this.close();
- });
- }else{
- this._saveSubject( data );
- }
- },
- _saveSubject : function( data ){
- if( this.advanceId )data.id = this.advanceId;
- data.attachmentList = this.attachment.getAttachmentIds();
- if (data) {
- data.sectionId = this.sectionData.id;
- //data.picId = this.picId || "";
- this.restActions.saveSubject(data, function (json) {
- this.notice(this.options.isNew ? this.lp.createSuccess : this.lp.updateSuccess, "success");
- this.fireEvent("postPublish");
- this.reloadAllParents();
- var oldId = "ForumDocument"+ ( this.options.isNew ? this.sectionData.id : this.data.id );
- var appId = "ForumDocument"+json.data.id;
- this.advanceId = "";
- this.setOptions({
- "id" : json.data.id,
- "appId": appId,
- "isEdited" : false,
- "isNew" : false //,
- //"index" : nextIndex
- });
- this.reload(oldId , appId );
- }.bind(this))
- }
- },
- _createMiddleNode_read: function(){
- this.isReplyPublisher = this.permission.replyPublishAble; //this.access.isReplyPublisher( this.sectionData );
- this.createSidebar();
- this.createPagingBar();
- this.createToolbar_read();
- var contentConainer = new Element("div.subjectConainer",{
- "styles" : this.css.contentConainer
- }).inject( this.middleNode );
- this.subjectConainer = new Element("div.subjectConainer",{
- "styles" : this.css.subjectConainer
- }).inject( contentConainer );
- if( this.data.typeCategory == this.lp.question ){
- this.satisfiedReplyViewConainer = new Element("div.satisfiedReplyViewConainer",{
- "styles" : this.css.replyViewConainer
- }).inject( contentConainer );
- }
- this.replyViewConainer = new Element("div.replyViewConainer",{
- "styles" : this.css.replyViewConainer
- }).inject( contentConainer );
- this.createPagingBar();
- this.createSubject();
- if( this.data.typeCategory == this.lp.question ) {
- if( this.data.acceptReplyId ){
- this.createSatisfiedReplyView();
- }
- }
- this.createReplyView();
- if( !this.data.stopReply && this.isReplyPublisher ){
- if( this.access.isAnonymous() ){
- this.createReplyEditor_Anonymous()
- }else{
- this.createReplyEditor();
- }
- }
- //this.createTurnSubjectNode();
- },
- createPagingBar: function(){
- var pagingArea = new Element("div",{
- styles : this.css.pagingArea
- }).inject(this.middleNode);
- if( this.pagingBarTop ){
- this.pagingBarBottom = pagingArea;
- }else{
- this.pagingBarTop = pagingArea;
- }
- //if( this.access.isSubjectPublisher( this.sectionData ) ){
- if( this.sectionPermission.subjectPublishAble ){
- var createActionNode = new Element("div",{
- styles : this.css.pagingActionNode,
- text: this.lp.createSubject
- }).inject(pagingArea);
- createActionNode.addEvents(
- {
- "mouseover": function () {
- this.node.setStyles(this.obj.css.pagingActionNode_over);
- }.bind({obj: this, node: createActionNode}),
- "mouseout": function () {
- this.node.setStyles(this.obj.css.pagingActionNode);
- }.bind({obj: this, node: createActionNode}),
- "click": function () {
- if( this.access.isAnonymousDynamic() ){
- this.openLoginForm(
- function(){ this.createNewDocument(); }.bind(this)
- );
- }else{
- this.createNewDocument();
- }
- }.bind(this)
- }
- )
- }
- //var fileterNode = new Element("div",{
- // styles : this.css.fileterNode
- //}).inject(pagingArea);
- var pagingContainer = new Element("div").inject(pagingArea);
- if( this.pagingContainerTop ){
- this.pagingContainerBottom = pagingContainer;
- }else{
- this.pagingContainerTop = pagingContainer;
- }
- },
- setContentSize: function () {
- //var topSize = this.topNode ? this.topNode.getSize() : {"x": 0, "y": 0};
- var topSize = {"x": 0, "y": 0};
- var nodeSize = this.node.getSize();
- var pt = this.contentContainerNode.getStyle("padding-top").toFloat();
- var pb = this.contentContainerNode.getStyle("padding-bottom").toFloat();
- var height = nodeSize.y - topSize.y - pt - pb;
- this.contentContainerNode.setStyle("height", "" + height + "px");
- },
- recordStatus: function(){
- return {
- "sectionId" : this.options.sectionId,
- "id" : this.data ? this.data.id : "",
- "advanceId" : this.advanceId,
- "appId": ( this.data && this.data.id ) ? "ForumDocument"+this.data.id : "ForumDocument"+this.advanceId,
- "isEdited" : this.options.isEdited,
- "isNew" : this.options.isNew,
- "viewPageNum" : this.replyView ? this.replyView.getCurrentPageNum() : 1
- };
- },
- loadAttachment: function( area ){
- this.attachment = new MWF.xApplication.Forum.Attachment( area, this, this.restActions, this.lp, {
- documentId : this.advanceId || this.data.id,
- isNew : this.options.isNew,
- isEdited : this.options.isEdited,
- "size" : "min",
- onQueryUploadAttachment : function(){
- this.attachment.isQueryUploadSuccess = true;
- }.bind(this),
- onDelete : function( data ){
- //if( this.pictureData && this.pictureData.id == data.id ){
- // this.iconNode.set( "src", "" );
- // this.iconNode.setStyle("display","none");
- // this.pictureBase64 = "";
- // this.pictureData = null;
- //}
- }.bind(this)
- });
- this.attachment.load();
- },
- createToolbar_read : function(){
- this.toolBarReadTop = new Element("div.toolBarReadTop",{
- "styles" : this.css.toolBarReadTop
- }).inject( this.middleNode );
- this.toolBarRead = new Element("div.toolBarRead",{
- "styles" : this.css.toolBarRead
- }).inject( this.middleNode );
- this.toolbarLeft = new Element("div.toolbarLeft",{
- "styles" : this.css.toolbarLeft
- }).inject( this.toolBarRead );
- var toolbarLeftItem = new Element("div.toolbarViewItem",{
- "styles" : this.css.toolbarViewItem
- }).inject( this.toolbarLeft );
- new Element("span.toolbarLeftTextItem",{
- "styles" : this.css.toolbarLeftTextItem,
- "text" : this.lp.readed + ":"
- }).inject( toolbarLeftItem );
- new Element("span.toolbarLeftCountItem",{
- "styles" : this.css.toolbarLeftCountItem,
- "text" : this.data.viewTotal
- }).inject( toolbarLeftItem );
- new Element("div.toolbarSepItem",{
- "styles" : this.css.toolbarSepItem
- }).inject( this.toolbarLeft );
- var toolbarLeftItem = new Element("div.toolbarReplyItem",{
- "styles" : this.css.toolbarReplyItem
- }).inject( this.toolbarLeft );
- new Element("span.toolbarLeftTextItem",{
- "styles" : this.css.toolbarLeftTextItem,
- "text" : this.lp.reply + ":"
- }).inject( toolbarLeftItem );
- this.replyTotal = new Element("span.toolbarLeftCountItem",{
- "styles" : this.css.toolbarLeftCountItem,
- "text" : this.data.replyTotal
- }).inject( toolbarLeftItem );
- this.toolbarRight = new Element("div.toolbarRight",{
- "styles" : this.css.toolbarRight
- }).inject( this.toolBarRead );
- //this.createActionBar();
- if(this.data.isTopSubject){
- new Element( "div.top", {
- "styles" : this.css.toolbarZhiding,
- "title" : this.lp.setTop
- }).inject( this.toolbarRight );
- }else if( this.data.isCreamSubject ){
- new Element( "div.prime", {
- "styles" : this.css.toolbarPrime,
- "title" : (this.data.screamSetterName || "").split("@")[0]+ this.lp.at + this.data.screamSetterTime + this.lp.setPrime
- }).inject( this.toolbarRight );
- }else if( this.data.typeCategory == this.lp.vote ){
- new Element( "div.vote", { "styles" : this.css.toolbarVote, "title" : this.lp.vote }).inject( this.toolbarRight );
- }else if( this.data.typeCategory == this.lp.question ){
- new Element( "div.question", { "styles" : this.css.toolbarQuestion, "title" : this.lp.question }).inject( this.toolbarRight );
- }
- this.toolbarRightTitle = new Element("div.toolbarRightTitle",{
- "styles" : this.css.toolbarRightTitle,
- "text" : "["+ this.data.type +"]"+this.data.title
- }).inject( this.toolbarRight );
- this.toolbarRightTools = new Element("div.toolbarRightTools",{
- "styles" : this.css.toolbarRightTools
- }).inject( this.toolbarRight );
- if( this.nextSubject ){
- this.toolbarNext = new Element("div.toolbarNext",{
- "styles" : this.css.toolbarNext,
- "title" : this.lp.nextSubject + ":" + this.nextSubject.title
- }).inject( this.toolbarRightTools );
- this.toolbarNext.addEvents({
- "click" : function(){ this.gotoDocument( 1 ); }.bind(this),
- "mouseover" : function(){
- this.toolbarNext.setStyles( this.css.toolbarNext_over );
- }.bind(this),
- "mouseout" : function(){
- this.toolbarNext.setStyles( this.css.toolbarNext );
- }.bind(this)
- })
- }
- if( this.lastSubject ){
- this.toolbarPrev = new Element("div.toolbarRightTools",{
- "styles" : this.css.toolbarPrev,
- "title" : this.lp.prevSubject + ":" + this.lastSubject.title
- }).inject( this.toolbarRightTools );
- this.toolbarPrev.addEvents({
- "click" : function(){ this.gotoDocument( -1 ); }.bind(this),
- "mouseover" : function(){
- this.toolbarPrev.setStyles( this.css.toolbarPrev_over );
- }.bind(this),
- "mouseout" : function(){
- this.toolbarPrev.setStyles( this.css.toolbarPrev );
- }.bind(this)
- })
- }
- },
- adjustReplyCount: function( count ){
- this.data.replyTotal = this.data.replyTotal + count;
- this.replyTotal.set("text", this.data.replyTotal )
- },
- createNewDocument: function(){
- var _self = this;
- var appId = "ForumDocument"+this.sectionData.id;
- if (_self.desktop.apps[appId]){
- _self.desktop.apps[appId].setCurrent();
- }else {
- this.desktop.openApplication(null, "ForumDocument", {
- "sectionId": this.sectionData.id,
- "appId": appId,
- "isNew" : true,
- "isEdited" : true,
- "onPostPublish" : function(){
- //this.view.reload();
- }.bind(this)
- });
- }
- },
- edit : function(){
- var appId = "ForumDocument"+this.data.id;
- this.options.isEdited = true;
- this.reload(appId , appId );
- },
- delete : function( ev ){
- var _self = this;
- this.confirm("warn", ev, this.lp.deleteDocumentTitle, this.lp.deleteDocument, 350, 120, function(){
- _self.restActions.deleteSubject( _self.data.id, function(){
- _self.notice( _self.lp.deleteDocumentOK, "ok");
- _self.reloadAllParents();
- _self.close();
- }.bind(this) );
- this.close();
- }, function(){
- this.close();
- });
- },
- postCreateReply : function( id ){
- this.restActions.getReply( id, function( json ){
- var reply = this.replyView._createDocument( json.data );
- this.adjustReplyCount( 1 );
- var t = reply.node.getTop() - this.contentContainerNode.getCoordinates().top + this.contentContainerNode.scrollTop.toFloat();
- this.contentContainerNode.scrollTo( 0, t );
- }.bind(this))
- },
- createReply : function(){
- var form = new MWF.xApplication.ForumDocument.ReplyForm(this, {}, {
- "toMain" : true,
- onPostOk : function( id ){
- this.postCreateReply( id )
- }.bind(this)
- },{
- app : this, lp : this.lp, css : this.css, actions : this.restActions
- });
- form.mainData = this.data;
- form.create()
- },
- createActionBar : function( container ){
- this.actionBar = new Element("div", { "styles" : this.css.actionBar, "html" : " "}).inject(container);
- //var action = new Element("div", {
- // "styles" : this.css.actionItem,
- // "text" : this.lp.createSubject
- //}).inject( this.actionBar );
- //action.setStyle("background-image" , "url("+this.path+"icon/action_new.png)");
- //action.addEvents({
- // "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- // "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- // "click" : function(){ this.createNewDocument() }.bind(this)
- //})
- if( this.permission.manageAble ){
- if( this.data.isCreamSubject ){
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.cancelPrime
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_cancelprime.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.cancelPrime() }.bind(this)
- })
- }else{
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.setPrime
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_prime.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.setPrime() }.bind(this)
- })
- }
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.moveto
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_moveto.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.moveTo() }.bind(this)
- });
- if( this.data.stopReply ){
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.unlock
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_unlock.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.unlock() }.bind(this)
- })
- }else{
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.lock
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_lock.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.lock() }.bind(this)
- })
- }
- //if( this.data.isTopSubject ){
- // action = new Element("div", {
- // "styles" : this.css.actionItem,
- // "text" : this.lp.cancelTop
- // }).inject( this.actionBar );
- // action.setStyle("background-image" , "url("+this.path+"icon/action_canceltop.png)");
- // action.addEvents({
- // "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- // "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- // "click" : function(){ this.cancelTop() }.bind(this)
- // })
- //}else{
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.setTop
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+ ( this.data.isTopSubject ? "icon/action_canceltop.png" : "icon/action_top.png")+ ")");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.setTop() }.bind(this)
- });
- //}
- }
- if( MWF.AC.isHotPictureManager() ){
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.setHot
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+ "icon/action_popular.png" + ")");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.setHotPicture() }.bind(this)
- });
- }
- //if( this.access.isRecommender( this.sectionData )){
- if( this.permission.recommendAble ){
- if( this.data.recommendToBBSIndex ){
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.cancelRecommend
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_cancelrecommend.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.cancelRecommend() }.bind(this)
- })
- }else if( this.sectionData.sectionVisible == this.lp.allPerson && this.sectionData.indexRecommendable == true ){
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.setRecommend
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_recommend.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.setRecommend() }.bind(this)
- })
- }
- }
- if( this.permission.manageAble || this.permission.editAble || this.data.creatorName == this.userName ){
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.delete
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_delete.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(ev){ this["delete"](ev) }.bind(this)
- })
- }
- if( this.data.typeCategory != this.lp.vote ){
- if( this.permission.manageAble || this.permission.editAble || this.data.creatorName == this.userName ){
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.edit
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_edit.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){ this.edit() }.bind(this)
- })
- }
- }
- if( !this.data.stopReply ){
- if( this.isReplyPublisher ){
- action = new Element("div", {
- "styles" : this.css.actionItem,
- "text" : this.lp.reply
- }).inject( this.actionBar );
- action.setStyle("background-image" , "url("+this.path+"icon/action_quote.png)");
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.actionItem_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.actionItem ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){
- if( this.access.isAnonymousDynamic() ){
- this.openLoginForm( function(){ this.reload() }.bind(this) );
- }else{
- this.createReply();
- }
- }.bind(this)
- })
- }
- }
- },
- lock : function(){
- this.restActions.lock( this.data.id, function(){
- this.notice( this.lp.lockSuccess );
- this.reload();
- }.bind(this))
- },
- unlock : function(){
- this.restActions.unlock( this.data.id, function(){
- this.notice( this.lp.unlockSuccess );
- this.reload();
- }.bind(this))
- },
- setRecommend : function(){
- this.restActions.setRecommend( this.data.id, function(){
- this.notice( this.lp.setRecommendSuccess );
- this.reload();
- }.bind(this))
- },
- cancelRecommend : function(){
- this.restActions.cancelRecommend( this.data.id, function(){
- this.notice( this.lp.cancelRecommendSuccess );
- this.reload();
- }.bind(this))
- },
- setHotPicture : function(){
- MWF.xDesktop.requireApp("ForumDocument", "HotLinkForm", null, false);
- var form = new MWF.xApplication.ForumDocument.HotLinkForm(this, this.data, {
- documentId : this.data.id,
- summary : this.data.summary,
- onPostOk : function( id ){
- }.bind(this)
- },{
- app : this, lp : this.lp, css : this.css, actions : this.restActions
- });
- form.create()
- },
- setTop : function(){
- var form = new MWF.xApplication.ForumDocument.TopSettingForm(this, this.data, {
- onPostOk : function( id ){
- this.reload();
- }.bind(this)
- },{
- app : this, lp : this.lp, css : this.css, actions : this.restActions
- });
- form.create();
- //this.restActions.topToSection( this.data.id, function(){
- // this.notice( this.lp.setTopSuccess )
- // this.reload();
- //}.bind(this))
- },
- cancelTop : function(){
- this.restActions.cancelTopToSection( this.data.id, function(){
- this.notice( this.lp.cancelTopSuccess );
- this.reload();
- }.bind(this))
- },
- setPrime : function(){
- this.restActions.setCream( this.data.id, function(){
- this.notice( this.lp.setPrimeSuccess );
- this.reload();
- }.bind(this))
- },
- cancelPrime : function(){
- this.restActions.cancelCream( this.data.id, function(){
- this.notice( this.lp.cancelPrimeSuccess );
- this.reload();
- }.bind(this))
- },
- createSubject : function(){
- this.subjectView = new MWF.xApplication.ForumDocument.SubjectView( this.subjectConainer, this, this, {
- templateUrl : this.path + "listItemSubject.json",
- scrollEnable : false
- } );
- this.subjectView.data = this.data;
- this.subjectView.load();
- },
- moveTo : function(){
- MWF.xDesktop.requireApp("Forum", "SectionSelector", null, false);
- var selector = new MWF.xApplication.Forum.SectionSelector(this.content, {
- "count": 1,
- "title": "选择移动到的版块",
- "values": [],
- "onComplete": function( array ){
- if( typeOf( array ) == "array" ){
- var sectionId = array[0].data.id;
- this.restActions.changeSection( {"subjectIds":[ this.data.id ],"sectionId" : sectionId }, function(){
- this.notice( "帖子已经移动到"+array[0].data.name );
- this.reload();
- }.bind(this))
- }
- }.bind(this)
- } );
- selector.load();
- },
- openLoginForm : function( callback ){
- //MWF.xDesktop.requireApp("Forum", "Login", null, false);
- //var login = new MWF.xApplication.Forum.Login(this, {
- // onPostOk : function(){ if(callback)callback() }
- //});
- //login.openLoginForm();
- MWF.require("MWF.xDesktop.Authentication", null, false);
- var authentication = new MWF.xDesktop.Authentication({
- style : "application",
- onPostOk : function(){ if(callback)callback() }
- },this);
- authentication.openLoginForm({
- hasMask : true
- });
- },
- openSignUpForm : function(callback){
- //MWF.xDesktop.requireApp("Forum", "Login", null, false);
- //var login = new MWF.xApplication.Forum.Login(this, {
- // onPostOk : function(){ if(callback)callback() }
- //});
- //login.openSignUpForm();
- MWF.require("MWF.xDesktop.Authentication", null, false);
- var authentication = new MWF.xDesktop.Authentication({
- style : "application",
- onPostOk : function(){ if(callback)callback() }
- },this);
- authentication.openSignUpForm({
- hasMask : true
- });
- },
- gotoReply : function( index ){
- this.replyView.paging.gotoItem( index );
- },
- createSatisfiedReplyView : function( ){
- this.satisfiedReplyView = new MWF.xApplication.ForumDocument.SatisfiedReplyView( this.satisfiedReplyViewConainer, this, this, {
- templateUrl : this.path + "listItemSatisfied.json",
- scrollEnable : false
- } );
- this.satisfiedReplyView.data = this.data;
- this.satisfiedReplyView.load();
- },
- createReplyView : function( ){
- this.replyView = new MWF.xApplication.ForumDocument.ReplyView( this.replyViewConainer, this, this, {
- templateUrl : this.path + "listItemReply.json",
- scrollEnable : false,
- pagingEnable : true,
- documentKeyWord : "orderNumber",
- pagingPar : {
- currentPage : this.options.viewPageNum || 1,
- currentItem : this.options.replyIndex,
- returnText : this.lp.returnToList ,
- countPerPage : 10,
- onPostLoad : function( pagingBar ){
- if(pagingBar.nextPageNode){
- pagingBar.nextPageNode.inject( this.pagingBarBottom, "before" );
- }
- }.bind(this),
- onPageReturn : function( pagingBar ){
- var appId = "ForumSection"+this.sectionData.id;
- if (this.desktop.apps[appId]){
- this.desktop.apps[appId].setCurrent();
- }else {
- this.desktop.openApplication(null, "ForumSection", {
- "sectionId" : this.sectionData.id,
- "appId": appId
- });
- }
- this.close();
- }.bind(this)
- },
- onGotoItem : function( top ){
- var t = top - this.content.getTop();
- this.contentContainerNode.scrollTo( 0, t );
- }.bind(this)
- } );
- this.replyView.pagingContainerTop = this.pagingContainerTop;
- this.replyView.pagingContainerBottom = this.pagingContainerBottom;
- this.replyView.data = this.data;
- this.replyView.filterData = { "subjectId" : this.data.id };
- this.replyView.load();
- },
- createReplyEditor_Anonymous: function(){
- this.replyArea = new Element("div.replyArea",{
- "styles" : this.css.replyArea
- }).inject( this.middleNode );
- new Element("div.replyLeft",{
- "styles" : this.css.replyLeft
- }).inject( this.replyArea );
- var replyPicture = new Element("div.replyPicture",{
- "styles" : this.css.replyPicture
- }).inject( this.replyArea );
- var needloginNode = new Element("div.replyNeedLogin",{
- "styles" : this.css.replyNeedLogin
- }).inject(replyPicture);
- new Element("div.replyNeedLogin",{
- "styles" : this.css.replyNeedLoginText,
- "text" : this.lp.replyNeedLoginText
- }).inject(needloginNode);
- var loginNode = new Element("div.replyLoginAction",{
- "styles" : this.css.replyLoginAction,
- "text" : this.lp.login
- }).inject(needloginNode);
- loginNode.addEvent("click" , function(){
- this.openLoginForm(
- function(){ this.reload() }.bind(this)
- )
- }.bind(this));
- if( this.access.signUpMode != "disable" ){
- new Element("div.replyNeedLogin",{
- "styles" : this.css.replyNeedLoginText,
- "text" : "|"
- }).inject(needloginNode);
- var signupNode = new Element("div.replyLoginAction",{
- "styles" : this.css.replyLoginAction,
- "text" : this.lp.signUp
- }).inject(needloginNode);
- signupNode.addEvent("click" , function(){
- this.openSignUpForm()
- }.bind(this))
- }
- },
- createReplyEditor : function( ){
- this.replyArea = new Element("div.replyArea",{
- "styles" : this.css.replyArea
- }).inject( this.middleNode );
- this.replyEditor = new MWF.xApplication.ForumDocument.ReplyEditor( this.replyArea, this, {
- style : this.options.style,
- isNew : true,
- onPostOk : function( id ){
- this.postCreateReply( id )
- }.bind(this)
- } );
- this.replyEditor.mainData = this.data;
- this.replyEditor.load();
- },
- createTurnSubjectNode : function(){
- if( !this.lastSubject && !this.nextSubject )return;
- var turnSubjectNode = new Element("div.turnSubjectNode", {styles : this.css.turnSubjectNode}).inject( this.middleNode );
- if( this.lastSubject ){
- var lastSubjectNode = new Element( "div.lastSubjectNode", {
- styles : this.css.lastSubjectNode,
- text : this.lp.prevSubject + ":" + this.lastSubject.title
- }).inject( turnSubjectNode );
- lastSubjectNode.addEvents({
- "click" : function(){
- this.gotoDocument(-1)
- }.bind(this),
- "mouseover" : function(){ this.node.setStyles( this.obj.css.lastSubjectNode_over ) }.bind({obj :this, node : lastSubjectNode}),
- "mouseout" : function(){ this.node.setStyles( this.obj.css.lastSubjectNode ) }.bind({obj :this, node : lastSubjectNode})
- })
- }else{
- var lastSubjectNode = new Element( "div.lastSubjectNode", {
- styles : this.css.lastSubjectNoneNode
- }).inject( turnSubjectNode );
- }
- if( this.nextSubject ){
- var nextSubjectNode = new Element( "div.nextSubjectNode", {
- styles : this.css.nextSubjectNode,
- text : this.lp.nextSubject + ":" + this.nextSubject.title
- }).inject( turnSubjectNode );
- nextSubjectNode.addEvents({
- "click" : function(){
- this.gotoDocument(1)
- }.bind(this),
- "mouseover" : function(){ this.node.setStyles( this.obj.css.nextSubjectNode_over ) }.bind({obj :this, node : nextSubjectNode}),
- "mouseout" : function(){ this.node.setStyles( this.obj.css.nextSubjectNode ) }.bind({obj :this, node : nextSubjectNode})
- })
- }else{
- var nextSubjectNode = new Element( "div.nextSubjectNode", {
- styles : this.css.nextSubjectNoneNode
- }).inject( turnSubjectNode );
- }
- },
- gotoDocument : function( count ){
- if( count == 1 ){
- var documentData = this.nextSubject;
- }else{
- var documentData = this.lastSubject;
- }
- var oldId = "ForumDocument"+this.data.id;
- var appId = "ForumDocument"+documentData.id;
- if (this.desktop.apps[appId]){
- this.desktop.apps[appId].setCurrent();
- //this.close();
- }else {
- this.setOptions({
- "sectionId" : null, //this.data.sectionId,
- "id" : documentData.id,
- "appId": appId,
- "isEdited" : false,
- "isNew" : false
- });
- this.reload(oldId , appId );
- }
- },
- createSidebar: function(){
- if( this.inBrowser ){
- var crd = this.middleNode.getCoordinates();
- this.sideBar = new Element("div.sideBar", {
- styles : {
- "position" : "fixed",
- "left" : (crd.right+4)+"px",
- "bottom" : "100px",
- "width" : "50px",
- "height" : "155px",
- "padding-top" : "10px",
- "text-align" : "center",
- "background-color" : "#fff",
- "box-shadow": "0 0 4px rgba(0,0,0,0.20)"
- }
- }).inject( this.middleNode );
- window.onresize = function(){
- var crd = this.middleNode.getCoordinates();
- this.sideBar.setStyles( {
- "left" : (crd.right+4)+"px"
- })
- }.bind(this)
- }else{
- var contentCrd = this.content.getCoordinates();
- var middleNodeCrd = this.middleNode.getCoordinates();
- this.sideBar = new Element("div.sideBar", {
- styles : {
- "position" : "fixed",
- "top" : (contentCrd.top + contentCrd.height-220)+"px",
- "left" : (middleNodeCrd.right+4)+"px",
- "width" : "50px",
- "height" : "155px",
- "padding-top" : "10px",
- "text-align" : "center",
- "background-color" : "#fff",
- "box-shadow": "0 0 4px #ccc"
- }
- }).inject( this.middleNode );
- this.addEvent("moveDrop", function(){
- var contentCrd = this.content.getCoordinates();
- var middleNodeCrd = this.middleNode.getCoordinates();
- this.sideBar.setStyles( {
- "top" : (contentCrd.top + contentCrd.height-220)+"px",
- "left" : (middleNodeCrd.right+4)+"px"
- })
- }.bind(this));
- this.addEvent("resize", function(){
- var contentCrd = this.content.getCoordinates();
- var middleNodeCrd = this.middleNode.getCoordinates();
- this.sideBar.setStyles( {
- "top" : (contentCrd.top + contentCrd.height-220)+"px",
- "left" : (middleNodeCrd.right+4)+"px"
- })
- }.bind(this));
- }
- this._createSidebar();
- },
- _createSidebar: function(){
- var count = 1;
- var sidebarTop = new Element("div",{
- styles : this.css.sidebarTop,
- title: this.lp.gotoTop
- }).inject(this.sideBar);
- sidebarTop.addEvents(
- {
- "mouseover": function () {
- this.node.setStyles(this.obj.css.sidebarTop_over);
- }.bind({obj: this, node: sidebarTop}),
- "mouseout": function () {
- this.node.setStyles(this.obj.css.sidebarTop);
- }.bind({obj: this, node: sidebarTop}),
- "click": function () {
- this.contentContainerNode.scrollTo( 0, 0 );
- }.bind(this)
- }
- );
- if( this.sectionPermission.subjectPublishAble ){
- count++;
- var createActionNode = new Element("div",{
- styles : this.css.sidebarCreate,
- title: this.lp.createSubject
- }).inject(this.sideBar);
- createActionNode.addEvents(
- {
- "mouseover": function () {
- this.node.setStyles(this.obj.css.sidebarCreate_over);
- }.bind({obj: this, node: createActionNode}),
- "mouseout": function () {
- this.node.setStyles(this.obj.css.sidebarCreate);
- }.bind({obj: this, node: createActionNode}),
- "click": function () {
- if( this.access.isAnonymousDynamic() ){
- this.openLoginForm(
- function(){ this.createNewDocument(); }.bind(this)
- );
- }else{
- this.createNewDocument();
- }
- }.bind(this)
- }
- )
- }
- if( !this.data.stopReply ){
- if( this.isReplyPublisher ){
- count++;
- var action = new Element("div", {
- "styles" : this.css.sidebarReply,
- "title" : this.lp.reply
- }).inject( this.sideBar );
- action.addEvents({
- "mouseover" : function(){ this.itemNode.setStyles( this.obj.css.sidebarReply_over ) }.bind({ obj : this, itemNode : action }),
- "mouseout" : function(){ this.itemNode.setStyles( this.obj.css.sidebarReply ) }.bind({ obj : this, itemNode : action }),
- "click" : function(){
- if( this.access.isAnonymousDynamic() ){
- this.openLoginForm( function(){ this.reload() }.bind(this) );
- }else{
- this.createReply();
- }
- }.bind(this)
- })
- }
- }
- var container = new Element("div",{}).inject( this.sideBar );
- if( this.nextSubject ){
- count++;
- this.sidebarNext = new Element("div.sidebarNext",{
- "styles" : this.css.sidebarNext,
- "title" : this.lp.nextSubject + ":" + this.nextSubject.title
- }).inject( container );
- this.sidebarNext.addEvents({
- "click" : function(){ this.gotoDocument( 1 ); }.bind(this),
- "mouseover" : function(){
- this.sidebarNext.setStyles( this.css.sidebarNext_over );
- }.bind(this),
- "mouseout" : function(){
- this.sidebarNext.setStyles( this.css.sidebarNext );
- }.bind(this)
- })
- }
- if( this.lastSubject ){
- count++;
- this.sidebarPrev = new Element("div.sidebarPrev",{
- "styles" : this.css.sidebarPrev,
- "title" : this.lp.prevSubject + ":" + this.lastSubject.title
- }).inject( container );
- this.sidebarPrev.addEvents({
- "click" : function(){ this.gotoDocument( -1 ); }.bind(this),
- "mouseover" : function(){
- this.sidebarPrev.setStyles( this.css.sidebarPrev_over );
- }.bind(this),
- "mouseout" : function(){
- this.sidebarPrev.setStyles( this.css.sidebarPrev );
- }.bind(this)
- })
- }
- this.sideBar.setStyle( "height" , (count * 30 + 5 ) +"px" );
- },
- openPerson : function( userName ){
- var appId = "ForumPerson"+userName;
- if (this.desktop.apps[userName]){
- this.desktop.apps[userName].setCurrent();
- }else {
- this.desktop.openApplication(null, "ForumPerson", {
- "personName" : userName,
- "appId": appId
- });
- }
- },
- createPersonNode : function( container, personName ){
- var persons = personName.split(",");
- persons.each( function(userName, i){
- var span = new Element("span", {
- "text" : userName,
- "styles" : this.css.person
- }).inject(container);
- span.addEvents( {
- mouseover : function(){ this.node.setStyles( this.obj.css.person_over )}.bind( {node:span, obj:this} ),
- mouseout : function(){ this.node.setStyles( this.obj.css.person )}.bind( {node:span, obj:this} ),
- click : function(){ this.obj.openPerson( this.userName ) }.bind( {userName:userName, obj:this} )
- });
- if( i != persons.length - 1 ){
- new Element("span", {
- "text" : ","
- }).inject(container);
- }
- }.bind(this))
- },
- getUserData : function( name, callback ){
- if( this.userCache && this.userCache[name] ){
- if( callback )callback( this.userCache[name] );
- return
- }
- if( !this.userCache )this.userCache = {};
- if( this.access.isAnonymous() ){
- var url = MWF.Actions.get("x_organization_assemble_personal").getIcon(name);
- if( url ){
- var json = { data : { icon : url } };
- this.userCache[ name ] = json;
- if( callback )callback( json );
- }else{
- var json = { data : { icon : "/x_component_ForumDocument/$Main/"+this.options.style+"/icon/noavatar_big.gif" } };
- this.userCache[ name ] = json;
- if( callback )callback( json );
- }
- //MWF.Actions.get("x_organization_assemble_control").getPersonIcon(name, function(url){
- // var json = { data : { icon : url } };
- // this.userCache[ name ] = json;
- // if( callback )callback( json );
- //}.bind(this), function(){
- // var json = { data : { icon : "/x_component_ForumDocument/$Main/"+this.options.style+"/icon/noavatar_big.gif" } };
- // this.userCache[ name ] = json;
- // if( callback )callback( json );
- //}.bind(this))
- }else{
- MWF.Actions.get("x_organization_assemble_control").getPerson( function( json ){
- if( !json.data )json.data = {};
- var url = MWF.Actions.get("x_organization_assemble_personal").getIcon(name);
- if( url ){
- if( json.data ){
- json.data.icon = url;
- this.userCache[ name ] = json;
- if( callback )callback( json );
- }
- }else{
- if( json.data ){
- json.data.icon = "/x_component_ForumDocument/$Main/"+this.options.style+"/icon/noavatar_big.gif";
- this.userCache[ name ] = json;
- if( callback )callback( json );
- }
- }
- //MWF.Actions.get("x_organization_assemble_control").getPersonIcon(name, function(url){
- // if( json.data ){
- // json.data.icon = url;
- // this.userCache[ name ] = json;
- // if( callback )callback( json );
- // }
- //}.bind(this), function(){
- // if( json.data ){
- // json.data.icon = "/x_component_ForumDocument/$Main/"+this.options.style+"/icon/noavatar_big.gif";
- // this.userCache[ name ] = json;
- // if( callback )callback( json );
- // }
- //}.bind(this));
- }.bind(this), function(){
- var json = { data : { icon : "/x_component_ForumDocument/$Main/"+this.options.style+"/icon/noavatar_big.gif" } };
- this.userCache[ name ] = json;
- if( callback )callback( json );
- }.bind(this), name, true )
- }
- }
- });
- MWF.xApplication.ForumDocument.SubjectView = new Class({
- Extends: MWF.xApplication.Template.Explorer.ComplexView,
- _createDocument: function(data, index){
- data.index = index;
- var document;
- this.getUserData( data.creatorName, function(json ){
- data.userIcon = json.data.icon;
- data.signature = json.data.signature;
- this.actions.getUserInfor( {"userName":data.creatorName}, function( json ){
- data.subject = json.data.subjectCount;
- data.reply = json.data.replyCount;
- data.todaySubject = json.data.subjectCountToday;
- data.todayReply = json.data.replyCountToday;
- data.prime = json.data.creamCount;
- data.accessed = json.data.popularity;
- document = new MWF.xApplication.ForumDocument.SubjectDocument(this.viewNode, data, this.explorer, this, null, data.index );
- }.bind(this))
- }.bind(this) );
- return document;
- },
- getUserData : function( name, callback ){
- this.app.getUserData( name, callback );
- },
- _getCurrentPageData: function(callback, count){
- var json = {
- type: "success",
- count : 1,
- size : 1,
- data : [this.data]
- };
- if (callback)callback(json)
- },
- _removeDocument: function(documentData, all){
- this.actions.deleteSection(documentData.id, function(json){
- this.reload();
- this.app.notice(this.app.lp.deleteDocumentOK, "success");
- }.bind(this));
- },
- _create: function(){
- },
- _queryCreateViewNode: function(){
- },
- _postCreateViewNode: function( viewNode ){
- },
- _queryCreateViewHead:function(){
- },
- _postCreateViewHead: function( headNode ){
- }
- });
- MWF.xApplication.ForumDocument.SubjectDocument = new Class({
- Extends: MWF.xApplication.Template.Explorer.ComplexDocument,
- mouseoverSubject : function(subjectNode, ev){
- //var removeNode = sectionNode.getElements("[styles='sectionRemoveNode']")[0];
- //if( removeNode )removeNode.setStyle("opacity",1)
- },
- mouseoutSubject : function(subjectNode, ev){
- //var removeNode = sectionNode.getElements("[styles='sectionRemoveNode']")[0];
- //if( removeNode )removeNode.setStyle("opacity",0)
- },
- _queryCreateDocumentNode:function( itemData ){
- },
- _postCreateDocumentNode: function( itemNode, itemData ){
- var toolbar = itemNode.getElement("[item='itemSubjectTools']");
- this.app.createActionBar(toolbar);
- if( this.data.attachmentList && this.data.attachmentList.length > 0 ){
- var attachmentArea = itemNode.getElement("[item='attachment']");
- this.app.loadAttachment(attachmentArea);
- }
- if( this.data.typeCategory == this.lp.vote ){
- var voteArea = itemNode.getElement("[item='vote']");
- MWF.xDesktop.requireApp("ForumDocument", "Vote", function(){
- this.vote = new MWF.xApplication.ForumDocument.Vote(voteArea, this.app, {
- isNew : false,
- isEdited : false
- }, this.data);
- this.vote.load();
- }.bind(this), true)
- }
- },
- sendMessage : function(itemNode, ev ){
- var self = this;
- if (layout.desktop.widgets["IMIMWidget"]) {
- var IM = layout.desktop.widgets["IMIMWidget"];
- IM.getOwner(function(){
- this.openChat(ev, {
- from : self.data.creatorName
- });
- }.bind(IM));
- }
- },
- createReply : function(itemNode, ev ){
- if( this.app.access.isAnonymousDynamic() ){
- this.app.openLoginForm( function(){ this.app.reload() }.bind(this) );
- }else{
- var form = new MWF.xApplication.ForumDocument.ReplyForm(this, {}, {
- "toMain" : true,
- onPostOk : function( id ){
- this.app.postCreateReply( id );
- }.bind(this)
- });
- form.mainData = this.data;
- form.create()
- }
- }
- });
- MWF.xApplication.ForumDocument.ReplyEditor = new Class({
- Implements: [Options , Events],
- options: {
- "style": "default",
- "isNew" : true
- },
- initialize: function(node, app, options){
- this.setOptions(options);
- this.node = node;
- this.app = app;
- },
- load: function(){
- this.app.restActions.getUUID( function( id ){
- this.advanceReplyId = id;
- this._load();
- }.bind(this))
- },
- _load: function(){
- var html = "<div styles='itemNode'>" +
- " <div styles='itemLeftNode'>" +
- " <div styles='itemUserFace'>" +
- " <div styles='itemUserIcon' item='userIcon'>" +
- " </div>" +
- " </div>" +
- " <div styles='replyUserName' item='creatorName'>" +
- " </div>" +
- " </div>" +
- " <div styles='replyRightNode'>" +
- " <div styles='itemRightMidle'>" +
- " <div styles='itemBodyReply' item='content'></div>" +
- " <div styles='itemBodyReply' item='action'></div>" +
- " </div>" +
- " </div>" +
- "</div>";
- this.node.set("html", html);
- var actionTd = this.node.getElements("[item='action']")[0];
- this.saveReplyAction = new Element("div",{
- styles : this.app.css.actionNode,
- text: this.app.lp.saveReply
- }).inject(actionTd);
- this.saveReplyAction.addEvent("click",function(){
- this.saveReply();
- }.bind(this));
- MWF.xDesktop.requireApp("Template", "MForm", function () {
- this.form = new MForm(this.node, this.data || {}, {
- style: "forum",
- isEdited: true,
- itemTemplate: {
- userIcon: { className : "itemUserIcon2", type : "img", value : function(){
- if( this.app.userData.icon ){
- return "data:image/png;base64," + this.app.userData.icon
- }else{
- var src = "/x_component_ForumDocument/$Main/"+this.options.style+"/icon/noavatar_big.gif";
- this.app.getUserData( this.app.userData.distinguishedName, function(json ){
- src = json.data.icon;
- }.bind(this), function(){
- var src = "/x_component_ForumDocument/$Main/"+this.options.style+"/icon/noavatar_big.gif";
- }, false );
- return src;
- }
- }.bind(this)},
- creatorName: { type : "innerText", value : ( this.app.userName || "" ).split('@')[0] },
- content: { type : "rtf", RTFConfig : {
- //skin : "bootstrapck",
- "resize_enabled": false,
- isSetImageMaxWidth : true,
- reference : this.advanceReplyId,
- referenceType: "forumReply",
- //uiColor : '#9AB8F3',
- //toolbarCanCollapse : true,
- toolbar : [
- { name: 'document', items : [ 'Preview' ] },
- //{ name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
- { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','-','RemoveFormat' ] },
- //{ name: 'paragraph', items : [ 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock' ] },
- { name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
- { name: 'colors', items : [ 'TextColor','BGColor' ] },
- { name: 'links', items : [ 'Link','Unlink' ] },
- { name: 'insert', items : [ 'Image' ] },
- { name: 'tools', items : [ 'Maximize','-','About' ] }
- ]
- }}
- }
- }, this, this.app.css);
- this.form.load();
- }.bind(this), true);
- },
- saveReply : function(){
- var data = this.form.getResult(true, ",", true, false, true);
- if (data) {
- data.subjectId = this.mainData.id ;
- data.id = this.advanceReplyId;
- this.app.restActions.saveReply(data, function (json) {
- if (json.type == "error") {
- this.app.notice(json.message, "error");
- } else {
- this.app.restActions.getUUID( function( id ){
- this.advanceReplyId = id;
- }.bind(this));
- this.app.notice( this.app.lp.saveReplySuccess, "ok" );
- this.form.getItem("content").setValue("");
- this.fireEvent("postOk", json.data.id);
- }
- }.bind(this))
- }
- }
- });
- MWF.xApplication.ForumDocument.ReplyForm = new Class({
- Extends: MPopupForm,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "width": "860",
- "height": "470",
- "hasTop": true,
- "hasIcon": false,
- "hasTopIcon" : true,
- "hasTopContent" : true,
- "hasBottom": true,
- "title": MWF.xApplication.Forum.LP.replyFormTitle,
- "draggable": true,
- "closeAction": true,
- "toMain" : true
- },
- _createTableContent: function(){
- if( this.isNew ){
- this.app.restActions.getUUID( function(id){
- this.advanceReplyId = id;
- this._createTableContent_();
- }.bind(this) )
- }else{
- this._createTableContent_()
- }
- },
- _createTableContent_: function () {
- var html = "<table width='100%' bordr='0' cellpadding='5' cellspacing='0' styles='formTable'>" +
- "<tr>" +
- " <td styles='formTableValue14' item='mainSubject'></td>" +
- "</tr><tr>" +
- " <td styles='formTableValue' item='mainContent'></td>" +
- "</tr><tr>" +
- " <td styles='formTableValue' item='content'></td>" +
- "</tr>"+
- "</table>";
- this.formTableArea.set("html", html);
- if( !this.options.toMain && this.parentData ){
- var mainContentEl = this.formTableArea.getElements("[item='mainContent']")[0];
- var quoteTop = new Element( "div", {styles : this.css.quoteTop} ).inject( mainContentEl );
- new Element( "div", {styles : this.css.quoteLeft} ).inject( quoteTop );
- new Element( "div", {
- styles : this.css.quoteInfor,
- text : this.parentData.creatorName.split("@")[0] + this.lp.publishAt + this.parentData.createTime
- }).inject( quoteTop );
- var quoteBottom = new Element( "div", {styles : this.css.quoteBottom} ).inject( mainContentEl );
- var text = this.parentData.contentText;
- new Element( "div", {
- styles : this.css.quoteText,
- text : text.length > 50 ? (text.substr(0, 50) + "...") : text
- }).inject( quoteBottom );
- new Element( "div", {styles : this.css.quoteRight} ).inject( quoteBottom );
- }
- MWF.xDesktop.requireApp("Template", "MForm", function () {
- this.form = new MForm(this.formTableArea, this.data, {
- style: "forum",
- isEdited: true,
- itemTemplate: {
- mainSubject: { type: "innertext", defaultValue : "RE:" + this.mainData.title },
- content: { type : "rtf", RTFConfig : {
- //skin : "bootstrapck",
- "resize_enabled": false,
- isSetImageMaxWidth : true,
- reference : this.advanceReplyId || this.data.id,
- referenceType: "forumReply",
- toolbar : [
- { name: 'document', items : [ 'Preview' ] },
- //{ name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
- { name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','-','RemoveFormat' ] },
- //{ name: 'paragraph', items : [ 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock' ] },
- { name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
- { name: 'colors', items : [ 'TextColor','BGColor' ] },
- { name: 'links', items : [ 'Link','Unlink' ] },
- { name: 'insert', items : [ 'Image' ] },
- { name: 'tools', items : [ 'Maximize','-','About' ] }
- ]
- }}
- }
- }, this.app, this.css);
- this.form.load();
- }.bind(this), true);
- },
- _createBottomContent: function () {
- if (this.isNew || this.isEdited) {
- this.okActionNode = new Element("div.formOkActionNode", {
- "styles": this.css.formOkActionNode,
- "text": this.app.lp.saveReply
- }).inject(this.formBottomNode);
- this.okActionNode.addEvent("click", function (e) {
- this.ok(e);
- }.bind(this));
- }
- this.cancelActionNode = new Element("div.formCancelActionNode", {
- "styles": this.css.formCancelActionNode,
- "text": this.app.lp.close
- }).inject(this.formBottomNode);
- this.cancelActionNode.addEvent("click", function (e) {
- this.cancel(e);
- }.bind(this));
- },
- ok: function (e) {
- this.fireEvent("queryOk");
- var data = this.form.getResult(true, ",", true, false, true);
- if (data) {
- this._ok(data, function (json) {
- if (json.type == "error") {
- this.app.notice(json.message, "error");
- } else {
- if(this.formMaskNode)this.formMaskNode.destroy();
- this.formAreaNode.destroy();
- this.app.notice(this.isNew ? this.app.lp.createReplySuccess : this.app.lp.updateSuccess, "success");
- this.fireEvent("postOk", json.data.id);
- }
- }.bind(this))
- }
- },
- _ok: function (data, callback) {
- data.subjectId = this.mainData.id ;
- if( this.advanceReplyId )data.id = this.advanceReplyId;
- if( !this.options.toMain ){
- data.parentId = this.parentData.id ;
- }
- this.app.restActions.saveReply( data, function(json){
- if( callback )callback(json);
- }.bind(this));
- }
- });
- MWF.xApplication.ForumDocument.ReplyView = new Class({
- Extends: MWF.xApplication.Template.Explorer.ComplexView,
- _createDocument: function(data, index){
- data.index = index;
- return new MWF.xApplication.ForumDocument.ReplyDocument(this.viewNode, data, this.explorer, this, null, data.index );
- },
- _getCurrentPageData: function(callback, count, pageNum){
- this.clearBody();
- if(!count)count=10;
- if(!pageNum)pageNum = 1;
- if( pageNum == 1 ){
- this.app.subjectConainer.setStyle("display","block");
- if( this.app.satisfiedReplyViewConainer )this.app.satisfiedReplyViewConainer.setStyle("display","block");
- }else{
- this.app.subjectConainer.setStyle("display","none");
- if( this.app.satisfiedReplyViewConainer )this.app.satisfiedReplyViewConainer.setStyle("display","none");
- }
- //page, count, filterData, success,failure, async
- //if( !this.page ){
- // this.page = 1;
- //}else{
- // this.page ++;
- //}
- //var id = (this.items.length) ? this.items[this.items.length-1].data.id : "(0)";
- var filter = this.filterData || {};
- this.actions.listReplyFilterPage( pageNum, count, filter, function(json){
- if( !json.data )json.data = [];
- if( !json.count )json.count=0;
- if( callback )callback(json);
- }.bind(this))
- },
- _removeDocument: function(documentData, all){
- this.actions.deleteReply( documentData.id, function(){
- this.reload();
- this.app.notice( this.lp.deleteReplySuccess, "ok")
- }.bind(this) )
- },
- _create: function(){
- },
- _queryCreateViewNode: function(){
- },
- _postCreateViewNode: function( viewNode ){
- },
- _queryCreateViewHead:function(){
- },
- _postCreateViewHead: function( headNode ){
- }
- });
- MWF.xApplication.ForumDocument.ReplyDocument = new Class({
- Extends: MWF.xApplication.Template.Explorer.ComplexDocument,
- mouseoverSubject : function(subjectNode, ev){
- //var removeNode = sectionNode.getElements("[styles='sectionRemoveNode']")[0];
- //if( removeNode )removeNode.setStyle("opacity",1)
- },
- mouseoutSubject : function(subjectNode, ev){
- //var removeNode = sectionNode.getElements("[styles='sectionRemoveNode']")[0];
- //if( removeNode )removeNode.setStyle("opacity",0)
- },
- getUserData : function( name, callback ){
- this.app.getUserData( name, callback );
- },
- _queryCreateDocumentNode:function( itemData ){
- },
- _postCreateDocumentNode: function( itemNode, itemData ){
- var userIcon = itemNode.getElements( "[item='userIcon']" )[0];
- var signatureContainer = itemNode.getElements("[item='signatureContainer']")[0];
- this.getUserData( itemData.creatorName, function(json ){
- userIcon.src = json.data.icon;
- if( json.data.signature && json.data.signature!="" ){
- var signatureNode = signatureContainer.getElements("[item='signature']")[0];
- signatureNode.set("text", json.data.signature )
- }else{
- signatureContainer.destroy();
- }
- }.bind(this) );
- this.actions.getUserInfor( {"userName":itemData.creatorName}, function( json ){
- var d = json.data;
- itemNode.getElements( "[item='subject']" )[0].set("text", d.subjectCount);
- itemNode.getElements( "[item='reply']" )[0].set("text", d.replyCount);
- itemNode.getElements( "[item='prime']" )[0].set("text", d.creamCount);
- itemNode.getElements( "[item='todaySubject']" )[0].set("text", d.subjectCountToday);
- itemNode.getElements( "[item='todayReply']" )[0].set("text", d.replyCountToday);
- }.bind(this));
- if( itemData.parentId && itemData.parentId != "" ){
- var quoteContainer = itemNode.getElements( "[item='quoteContent']" )[0];
- this.actions.getReply( itemData.parentId, function( json ){
- var data = this.parentData = json.data;
- var quoteContent = new Element("div", { "styles" : this.css.itemQuote }).inject(quoteContainer);
- var content = quoteContent.set("html", data.content).get("text");
- quoteContent.empty();
- data.contentText = content;
- new Element( "div", {styles : this.css.quoteLeftBig} ).inject( quoteContent );
- var quoteArea = new Element( "div", {styles : this.css.quoteAreaBig } ).inject( quoteContent );
- var quoteInfor = new Element( "div", {
- styles : this.css.quoteInforBig,
- text : data.orderNumber + this.lp.floor + ":" + data.creatorName.split('@')[0] + this.lp.publishAt + data.createTime
- }).inject( quoteArea );
- quoteInfor.addEvent("click", function(){
- this.obj.app.gotoReply( this.index )
- }.bind({obj : this, index : data.orderNumber || (data.index + 2) }));
- new Element( "div", {
- styles : this.css.quoteTextBig,
- text : content.length > 100 ? (content.substr(0, 100) + "...") : content
- }).inject( quoteArea );
- new Element( "div", {styles : this.css.quoteRightBig} ).inject( quoteContent );
- }.bind(this) , function( json ){
- new Element( "div" , {
- "styles" : this.css.replyBeinngDelete,
- "text" : this.lp.quoteReplyBeingDeleted
- }).inject(quoteContainer)
- }.bind(this)
- )
- }
- },
- sendMessage : function(itemNode, ev ){
- var self = this;
- if (layout.desktop.widgets["IMIMWidget"]) {
- var IM = layout.desktop.widgets["IMIMWidget"];
- IM.getOwner(function(){
- this.openChat(ev, {
- from : self.data.creatorName
- });
- }.bind(IM));
- }
- },
- createReply : function(itemNode, ev ){ // 对回复进行回复
- if( this.app.access.isAnonymousDynamic() ){
- this.app.openLoginForm( function(){ this.app.reload() }.bind(this) );
- }else{
- var form = new MWF.xApplication.ForumDocument.ReplyForm(this, {}, {
- toMain: false,
- onPostOk: function (id) {
- this.app.postCreateReply(id)
- }.bind(this)
- });
- this.data.contentText = this.node.getElements("[item='content']")[0].get("text");
- form.mainData = this.app.data;
- form.parentData = this.data;
- form.create()
- }
- },
- editReply : function(itemNode, ev ){ //编辑当前回复
- var form = new MWF.xApplication.ForumDocument.ReplyForm(this, this.data, {
- toMain : (this.data.parentId && this.data.parentId!="") ? false : true,
- onPostOk : function( id ){
- this.actions.getReply( id, function( json ){
- var content = this.node.getElements("[item='content']")[0];
- content.set( "html", json.data.content );
- }.bind(this))
- }.bind(this)
- });
- form.mainData = this.app.data;
- form.parentData = this.parentData;
- form.edit()
- },
- deleteReply : function( itemNode, ev ){
- var _self = this;
- this.app.confirm("warn", ev, this.lp.deleteReplyTitle, this.lp.deleteReplyText, 350, 120, function(){
- //_self.view._removeDocument(_self.data, false);
- _self.actions.deleteReply( _self.data.id, function(){
- if( MWFForum.getSystemConfigValue("BBS_REPLY_DELETETYPE").toLowerCase() === "recursively" ){
- _self.destroy();
- _self.app.adjustReplyCount( -1 );
- _self.view.reload();
- _self.app.notice( _self.lp.deleteReplySuccess, "ok")
- }else{
- _self.destroy();
- _self.app.adjustReplyCount( -1 );
- _self.app.notice( _self.lp.deleteReplySuccess, "ok")
- }
- }.bind(this) );
- this.close();
- }, function(){
- this.close();
- });
- },
- satisfiedAction : function(){
- this.actions.acceptReply({"id": this.data.id }, function(){
- this.app.notice( this.lp.acceptReplySuccess, "ok");
- this.app.reload();
- }.bind(this))
- }
- });
- MWF.xApplication.ForumDocument.SatisfiedReplyView = new Class({
- Extends: MWF.xApplication.ForumDocument.ReplyView,
- _createDocument: function (data, index) {
- data.index = index;
- return new MWF.xApplication.ForumDocument.SatisfiedReplyDocument(this.viewNode, data, this.explorer, this, null, data.index);
- },
- _getCurrentPageData: function(callback, count, pageNum){
- this.clearBody();
- if(!count)count=1;
- if(!pageNum)pageNum = 1;
- var filter = this.filterData || {};
- this.actions.getAcceptedReply( this.data.acceptReplyId, function(json){
- if( !json.data ){
- json.data = [];
- }else if( typeOf( json.data ) == "object" ){
- json.data = [ json.data ];
- json.count = 1;
- }
- if( !json.count )json.count=0;
- if( callback )callback(json);
- }.bind(this))
- }
- });
- MWF.xApplication.ForumDocument.SatisfiedReplyDocument = new Class({
- Extends: MWF.xApplication.ForumDocument.ReplyDocument
- });
- MWF.xApplication.ForumDocument.TopSettingForm = new Class({
- Extends: MPopupForm,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "width": "420",
- "height": "250",
- "hasTop": true,
- "hasIcon": false,
- "hasTopIcon" : true,
- "hasTopContent" : true,
- "hasBottom": true,
- "title": MWF.xApplication.Forum.LP.topFormTitle,
- "draggable": true,
- "closeAction": true
- },
- createTopNode: function () {
- if (!this.formTopNode) {
- this.formTopNode = new Element("div.formTopNode", {
- "styles": this.css.formTopNode
- }).inject(this.formNode);
- if(this.options.hasTopIcon){
- this.formTopIconNode = new Element("div", {
- "styles": this.css.formTopIconNodeDocument
- }).inject(this.formTopNode)
- }
- this.formTopTextNode = new Element("div", {
- "styles": this.css.formTopTextNodeTopSetting,
- "text": this.options.title
- }).inject(this.formTopNode);
- if (this.options.closeAction) {
- this.formTopCloseActionNode = new Element("div", {"styles": this.css.formTopCloseActionNode}).inject(this.formTopNode);
- this.formTopCloseActionNode.addEvent("click", function () {
- this.close()
- }.bind(this))
- }
- }
- },
- _createTableContent: function () {
- var html = "<table width='100%' bordr='0' cellpadding='5' cellspacing='0' styles='formTable'>" +
- "<tr>" +
- " <td styles='formTableValue' style='font-size:14px;' lable='topType'></td>" +
- //"</tr><tr>" +
- //" <td styles='formTableValue' item='topToBBS'></td>" +
- "</tr><tr>" +
- " <td styles='formTableValue' item='topToForum'></td>" +
- "</tr><tr>" +
- " <td styles='formTableValue' item='topToSection'></td>" +
- "</tr>"+
- "</table>";
- this.formTableArea.set("html", html);
- this.topToBBS = this.data.topToBBS;
- this.topToForum = this.data.topToForum;
- this.topToSection = this.data.topToSection;
- MWF.xDesktop.requireApp("Template", "MForm", function () {
- this.form = new MForm(this.formTableArea, this.data, {
- style: "forum",
- isEdited: this.isEdited || this.isNew,
- itemTemplate: {
- topType : { text : this.lp.topType },
- //topToBBS: { type: "checkbox", selectValue : [true], selectText : [this.lp.topToBBS] },
- topToForum: { type: "checkbox", selectValue : ["true"], selectText : [this.lp.topToForum]},
- topToSection: { type: "checkbox", selectValue : ["true"], selectText : [this.lp.topToSection] }
- }
- }, this.app, this.css);
- this.form.load();
- }.bind(this), true);
- },
- _createBottomContent: function () {
- if (this.isNew || this.isEdited) {
- this.okActionNode = new Element("div.formOkActionNode", {
- "styles": this.css.formOkActionNode,
- "text": this.app.lp.ok
- }).inject(this.formBottomNode);
- this.okActionNode.addEvent("click", function (e) {
- this.ok(e);
- }.bind(this));
- }
- this.cancelActionNode = new Element("div.formCancelActionNode", {
- "styles": this.css.formCancelActionNode,
- "text": this.app.lp.close
- }).inject(this.formBottomNode);
- this.cancelActionNode.addEvent("click", function (e) {
- this.cancel(e);
- }.bind(this));
- },
- ok: function (e) {
- this.fireEvent("queryOk");
- var data = this.form.getResult(true, ",", true, false, true);
- if (data) {
- var flag = true;
- //if( data.topToBBS === true || data.topToBBS === "true" ){
- // this.actions.topToBBS( this.app.data.id , function( json ){
- // if (json.type == "error") {
- // this.app.notice(json.userMessage, "error");
- // flag = false;
- // }
- // }, function(){
- // flag = false;
- // }, false )
- //}else if( this.topToBBS === true || this.topToBBS === "true" ){
- // this.actions.cancelTopToBBS( this.app.data.id , function( json ){
- // if (json.type == "error") {
- // this.app.notice(json.userMessage, "error");
- // flag = false;
- // }
- // }, function(){
- // flag = false;
- // }, false )
- //}
- if( data.topToForum === true || data.topToForum === "true" ){
- this.actions.topToForum( this.app.data.id , function( json ){
- if (json.type == "error") {
- this.app.notice(json.message, "error");
- flag = false;
- }
- }, function(){
- flag = false;
- }, false )
- }else if( this.topToForum === true || this.topToForum === "true" ){
- this.actions.cancelTopToForum( this.app.data.id , function( json ){
- if (json.type == "error") {
- this.app.notice(json.message, "error");
- flag = false;
- }
- }, function(){
- flag = false;
- }, false )
- }
- if( data.topToSection === true || data.topToSection === "true" ){
- this.actions.topToSection( this.app.data.id , function( json ){
- if (json.type == "error") {
- this.app.notice(json.message, "error");
- flag = false;
- }
- }, function(){
- flag = false;
- }, false )
- }else if( this.topToSection === true || this.topToSection === "true" ){
- this.actions.cancelTopToSection( this.app.data.id , function( json ){
- if (json.type == "error") {
- this.app.notice(json.message, "error");
- flag = false;
- }
- }, function(){
- flag = false;
- }, false )
- }
- if( flag ){
- if(this.formMaskNode)this.formMaskNode.destroy();
- this.formAreaNode.destroy();
- this.app.notice( this.app.lp.setTopSuccess );
- this.fireEvent("postOk");
- }else{
- this.app.notice( this.app.lp.setToFail , "error");
- }
- }
- }
- });
|