$(document).ready(function () {
    if ($("#aspirasi").length > 0) {
        tinymce.init({
            selector: "textarea#aspirasi",
            theme: "modern",
            height: 300,
            plugins: [
                "link image",
                "fullscreen media nonbreaking",
            ],
            toolbar: false,
            menubar: false,
            branding: false,
            statusbar: false,
        });
    }
});

$(".kirimlaporan").click(function (e) {
    e.preventDefault();
    tinymce.triggerSave(true, true);
    var data = new FormData($("#form")[0]);
    $.ajax({
        type: "post",
        url: BASE_URL + "/?m=ajukan_aspirasi&f=update",
        data: data,
        processData: false,
        contentType: false,
        success: function (response) {
            Swal.close()
            if (response.success) {
                Swal.fire({
                    html: `<img class="w-50" src="${BASE_URL}/views/assets/img_char/1619842265574.png"></img>
                            <h1 class="m-0">Terima kasih!</h1>
                            <p>Aspirasi Anda Telah Kami Terima.</p>`,
                    allowOutsideClick: false,
                    showConfirmButton: false,
                    timer: 5000
                })
                setTimeout(function () {
                    location.href = BASE_URL + "/?m=landing"
                }, 5200);
            } else {
                notifikasi_gagal(response.message);
            }
        },
        error: function (response) {
            Swal.close()
            notifikasi_gagal(response.message);
        }
    });
});