argument_form_utils.js 20.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
/*
Copyright (c) 2014, Bartłomiej Nitoń
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

    Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

 // argument class
function argument(id, text_rep, type)
{
  	this.id = id
  	this.text_rep = text_rep;
    this.type = type;
    this.error = false;
    this.tooltip = '';
}

function arguments_form_change(lastActualValueIdx, arg_id, this_form, lemma_id) {	
    form_data = this_form.serializeArray();
    this_dialog = this_form.closest("$[id$='-dialog']");
  
  	if(!arg_id)
  	{
  	  form_data = prepareArgFormData(this_form, form_data, lastActualValueIdx);
      form_data.push({name: 'arg_id', value: ''});
    }
    else
      form_data.push({name: 'arg_id', value: arg_id});
    
    data = JSON.stringify(form_data);
    
    positionArguments = '';
    if(arg_id) {
    	this_dialog.data('positionArguments', '');
    }
    else {
    	positionArguments = this_dialog.data('positionArguments');
    }

    phraseologic = false;
    selectedArgId = null;
    selectedFrame = this_dialog.data('selectedFrame');
    if(this_dialog.data('selectedArgId')) {
    	selectedArgId = this_dialog.data('selectedArgId');
    	this_dialog.data('selectedArgId', '');
    }
    if(!selectedFrame) {
    	selectedFrame = '';
    }
    else {
    	phraseologic = selectedFrame.is_phraseologic;
    }
    
    var lexArgChoosing = false;
    var positionOrArgumentsArgChoosing = false;
    var creatingEditingNewRealization = false;
    if(this_dialog.dialog( "option" , "title").startsWith("Wybieranie")) {
    	lexArgChoosing = true;
    }
    else if(this_dialog.dialog( "option" , "title").startsWith("Tworzenie typu frazy") ||
    		 this_dialog.dialog( "option" , "title").startsWith("Zmiana typu frazy")) {
    	positionOrArgumentsArgChoosing = true;
    }
    else if(this_dialog.dialog( "option" , "title").startsWith("Tworzenie rozwinięcia typu frazy") ||
   		 	 this_dialog.dialog( "option" , "title").startsWith("Zmiana rozwinięcia typu frazy")) {
    	creatingEditingNewRealization = true;
   }
    else if(this_dialog.dialog( "option" , "title").startsWith("Dodawanie")) {
    	phraseologic = false;
    }
    
    this_dialog.empty();
    this_dialog.load(ajax_argument_form, {'form_data': data,
    									  'lemma_id': lemma_id,
        								  'position_arguments': JSON.stringify(positionArguments),
        								  'selected_arg': selectedArgId,
        								  'phraseologic': phraseologic,
        								  'lex_arg_choosing': lexArgChoosing,
        								  'position_or_arguments_arg_choosing': positionOrArgumentsArgChoosing,
        								  'creating_editing_new_realization': creatingEditingNewRealization});
} 

function prepareArgFormData(form, form_data, lastActualValueIdx) {
    var freq_coordinated = '';
    var opinion = '';
    var type = '';
    var values = [];
    
    form_data = $.map(form_data, function(elem)
    {
      //alert(elem.name+'  '+elem.value);
      if (!elem.name.startsWith('arg_type') && 
    	  !elem.name.startsWith('value') &&
    	  elem.name != 'freq_coordinated' &&
    	  elem.name != 'opinion')
        return elem;
      else {
    	  if (elem.name == 'freq_coordinated')
          	freq_coordinated = elem.value;
    	  else if (elem.name.startsWith('arg_type'))
          	type = elem.value;
    	  else if (elem.name == 'opinion')
              opinion = elem.value;
      }
    });
    
    var subforms = form.find('#subform');
    subforms.each(function() {
    	var subform = $(this);
    	var subform_values = [];
    	var subform_data = subform.find("input, textarea, select").serializeArray();
    	$.map(subform_data, function(elem) {
	      if (!elem.name.startsWith('value'))
	        return elem;
	      else {
	        if (elem.name.startsWith('value'))
	        	subform_values.push(elem.value);
	      }
    	});
    	values.push(subform_values);
    });

    form_data.push({name: 'arg_type', value: type});
    if(lastActualValueIdx >= 0 && values && 
			  lastActualValueIdx < values.length) 
    	values = values.splice(0, lastActualValueIdx);
    form_data.push({name: 'subform_values', value: values});
    form_data.push({name: 'freq_coordinated', value: freq_coordinated});
    form_data.push({name: 'opinion', value: opinion});
	
    return form_data
}

function argument_form_submit() {
    ShowProgressAnimation();
    var this_form = $(this);
    var this_dialog = this_form.closest("$[id$='-dialog']");
    
    lemma_id = window.lemma_id;
    if (typeof(lemma_id) === 'undefined')
    	lemma_id = null;
    
    form_data = this_form.serializeArray();
    form_data = prepareArgFormData(this_form, form_data, -1);
    if(this_dialog.dialog( "option" , "title").startsWith("Wybieranie")) 
    	form_data.push({name: 'lex_arg_choosing', value: true});
    else
    	form_data.push({name: 'lex_arg_choosing', value: false});
    
    $.ajaxJSON({
      method: 'post',
      url: ajax_argument_form_submit,
      data: {
        form_data: form_data
      },

    callback: function(result) {    
      var arg = new argument(result["id"], result["text_rep"], result["type"]);
      
      // dodawanie argumentow
      if(this_dialog.dialog( "option" , "title").startsWith("Dodawanie"))
      {
        selected_pos = getElementInstance(selected_id, schemas);
        selected_pos['element'].arguments.push(arg);
        window.selected_id = -1;
        
        scrollPosition = $('#new-frame-tables').scrollTop();
        draw_filtered_frames(window.schemas, 'new-frame-tables', 'new-frame-table', 'frame_filter', window.nkjp_examples, 'ActiveFrameTable', window.lemma_entry);
        $('#new-frame-tables').scrollTop(scrollPosition);

        frames_modif = frames_modif.slice(0, frames_modif_idx+1);     
        var lemma_version = new Lemma_Version(schemas, window.nkjp_examples, window.nkjp_lemma_examples);
        frames_modif.push(lemma_version);
        frames_modif_idx++;
        window.change = true;
        
      }
      // edycja argumentow
      else if (this_dialog.dialog( "option" , "title").startsWith("Edycja"))
      {
        edited_arg = getElementInstance(edited_id, schemas);
        edited_arg['element'].id = arg.id;
        edited_arg['element'].text_rep = arg.text_rep;
        edited_arg['element'].type = arg.type;
          
        // przepisywanie przykladow ze starej instancji argumentu na nowa
        var ids = parseId(edited_id);
        var frame_tabId = 'frame_'+ids['frame_id']+'_';
        var arg_tabId = 'arg_'+ids['arg_id']+'_';
        var new_arg_tabId = 'arg_'+arg.id+'_';
        
        // podmienianie identyfikatorow argumentow na rzecz przypisywania do nich przykladow
        if(window.selectedFrameIdNkjp == frame_tabId && window.selectedArgumentsIdNkjp.indexOf(arg_tabId) != -1)
          window.selectedArgumentsIdNkjp = window.selectedArgumentsIdNkjp.replace(arg_tabId, new_arg_tabId)  
        
        for(var i=0; i<window.nkjp_examples.length; i++)
        {
          if(window.nkjp_examples[i].frame_id == frame_tabId)
          {
            for(var j=0; j<window.nkjp_examples[i].arguments_ids.length; j++)
            {
              if(window.nkjp_examples[i].arguments_ids[j] == edited_id)
              {
                window.nkjp_examples[i].arguments_ids[j] = window.nkjp_examples[i].arguments_ids[j].replace(arg_tabId, new_arg_tabId);
              }
            }
          }
        }
        
        scrollPosition = $('#new-frame-tables').scrollTop();
        draw_filtered_frames(window.schemas, 'new-frame-tables', 'new-frame-table', 'frame_filter', window.nkjp_examples, 'ActiveFrameTable', window.lemma_entry);
        $('#new-frame-tables').scrollTop(scrollPosition);

        frames_modif = frames_modif.slice(0, frames_modif_idx+1);     
        var lemma_version = new Lemma_Version(schemas, window.nkjp_examples, window.nkjp_lemma_examples);
        frames_modif.push(lemma_version);
        frames_modif_idx++;
        window.change = true;
        
      } 
      // tworzenie nowych argumentow
      else if (this_dialog.dialog( "option" , "title").startsWith("Tworzenie typu frazy")) {
    	  var dialogParent = this_dialog.data('origParentElement');
    	  var argumentsElement = dialogParent.children("$[id$='-arguments']").first();
    	  argumentsElement.append("<p id='argument'>"+result['text_rep']+"<input id='id_value' type='hidden'  name='value' value='"+result["id"]+"'/>" +
    	  		"<button type='button' id='edit-argument'>Edytuj</button><button type='button' id='remove-argument'>Usuń</button></p>");
      }
      // zmiana argumentu (edycja argumentow przy leksykalizacji np. jesli leksykalizowany jest compar)
      else if (this_dialog.dialog( "option" , "title").startsWith("Zmiana typu frazy")) {
    	  var dialogParent = this_dialog.data('origParentElement');
    	  var argumentsElement = dialogParent.children("$[id$='-arguments']").first();
    	  var editedArgDiv = this_dialog.data('editedArgDiv');
    	  editedArgDiv.remove();
    	  argumentsElement.append("<p id='argument'>"+result['text_rep']+"<input id='id_value' type='hidden'  name='value' value='"+result["id"]+"'/>" +
    	  		"<button type='button' id='edit-argument'>Edytuj</button><button type='button' id='remove-argument'>Usuń</button></p>");
      }
      
      // tworzenie nowych rozwiniec typu frazy (na potrzeby podtypow xp w lexach)
      else if (this_dialog.dialog( "option" , "title").startsWith("Tworzenie rozwinięcia typu frazy")) {
    	  var dialogParent = this_dialog.data('origParentElement');
    	  var argumentsElement = dialogParent.children("$[id$='-arguments']").first();
    	  argumentsElement.append("<p id='argument'>"+result['text_rep']+"<input id='id_value' type='hidden'  name='value' value='"+result["id"]+"'/>" +
    	  		"<button type='button' id='edit-realization'>Edytuj</button><button type='button' id='remove-argument'>Usuń</button></p>");
      }
      // zmiana rozwiniec typu frazy (edycja utworzonych typow fraz w lexach dla podtypow xp np.)
      else if (this_dialog.dialog( "option" , "title").startsWith("Zmiana rozwinięcia typu frazy")) {
    	  var dialogParent = this_dialog.data('origParentElement');
    	  var argumentsElement = dialogParent.children("$[id$='-arguments']").first();
    	  var editedArgDiv = this_dialog.data('editedArgDiv');
    	  editedArgDiv.remove();
    	  argumentsElement.append("<p id='argument'>"+result['text_rep']+"<input id='id_value' type='hidden'  name='value' value='"+result["id"]+"'/>" +
    	  		"<button type='button' id='edit-realization'>Edytuj</button><button type='button' id='remove-argument'>Usuń</button></p>");
      }
      
      // wypelnianie atrybutu argument
      else if (this_dialog.dialog( "option" , "title").startsWith("Wybieranie")) {
    	  var dialogParent = this_dialog.data('origParentElement');
    	  var argumentElement = dialogParent.children("$[id$='-argument']").first();
    	  argumentElement.empty();
    	  argumentElement.append(result['text_rep']+"<input id='id_value' type='hidden'  name='value' value='"+result["id"]+"'/>");
    	  if (lemma_id) { // edytujemy haslo
    		  arguments_form_change(1, null, dialogParent.closest(".argument-add-form"), lemma_id);
    	  } 
    	  // tworzymy typy fraz
    	  else {
    		  arguments_form_change(1, null, dialogParent.closest(".argument-add-form"), '');
    		 // realization_arguments_form_change(1, '', false, dialogParent.closest(".argument-add-form"));
    	  }
      }
      this_dialog.dialog('close'); 
      HideProgressAnimation();	
    },
    error_callback: function(xhr, status, error) {
      HideProgressAnimation();
      error_alert(status + ': ' + error);
    },
    bad_data_callback: function(result) {
      if (result) {
          HideProgressAnimation();
          error_alert(result);
          return false;
      }
      else
      {
        HideProgressAnimation();
        return true;
      }
    },
  });
  return false;
}

function openSelectArgumentDialog(event, lemma_id) {
	  var form_data = '';
	  var formDivParent = $(event.target).parent();
	  var argId = formDivParent.find('#id_value').first().val();
	  if(argId) {
		  form_data = [{name: 'arg_id', value: argId}];
	  }
	  var data = JSON.stringify(form_data);
	  
	  formDivParent.append("<div id="+formDivParent.attr('id')+"-argument-form-dialog></div>");
	  var form_div = formDivParent.children("$[id$='-argument-form-dialog']").first();
	  form_div.data('positionArguments', '')
	  		  .data('origParentElement', formDivParent)
	  		  .load(ajax_argument_form, {'form_data': data,
		  			'lemma_id': lemma_id,
		  			'position_arguments': '',
		  			'selected_arg': '',
		  			'phraseologic': false,
		  			'lex_arg_choosing': true,
		  			'creating_editing_new_realization': false})
		  	  .dialog({ autoOpen: true, 
		  				modal: 'true',
		  				title: 'Wybieranie typu frazy:',
		  				close: function(event, ui)
		  		        {
		  		            $(this).dialog('destroy').remove();
		  		        }});
}

function openAddArgumentDialog(event, lemma_id, dialogTitle) {
	  var formDivParent = $(event.target).parent();
	  formDivParent.append("<div id="+formDivParent.attr('id')+"-argument-form-dialog></div>");
	  var form_div = formDivParent.children("$[id$='-argument-form-dialog']").first();
	  var creatingEditingNewRealization = false;
	  if(dialogTitle.startsWith("Tworzenie rozwinięcia typu frazy")) {
		  creatingEditingNewRealization = true;
	  }
	  form_div.data('positionArguments', '')
	  		  .data('origParentElement', formDivParent)
	  		  .load(ajax_argument_form, 
	  			   {'form_data': '',
		  			'lemma_id': lemma_id,
		  			'position_arguments': '',
		  			'selected_arg': '',
		  			'phraseologic': false,
		  			'position_or_arguments_arg_choosing': true,
		  			'creating_editing_new_realization': creatingEditingNewRealization})
		  	  .dialog({ autoOpen: true, 
		  				modal: 'true',
		  				title: dialogTitle,
		  				close: function(event, ui)
		  		        {
		  		            $(this).dialog('destroy').remove();
		  		        }});
}

function edit_argument() {
	var clickedButton = $(this);
	if(typeof(window.lemma_id) == "undefined")
		openEditArgumentDialog(null, clickedButton, "Zmiana typu frazy:");
	else
		openEditArgumentDialog(window.lemma_id, clickedButton, "Zmiana typu frazy:");
}

function edit_realization() {
	var clickedButton = $(this);
	if(typeof(window.lemma_id) == "undefined")
		openEditArgumentDialog(null, clickedButton, "Zmiana rozwinięcia typu frazy:");
	else
		openEditArgumentDialog(window.lemma_id, clickedButton, "Zmiana rozwinięcia typu frazy:");
}

function openEditArgumentDialog(lemma_id, editButton, dialogTitle) {
	  var editedArgDiv = editButton.parent();
	  var argId = editedArgDiv.find('#id_value').first().val();
	  var formData = [{name: 'arg_id', value: argId}];
	  var formDivParent = editButton.closest('#subform');
	  var data = JSON.stringify(formData);
	  formDivParent.append("<div id="+formDivParent.attr('id')+"-argument-form-dialog></div>");
	  var form_div = formDivParent.children("$[id$='-argument-form-dialog']").first();
	  var creatingEditingNewRealization = false;
	  if(dialogTitle.startsWith("Zmiana rozwinięcia typu frazy")) {
		  creatingEditingNewRealization = true;
	  }
	  
	  form_div.data('positionArguments', '')
	  		  .data('origParentElement', formDivParent)
	  		  .data('editedArgDiv', editedArgDiv)
	  		  .load(ajax_argument_form, 
	  			   {'form_data': data,
		  			'lemma_id': lemma_id,
		  			'position_arguments': '',
		  			'selected_arg': '',
		  			'phraseologic': false,
		  			'position_or_arguments_arg_choosing': true,
		  			'creating_editing_new_realization': creatingEditingNewRealization})
		  	  .dialog({ autoOpen: true, 
		  				modal: 'true',
		  				title: dialogTitle,
		  				close: function(event, ui)
		  		        {
		  		            $(this).dialog('destroy').remove();
		  		        }});
}

function openAddPositionDialog(event) {
	  var formDivParent = $(event.target).parent();
	  formDivParent.append("<div id="+formDivParent.attr('id')+"-position-form-dialog></div>");
	  var form_div = formDivParent.children("$[id$='-position-form-dialog']").first();
	  
	  form_div.load(ajax_create_position_form)
	  		  .data('origParentElement', formDivParent)
	  		  .dialog({ autoOpen: true, 
						modal: 'true',
						title: 'Tworzenie pozycji:',
						close: function(event, ui)
						{
							$(this).dialog('destroy').remove();
						}});
}

function remove_position() {
	$(this).parent().remove();
}

function edit_position() {
	var clickedButton = $(this);
	openEditPositionDialog(clickedButton);
}

function openEditPositionDialog(editButton) {
	  var editedPosDiv = editButton.parent();
	  var formDivParent = editButton.closest('#subform');
	  var posId = editButton.parent().find('#id_value').first().val()
	  
	  formDivParent.append("<div id="+formDivParent.attr('id')+"-position-form-dialog></div>");
	  var form_div = formDivParent.children("$[id$='-position-form-dialog']").first();
	  form_div.load(ajax_create_position_form, 
 			   {'position_id': posId})
 			  .data('editedPosDiv', editedPosDiv)
	  		  .data('origParentElement', formDivParent)
	  		  .dialog({ autoOpen: true, 
						modal: 'true',
						title: 'Zmiana pozycji:',
						close: function(event, ui)
						{
							$(this).dialog('destroy').remove();
						}});
}

function remove_argument() {
	$(this).parent().remove();
}

function create_position_form_submit() {
    ShowProgressAnimation()
    var this_form = $(this);
    var this_dialog = this_form.closest("$[id$='-dialog']");
    var args = [];
    var category = '';
    form_data = this_form.serializeArray();
    form_data = $.map(form_data, function(elem)
    {
      if (elem.name != 'category' && 
    	  elem.name != 'value')
        return elem;
      else {
        if (elem.name == 'category')
          category = elem.value;
        else if (elem.name == 'value')
          args.push(elem.value);
      }
    });
  
    
    form_data.push({name: 'category', value: category});
    form_data.push({name: 'arguments', value: args});

    $.ajaxJSON({
      method: 'post',
      url: ajax_create_position_form_submit,
      data: {
        form_data: form_data
      },

    callback: function(result) {
  	  var dialogParent = this_dialog.data('origParentElement');
	  var positionsElement = dialogParent.children("$[id$='-positions']").first();
	  positionsElement.append("<p id='position'>"+result['text_rep']+
				"<input id='id_value' type='hidden'  name='value' value='"+result['id']+"'/>"+
		  		"<button type='button' id='edit-position'>Edytuj</button><button type='button' id='remove-position'>Usuń</button></p>");
      // jesli edytowalismy pozycje, to usun stara wersje
      if (this_dialog.dialog( "option" , "title").startsWith("Zmiana")) {
    	  var editedPosDiv = this_dialog.data('editedPosDiv');
    	  editedPosDiv.remove();
      }
      this_dialog.dialog('close');
      HideProgressAnimation();	
    },
    error_callback: function(xhr, status, error) {
      HideProgressAnimation();
      error_alert(status + ': ' + error);
    },
    bad_data_callback: function(result) {
      if (result == 'no arguments') {
        HideProgressAnimation();
        error_alert('Pozycja musi zawierać przynajmniej jeden typ frazy.');
        return false;
      }
      else
      {
        HideProgressAnimation();
        return true;
      }
    },
  });
  return false;
}

function show_argument_realizations()
{
    var this_form = $(this).closest('form');
    var this_dialog = this_form.closest("$[id$='-dialog']");
    form_data = this_form.serializeArray();
    form_data = prepareArgFormData(this_form, form_data, -1);
    form_data.push({name: 'manage', value: false});
    data = JSON.stringify(form_data);
    this_form.parent().children('#realizations').first().load(ajax_show_realizations, {'form_data' : data});
    this_dialog.dialog( "option", "height", 400 );
    return false;
}