]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/event_edit.js
Avoid memory issue in exception
[friendica.git] / view / theme / frio / js / event_edit.js
1 $(document).ready(function() {
2         // Go to the permissions tab if the checkbox is checked.
3         $('body').on("click", "#id_share", function() {
4                 if ($('#id_share').is(':checked') && !( $('#id_share').attr("disabled"))) {
5                         $('#acl-wrapper').show();
6                         $("a#event-perms-lnk").parent("li").show();
7                         toggleEventNav("a#event-perms-lnk");
8                         eventAclActive();
9                 }
10                 else {
11                         $('#acl-wrapper').hide();
12                         $("a#event-perms-lnk").parent("li").hide();
13                 }
14         }).trigger('change');
15
16         // Disable the finish time input if the user disable it.
17         $('body').on("change", "#id_nofinish", function() {
18                 enableDisableFinishDate()
19         }).trigger('change');
20
21         // JS for the permission section.
22         $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
23                 var selstr;
24                 $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
25                         selstr = $(this).text();
26                         $('#jot-public').hide();
27                 });
28                 if (selstr == null) {
29                         $('#jot-public').show();
30                 }
31
32         }).trigger('change');
33
34         // Change the event nav menu.tabs on click.
35         $("body").on("click", "#event-nav > li > a", function(e){
36                 e.preventDefault();
37                 toggleEventNav(this);
38         });
39
40         // This is experimental. We maybe can make use of it to inject
41         // some js code while the event modal opens.
42         //$('body').on('show.bs.modal', function () {
43         //      enableDisableFinishDate();
44         //});
45
46         // Clear some elements (e.g. the event-preview container) when
47         // selecting a event nav link so it don't appear more than once.
48         $('body').on("click", "#event-nav a", function(e) {
49                 $("#event-preview").empty();
50                 e.preventDefault();
51         });
52
53         // Construct a new ACL. We need this everytime the 'event-edit-form' is loaded
54         // without page reloading (e.g. closing an old modal and open a new modal).
55         // Otherwise we wouldn't get the ACL data.
56         /// @todo: Try to implement some kind of ACL reloading in acl.js.
57
58         var eventPerms = document.getElementById('event-edit-form');
59
60         acl = new ACL(
61                 baseurl + "/acl",
62                 [
63                         JSON.parse(eventPerms.dataset.allow_cid),
64                         JSON.parse(eventPerms.dataset.allow_gid),
65                         JSON.parse(eventPerms.dataset.deny_cid),
66                         JSON.parse(eventPerms.dataset.deny_gid)
67                 ]
68         );
69         acl.get(0, 100);
70 });
71
72 // Load the html of the actual event and incect the output to the
73 // event-edit section.
74 function doEventPreview() {
75         $('#event-edit-preview').val(1);
76         $.post('events',$('#event-edit-form').serialize(), function(data) {
77                 $("#event-preview").append(data);
78         });
79         $('#event-edit-preview').val(0);
80 }
81
82
83 // The following functions show/hide the specific event-edit content
84 // in dependence of the selected nav.
85 function eventAclActive() {
86         $("#event-edit-wrapper, #event-preview, #event-desc-wrapper").hide();
87         $("#event-acl-wrapper").show();
88 }
89
90
91 function eventPreviewActive() {
92         $("#event-acl-wrapper, #event-edit-wrapper, #event-desc-wrapper").hide();
93         $("#event-preview").show();
94         doEventPreview();
95 }
96
97 function eventEditActive() {
98         $("#event-acl-wrapper, #event-preview, #event-desc-wrapper").hide();
99         $("#event-edit-wrapper").show();
100
101         // Make sure jot text does have really the active class (we do this because there are some
102         // other events which trigger jot text.
103         toggleEventNav($("#event-edit-lnk"));
104 }
105
106 function eventDescActive() {
107         $("#event-edit-wrapper, #event-preview, #event-acl-wrapper").hide();
108         $("#event-desc-wrapper").show();
109 }
110
111 // Give the active "event-nav" list element the class "active".
112 function toggleEventNav (elm) {
113         // Select all li of #event-nav and remove the active class.
114         $(elm).closest("#event-nav").children("li").removeClass("active");
115         // Add the active class to the parent of the link which was selected.
116         $(elm).parent("li").addClass("active");
117 }
118
119
120
121 // Disable the input for the finish date if it is not available.
122 function enableDisableFinishDate() {
123         if( $('#id_nofinish').is(':checked'))
124                 $('#id_finish_text').prop("disabled", true);
125         else
126                 $('#id_finish_text').prop("disabled", false);
127 }