Blame view

dictionary/static/js/semantics_coupling.js 2.98 KB
Bartłomiej Nitoń authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function semanticsAssignedAlert() {
	error_alert('Działaj rozważnie, element jest wykorzystywany w ramach semantycznych.');
}

function semanticsAssignedExampleAlert() {
	error_alert('Działaj rozważnie, przykład jest wykorzystywany w ramach semantycznych.');
}

function semanticsChanged() {
	if(window.frames_operations.length > 0) {
		return true;
	}
	return false;
}

function checkIfSemChangedAndAlert() {
	if(semanticsChanged()) {
		alert('Przed dokonaniem zmiany zapisz semantykę.');
		return true;
	}
	return false;
}
Bartłomiej Nitoń authored
24
25
function clearSemanticConnections(type, schemaElement) {
	if(type == 'frame') {
Bartłomiej Nitoń authored
26
27
		clearSchemaConnections(schemaElement);
	}
Bartłomiej Nitoń authored
28
	else if(type == 'position') {
Bartłomiej Nitoń authored
29
30
		clearPositionConnections(schemaElement);
	}
Bartłomiej Nitoń authored
31
	else if(type == 'argument') {
Bartłomiej Nitoń authored
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
		clearPhraseTypeConnections(schemaElement);
	}
}

function clearSchemaConnections(schema) {
	for(var i=0; i<schema.positions.length; i++) {
		clearPositionConnections(schema.positions[i]);
	}
}

function clearPositionConnections(position) {
	for(var i=0; i<position.arguments.length; i++) {
		clearPhraseTypeConnections(position.arguments[i]);
	}
}

function clearPhraseTypeConnections(phraseType) {
Bartłomiej Nitoń authored
49
	phraseType.connections = [];
Bartłomiej Nitoń authored
50
}
Bartłomiej Nitoń authored
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

function updateSchemataConnections() {
	$('#new-frame-tables').empty();
	$("#show_nkjp_table").empty();
    $.ajaxJSON({
        method: 'get',
        url: ajax_get_schemata,
        data: {
          lemma_id: window.lemma_id
        },

        callback: function(result) {
    	  window.schemas = serializedObjToObj(result['schemata']);
    	  resetLemmaVersions();
    	  var frame_class = 'InactiveFrameTable';
    	  if(result['can_modify']) {
    	      frame_class = 'ActiveFrameTable';
    	  }
    	  draw_filtered_frames(window.schemas, 'new-frame-tables', 'new-frame-table', 
    			  			   'frame_filter', window.nkjp_examples, frame_class, 
    			  			   window.lemma_entry, window.lemma_entry);
        },
        error_callback: function(xhr, status, error) {
          error_alert(status + ': ' + error);
        },
        bad_data_callback: function(result) {
          return true;
        },
    });
}

function updateExamplesConnections() {
	$('#new-frame-tables').empty();
	$("#show_nkjp_table").empty();
    $.ajaxJSON({
        method: 'get',
        url: ajax_get_examples,
        data: {
          lemma_id: window.lemma_id
        },

        callback: function(result) {
    	  window.nkjp_examples = serializedNkjpToObj(result['examples']);
    	  resetLemmaVersions();
    	  var frame_class = 'InactiveFrameTable';
    	  if(result['can_modify']) {
    	      frame_class = 'ActiveFrameTable';
    	  }
    	  draw_filtered_frames(window.schemas, 'new-frame-tables', 'new-frame-table', 
    			  			   'frame_filter', window.nkjp_examples, frame_class, 
    			  			   window.lemma_entry, window.lemma_entry);
        },
        error_callback: function(xhr, status, error) {
          error_alert(status + ': ' + error);
        },
        bad_data_callback: function(result) {
          return true;
        },
    });
}