Changeset c6b84df for resources/assets


Ignore:
Timestamp:
10/21/21 23:45:59 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
4b7e2d3
Parents:
6b95845
Message:

added fileTypes controller, notifications, excel export, edited views

File:
1 edited

Legend:

Unmodified
Added
Removed
  • resources/assets/js/custom.js

    r6b95845 rc6b84df  
    77    });
    88
    9     $(".edit_document_deparment").change(function() {
     9    $(".edit_folder_deparment").change(function() {
    1010        var archId = $("input[name='arch_id']");
    1111        var currentText = archId.val().split("/")[1];
    1212        var selectedId = $(this).find('option:selected').data('dept-code');
     13
    1314        if(currentText)
    1415            archId.val(selectedId + "/" + currentText);
    1516        else
     17            archId.val(selectedId + "/");
     18    });
     19
     20    $(".new_folder_deparment").change(function() {
     21        var archId = $("input[name='arch_id']");
     22        var selectedId = $(this).find('option:selected').data('dept-code');
     23
    1624            archId.val(selectedId + "/");
    1725    });
     
    99107        window.location.href = (window.location.href).replace('#', '');
    100108    });
     109
     110    function notifications() {
     111
     112        var url = "/dashboard/get-notifications";
     113        var _token = $("meta[name='csrf-token']").attr("content");
     114
     115        $.ajax({
     116            url: url,
     117            type: "post",
     118            dataType: "json",
     119            data: {
     120                _token : _token,
     121            },
     122            success: function(response) {
     123
     124                $(".dropdown-notifications a:not(:last)").remove();
     125                $(".dropdown-notifications-unread .nav-unread").hide();
     126
     127                var l = response.length;
     128
     129                if(hasNew(response)) {
     130                    $(".dropdown-notifications .unreadNotificationsInfo").hide();
     131                    $(".dropdown-notifications-unread .nav-unread").show();
     132                }
     133
     134                if(l == 0) {
     135                    $(".dropdown-notifications .unreadNotificationsInfo").show();
     136                }
     137
     138                if(l > 0) {
     139                    $(".dropdown-notifications .unreadNotificationsInfo").hide();
     140                }
     141
     142                for(var i=0; i<l; i++) {
     143
     144                    var style = response[i].isRead ? "" : "background: #efefef; color: black;";
     145
     146                    var notificationItem = `
     147                                                <a href="` + response[i].url + `" class="dropdown-item d-flex" style="` + style + `;">
     148                                                        <div>
     149                                                                ` + response[i].message + `
     150                                                                <div class="small text-muted">` + response[i].ago + `</div>
     151                                                        </div>
     152                                                </a>`;
     153
     154                    $(".dropdown-notifications").prepend(notificationItem);
     155                }
     156            },
     157            error: function(response) {
     158                console.log(response);
     159            }
     160        });
     161    }
    101162
    102163    $(document).on('click', '#btn-layout-builder', function () {
Note: See TracChangeset for help on using the changeset viewer.