]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/event_edit.js
Merge pull request #3805 from annando/nodeinfo-fix
[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         if (typeof acl !== "undefined") {
58                 var eventPerms = document.getElementById('event-edit-form');
59
60                 acl = new ACL(
61                         baseurl + "/acl",
62                         [
63                                 eventPerms.dataset.allow_cid,
64                                 eventPerms.dataset.allow_gid,
65                                 eventPerms.dataset.deny_cid,
66                                 eventPerms.dataset.deny_gid
67                         ]
68                 );
69         }
70
71 });
72
73 // Load the html of the actual event and incect the output to the
74 // event-edit section.
75 function doEventPreview() {
76         $('#event-edit-preview').val(1);
77         $.post('events',$('#event-edit-form').serialize(), function(data) {
78                 $("#event-preview").append(data);
79         });
80         $('#event-edit-preview').val(0);
81 }
82
83
84 // The following functions show/hide the specific event-edit content 
85 // in dependence of the selected nav.
86 function eventAclActive() {
87         $("#event-edit-wrapper, #event-preview, #event-desc-wrapper").hide();
88         $("#event-acl-wrapper").show();
89 }
90
91
92 function eventPreviewActive() {
93         $("#event-acl-wrapper, #event-edit-wrapper, #event-desc-wrapper").hide();
94         $("#event-preview").show();
95         doEventPreview();
96 }
97
98 function eventEditActive() {
99         $("#event-acl-wrapper, #event-preview, #event-desc-wrapper").hide();
100         $("#event-edit-wrapper").show();
101
102         // Make sure jot text does have really the active class (we do this because there are some
103         // other events which trigger jot text.
104         toggleEventNav($("#event-edit-lnk"));
105 }
106
107 function eventDescActive() {
108         $("#event-edit-wrapper, #event-preview, #event-acl-wrapper").hide();
109         $("#event-desc-wrapper").show();
110 }
111
112 // Give the active "event-nav" list element the class "active".
113 function toggleEventNav (elm) {
114         // Select all li of #event-nav and remove the active class.
115         $(elm).closest("#event-nav").children("li").removeClass("active");
116         // Add the active class to the parent of the link which was selected.
117         $(elm).parent("li").addClass("active");
118 }
119
120
121
122 // Disable the input for the finish date if it is not available.
123 function enableDisableFinishDate() {
124         if( $('#id_nofinish').is(':checked'))
125                 $('#id_finish_text').prop("disabled", true);
126         else
127                 $('#id_finish_text').prop("disabled", false);
128 }