change table struct
This commit is contained in:
parent
4cb505276f
commit
cf7c57228a
@ -191,7 +191,7 @@ class FormController extends Controller
|
||||
public function update($id)
|
||||
{
|
||||
try {
|
||||
$input = request()->only('name', 'name_ru', 'name_est', 'description', 'slug');
|
||||
$input = request()->only('name', 'name_ru', 'name_est', 'description', 'description_ru', 'description_est', 'slug');
|
||||
$form_data = [
|
||||
'form' => request()->input('form'),
|
||||
'emailConfig' => request()->input('email_config'),
|
||||
@ -214,6 +214,8 @@ class FormController extends Controller
|
||||
$form->name_est = $input['name_est'];
|
||||
$form->slug = $input['slug'];
|
||||
$form->description = $input['description'];
|
||||
$form->description_ru = $input['description_ru'];
|
||||
$form->description_est = $input['description_est'];
|
||||
$form->schema = $input['schema'];
|
||||
$form->is_template = $is_template;
|
||||
$form->mailchimp_details = request()->input('mailchimp_details');
|
||||
|
@ -183,7 +183,7 @@ class HomeController extends Controller
|
||||
if (request()->ajax()) {
|
||||
$user_id = request()->user()->id;
|
||||
|
||||
$forms = Form::select('name', 'description', 'id', 'slug', 'is_global_template')
|
||||
$forms = Form::select('name', 'name_est', 'name_ru', 'description', 'description_ru', 'description_est', 'id', 'slug', 'is_global_template')
|
||||
->where(function ($query) use ($user_id) {
|
||||
$query->where('is_template', 1)
|
||||
->where('created_by', $user_id)
|
||||
|
@ -16,6 +16,8 @@ return new class extends Migration
|
||||
Schema::table('forms', function (Blueprint $table) {
|
||||
$table->string('name_ru')->after('name')->nullable();
|
||||
$table->string('name_est')->after('name_ru')->nullable();
|
||||
$table->string('description_ru')->after('description')->nullable();
|
||||
$table->string('description_est')->after('description_ru')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -687,4 +687,6 @@ return [
|
||||
'options_ru' => 'Options in Ru',
|
||||
'form_name_est' => 'Form Name est',
|
||||
'form_name_ru' => 'Form Name ru',
|
||||
'form_description_est' => 'Form Description est',
|
||||
'form_description_ru' => 'Form Description ru',
|
||||
];
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@
|
||||
@include('layouts/partials/status')
|
||||
</div>
|
||||
</div>
|
||||
@if(auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) || auth()->user()->can_create_form)
|
||||
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) || auth()->user()->can_create_form)
|
||||
<div class="row mb-5">
|
||||
<div class="col-12 col-sm-6 col-md-3">
|
||||
<div class="info-box">
|
||||
@ -16,20 +16,19 @@
|
||||
|
||||
<div class="info-box-content">
|
||||
<span class="info-box-text">@lang('messages.forms')</span>
|
||||
<span class="info-box-number">{{$form_count}}</span>
|
||||
<span class="info-box-number">{{ $form_count }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if(!auth()->user()->hasRole(\App\Enums\User\RoleEnum::ADMIN->value))
|
||||
@if (!auth()->user()->hasRole(\App\Enums\User\RoleEnum::ADMIN->value))
|
||||
<div class="col-12 col-sm-6 col-md-3">
|
||||
<div class="info-box">
|
||||
<span class="info-box-icon bg-danger elevation-1"><i
|
||||
class="fas fa-align-justify"></i></span>
|
||||
<span class="info-box-icon bg-danger elevation-1"><i class="fas fa-align-justify"></i></span>
|
||||
|
||||
<div class="info-box-content">
|
||||
<span class="info-box-text">@lang('messages.templates')</span>
|
||||
<span class="info-box-number">{{$template_count}}</span>
|
||||
<span class="info-box-number">{{ $template_count }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -41,15 +40,14 @@
|
||||
|
||||
<div class="info-box-content">
|
||||
<span class="info-box-text">@lang('messages.submissions')</span>
|
||||
<span class="info-box-number">{{$submission_count}}</span>
|
||||
<span class="info-box-number">{{ $submission_count }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-sm-6 col-md-3">
|
||||
<button type="button"
|
||||
data-href="{{action([\App\Http\Controllers\FormController::class, 'create'])}}"
|
||||
class="btn btn-primary float-right col-md-9 createForm mt-3">
|
||||
<button type="button" data-href="{{ action([\App\Http\Controllers\FormController::class, 'create']) }}"
|
||||
class="btn btn-primary float-right col-md-9 createForm mt-3">
|
||||
<i class="fas fa-plus" aria-hidden="true"></i> @lang('messages.new_form')</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -59,84 +57,76 @@
|
||||
<div class="card card-primary card-outline card-outline-tabs">
|
||||
<div class="card-header p-0 border-bottom-0">
|
||||
<ul class="nav nav-tabs
|
||||
@if(auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) || auth()->user()->can_create_form)
|
||||
nav-justified
|
||||
@endif"
|
||||
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) || auth()->user()->can_create_form) nav-justified @endif"
|
||||
id="custom-tabs-four-tab" role="tablist">
|
||||
@if(auth()->user()->hasRole([\App\Enums\User\RoleEnum::SUPERVISOR->value]) || auth()->user()->can_create_form)
|
||||
@if (auth()->user()->hasRole([\App\Enums\User\RoleEnum::SUPERVISOR->value]) || auth()->user()->can_create_form)
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" id="custome-tabs-all-forms" data-toggle="pill"
|
||||
href="#custome-tabs-forms" role="tab" aria-controls="custome-tabs-forms"
|
||||
aria-selected="true">
|
||||
href="#custome-tabs-forms" role="tab" aria-controls="custome-tabs-forms"
|
||||
aria-selected="true">
|
||||
<i class="fas fa-file-alt" aria-hidden="true"></i> @lang('messages.all_forms')
|
||||
</a>
|
||||
</li>
|
||||
@if(!auth()->user()->hasRole(\App\Enums\User\RoleEnum::ADMIN->value))
|
||||
@if (!auth()->user()->hasRole(\App\Enums\User\RoleEnum::ADMIN->value))
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" id="custome-tabs-all-templates" data-toggle="pill"
|
||||
href="#custome-tabs-templates" role="tab"
|
||||
aria-controls="custome-tabs-templates">
|
||||
<i class="fas fa-align-justify"
|
||||
aria-hidden="true"></i> @lang('messages.all_templates')
|
||||
href="#custome-tabs-templates" role="tab"
|
||||
aria-controls="custome-tabs-templates">
|
||||
<i class="fas fa-align-justify" aria-hidden="true"></i> @lang('messages.all_templates')
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
@endif
|
||||
<li class="nav-item">
|
||||
<a class="nav-link
|
||||
@if(!auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) && !auth()->user()->can_create_form)
|
||||
active
|
||||
@endif
|
||||
" id="custome-tabs-shared-forms" data-toggle="pill"
|
||||
href="#custome-tabs-shared-forms-assigned" role="tab"
|
||||
aria-controls="custome-tabs-shared-forms-assigned"
|
||||
@if(!auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) && !auth()->user()->can_create_form)
|
||||
aria-selected="true"
|
||||
@endif>
|
||||
<i class="fas fa-file-alt"
|
||||
aria-hidden="true"></i> @lang('messages.assigned_forms')
|
||||
@if (!auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) && !auth()->user()->can_create_form) active @endif
|
||||
"
|
||||
id="custome-tabs-shared-forms" data-toggle="pill"
|
||||
href="#custome-tabs-shared-forms-assigned" role="tab"
|
||||
aria-controls="custome-tabs-shared-forms-assigned"
|
||||
@if (!auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) && !auth()->user()->can_create_form) aria-selected="true" @endif>
|
||||
<i class="fas fa-file-alt" aria-hidden="true"></i> @lang('messages.assigned_forms')
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="tab-content" id="custom-tabs-four-tabContent">
|
||||
@if(auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) || auth()->user()->can_create_form)
|
||||
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) || auth()->user()->can_create_form)
|
||||
<div class="tab-pane fade active show" id="custome-tabs-forms" role="tabpanel"
|
||||
aria-labelledby="custome-tabs-all-forms">
|
||||
aria-labelledby="custome-tabs-all-forms">
|
||||
<div class="table-responsive">
|
||||
<table class="table" id="form_table" style="width: 100%;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>@lang('messages.name')</th>
|
||||
<th>@lang('messages.description')</th>
|
||||
<th>@lang('messages.created_at')</th>
|
||||
<th>@lang('messages.submissions')</th>
|
||||
<th>@lang('messages.action')</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>@lang('messages.description')</th>
|
||||
<th>@lang('messages.name')</th>
|
||||
<th>@lang('messages.created_at')</th>
|
||||
<th>@lang('messages.submissions')</th>
|
||||
<th>@lang('messages.action')</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="custome-tabs-templates" role="tabpanel"
|
||||
aria-labelledby="custome-tabs-all-templates">
|
||||
aria-labelledby="custome-tabs-all-templates">
|
||||
<div class="table-responsive">
|
||||
<table class="table" id="template_table" style="width: 100%;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>@lang('messages.name')</th>
|
||||
<th>@lang('messages.description')</th>
|
||||
@if(auth()->user()->can('superadmin'))
|
||||
<th>
|
||||
@lang('messages.is_global_template')
|
||||
<i class="fas fa-info-circle"
|
||||
data-toggle="tooltip"
|
||||
title="@lang('messages.is_global_template_tooltip')"></i>
|
||||
</th>
|
||||
@endif
|
||||
<th>@lang('messages.action')</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>@lang('messages.description')</th>
|
||||
<th>@lang('messages.name')</th>
|
||||
@if (auth()->user()->can('superadmin'))
|
||||
<th>
|
||||
@lang('messages.is_global_template')
|
||||
<i class="fas fa-info-circle" data-toggle="tooltip"
|
||||
title="@lang('messages.is_global_template_tooltip')"></i>
|
||||
</th>
|
||||
@endif
|
||||
<th>@lang('messages.action')</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
@ -144,22 +134,21 @@
|
||||
</div>
|
||||
@endif
|
||||
<div class="tab-pane fade
|
||||
@if(!auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) || !auth()->user()->can_create_form)
|
||||
active show
|
||||
@endif
|
||||
" id="custome-tabs-shared-forms-assigned" role="tabpanel"
|
||||
aria-labelledby="custome-tabs-shared-forms">
|
||||
@if (!auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) || !auth()->user()->can_create_form) active show @endif
|
||||
"
|
||||
id="custome-tabs-shared-forms-assigned" role="tabpanel"
|
||||
aria-labelledby="custome-tabs-shared-forms">
|
||||
<div class="table-responsive">
|
||||
<table class="table" id="assigned_form_table" style="width: 100%;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>@lang('messages.name')</th>
|
||||
<th>@lang('messages.description')</th>
|
||||
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value))
|
||||
<th>@lang('messages.created_by')</th>
|
||||
@endif
|
||||
<th>@lang('messages.action')</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>@lang('messages.name')</th>
|
||||
<th>@lang('messages.description')</th>
|
||||
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value))
|
||||
<th>@lang('messages.created_by')</th>
|
||||
@endif
|
||||
<th>@lang('messages.action')</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
@ -177,16 +166,21 @@
|
||||
|
||||
@section('footer')
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
var lang = `{{session()->get('locale')}}`
|
||||
$(document).ready(function() {
|
||||
var lang = `{{ session()->get('locale') }}`
|
||||
var titleColName = 'name';
|
||||
console.log(lang);
|
||||
|
||||
if (lang === 'est') {
|
||||
titleColName = 'name_est'
|
||||
} else if (lang === 'ru') {
|
||||
titleColName = 'name_ru'
|
||||
}
|
||||
if (lang === 'est') {
|
||||
titleColName = 'name_est'
|
||||
} else if (lang === 'ru') {
|
||||
titleColName = 'name_ru'
|
||||
}
|
||||
|
||||
var descColName = 'description';
|
||||
if (lang === 'est') {
|
||||
descColName = 'description_est'
|
||||
} else if (lang === 'ru') {
|
||||
descColName = 'description_ru'
|
||||
}
|
||||
|
||||
// form dataTable
|
||||
var form_table = $('#form_table').DataTable({
|
||||
@ -196,28 +190,62 @@
|
||||
buttons: [],
|
||||
dom: 'lfrtip',
|
||||
fixedHeader: false,
|
||||
aaSorting: [[2, 'desc']],
|
||||
"columnDefs": [
|
||||
{"width": "22%", "targets": 0},
|
||||
{"width": "40%", "targets": 1},
|
||||
{"width": "15%", "targets": 2},
|
||||
{"width": "3%", "targets": 3},
|
||||
{"width": "20%", "targets": 4}
|
||||
aaSorting: [
|
||||
[1, 'desc']
|
||||
],
|
||||
columns: [
|
||||
"columnDefs": [{
|
||||
"width": "22%",
|
||||
"targets": 0
|
||||
},
|
||||
{
|
||||
data: titleColName,
|
||||
name: titleColName,
|
||||
createdCell: function (td, cellData, rowData, row, col) {
|
||||
"width": "40%",
|
||||
"targets": 1
|
||||
},
|
||||
{
|
||||
"width": "15%",
|
||||
"targets": 2
|
||||
},
|
||||
{
|
||||
"width": "3%",
|
||||
"targets": 3
|
||||
},
|
||||
{
|
||||
"width": "20%",
|
||||
"targets": 4
|
||||
}
|
||||
],
|
||||
columns: [{
|
||||
data: descColName,
|
||||
name: descColName,
|
||||
createdCell: function(td, cellData, rowData, row, col) {
|
||||
if (td.innerHTML.length === 0) {
|
||||
td.innerHTML = rowData.name
|
||||
}
|
||||
},
|
||||
},
|
||||
{data: 'description', name: 'description'},
|
||||
{data: 'created_at', name: 'created_at'},
|
||||
{data: 'data_count', name: 'data_count', searchable: false},
|
||||
{data: 'action', name: 'action', sortable: false}
|
||||
{
|
||||
data: titleColName,
|
||||
name: titleColName,
|
||||
createdCell: function(td, cellData, rowData, row, col) {
|
||||
if (td.innerHTML.length === 0) {
|
||||
td.innerHTML = rowData.name
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
data: 'created_at',
|
||||
name: 'created_at'
|
||||
},
|
||||
{
|
||||
data: 'data_count',
|
||||
name: 'data_count',
|
||||
searchable: false
|
||||
},
|
||||
{
|
||||
data: 'action',
|
||||
name: 'action',
|
||||
sortable: false
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
@ -229,22 +257,41 @@
|
||||
buttons: [],
|
||||
dom: 'lfrtip',
|
||||
fixedHeader: false,
|
||||
columns: [
|
||||
{data: 'name', name: 'name'},
|
||||
{data: 'description', name: 'description'},
|
||||
@if(auth()->user()->can('superadmin'))
|
||||
{
|
||||
data: 'is_global_template', name: 'is_global_template', sortable: false, searchable: false
|
||||
columns: [{
|
||||
data: descColName,
|
||||
name: descColName,
|
||||
createdCell: function(td, cellData, rowData, row, col) {
|
||||
if (td.innerHTML.length === 0) {
|
||||
td.innerHTML = rowData.name
|
||||
}
|
||||
},
|
||||
},
|
||||
@endif
|
||||
{
|
||||
data: 'action', name: 'action', sortable: false
|
||||
data: titleColName,
|
||||
name: titleColName,
|
||||
createdCell: function(td, cellData, rowData, row, col) {
|
||||
if (td.innerHTML.length === 0) {
|
||||
td.innerHTML = rowData.name
|
||||
}
|
||||
},
|
||||
},
|
||||
@if (auth()->user()->can('superadmin'))
|
||||
{
|
||||
data: 'is_global_template',
|
||||
name: 'is_global_template',
|
||||
sortable: false,
|
||||
searchable: false
|
||||
},
|
||||
@endif {
|
||||
data: 'action',
|
||||
name: 'action',
|
||||
sortable: false
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
//delete form
|
||||
$(document).on('click', '.delete_form', function () {
|
||||
$(document).on('click', '.delete_form', function() {
|
||||
var url = $(this).data("href");
|
||||
var result = confirm('Are You Sure?');
|
||||
if (result == true) {
|
||||
@ -252,7 +299,7 @@
|
||||
method: "DELETE",
|
||||
url: url,
|
||||
dataType: "json",
|
||||
success: function (result) {
|
||||
success: function(result) {
|
||||
if (result.success == true) {
|
||||
toastr.success(result.msg);
|
||||
form_table.ajax.reload();
|
||||
@ -265,7 +312,7 @@
|
||||
});
|
||||
|
||||
//delete template
|
||||
$(document).on('click', '.delete_template', function () {
|
||||
$(document).on('click', '.delete_template', function() {
|
||||
var url = $(this).data("href");
|
||||
var result = confirm('Are You Sure?');
|
||||
if (result == true) {
|
||||
@ -273,7 +320,7 @@
|
||||
method: "DELETE",
|
||||
url: url,
|
||||
dataType: "json",
|
||||
success: function (result) {
|
||||
success: function(result) {
|
||||
if (result.success == true) {
|
||||
toastr.success(result.msg);
|
||||
template_table.ajax.reload();
|
||||
@ -286,39 +333,39 @@
|
||||
});
|
||||
|
||||
// create form
|
||||
$(document).on('click', '.createForm', function () {
|
||||
$(document).on('click', '.createForm', function() {
|
||||
var url = $(this).data('href');
|
||||
$.ajax({
|
||||
method: "GET",
|
||||
url: url,
|
||||
dataType: "html",
|
||||
success: function (response) {
|
||||
success: function(response) {
|
||||
$("#modal_div").html(response).modal("show");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// create widget
|
||||
$(document).on('click', '.generate_widget', function () {
|
||||
$(document).on('click', '.generate_widget', function() {
|
||||
var url = $(this).data('href');
|
||||
$.ajax({
|
||||
method: "GET",
|
||||
url: url,
|
||||
dataType: "html",
|
||||
success: function (response) {
|
||||
success: function(response) {
|
||||
$("#modal_div").html(response).modal("show");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
//copy form
|
||||
$(document).on('click', '.copy_form', function () {
|
||||
$(document).on('click', '.copy_form', function() {
|
||||
var url = $(this).data('href');
|
||||
$.ajax({
|
||||
method: "GET",
|
||||
url: url,
|
||||
dataType: "html",
|
||||
success: function (response) {
|
||||
success: function(response) {
|
||||
$("#modal_div").html(response).modal("show");
|
||||
}
|
||||
});
|
||||
@ -332,49 +379,70 @@
|
||||
buttons: [],
|
||||
dom: 'lfrtip',
|
||||
fixedHeader: false,
|
||||
aaSorting: [[0, 'desc']],
|
||||
"columnDefs": [
|
||||
{"width": "25%", "targets": 0},
|
||||
{"width": "40%", "targets": 1},
|
||||
@if(auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value))
|
||||
{
|
||||
"width": "15%", "targets": 2
|
||||
},
|
||||
@endif
|
||||
{
|
||||
"width": "20%",
|
||||
"targets": @php echo auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value) ? 3 : 2 @endphp }
|
||||
aaSorting: [
|
||||
[0, 'desc']
|
||||
],
|
||||
columns: [
|
||||
{data: 'name', name: 'forms.name'},
|
||||
{data: 'description', name: 'forms.description'},
|
||||
@if(auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value))
|
||||
{
|
||||
data: 'created_by', name: 'forms.created_by'
|
||||
"columnDefs": [{
|
||||
"width": "25%",
|
||||
"targets": 0
|
||||
},
|
||||
@endif
|
||||
{
|
||||
data: 'action', name: 'action', sortable: false
|
||||
"width": "40%",
|
||||
"targets": 1
|
||||
},
|
||||
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value))
|
||||
{
|
||||
"width": "15%",
|
||||
"targets": 2
|
||||
},
|
||||
@endif {
|
||||
"width": "20%",
|
||||
"targets": @php
|
||||
echo auth()
|
||||
->user()
|
||||
->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value)
|
||||
? 3
|
||||
: 2;
|
||||
@endphp
|
||||
}
|
||||
],
|
||||
columns: [{
|
||||
data: 'name',
|
||||
name: 'forms.name'
|
||||
},
|
||||
{
|
||||
data: 'description',
|
||||
name: 'forms.description'
|
||||
},
|
||||
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value))
|
||||
{
|
||||
data: 'created_by',
|
||||
name: 'forms.created_by'
|
||||
},
|
||||
@endif {
|
||||
data: 'action',
|
||||
name: 'action',
|
||||
sortable: false
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
//form collaborate
|
||||
$(document).on('click', '.collab_btn', function () {
|
||||
$(document).on('click', '.collab_btn', function() {
|
||||
var url = $(this).data('href');
|
||||
$.ajax({
|
||||
method: "GET",
|
||||
url: url,
|
||||
dataType: "html",
|
||||
success: function (response) {
|
||||
success: function(response) {
|
||||
$("#collab_modal").html(response).modal("show");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$("#collab_modal").on('shown.bs.modal', function () {
|
||||
$("#collab_modal").on('shown.bs.modal', function() {
|
||||
if ($("#form_design").length) {
|
||||
$(document).on('change', '#form_design', function () {
|
||||
$(document).on('change', '#form_design', function() {
|
||||
if ($("#form_design").is(":checked")) {
|
||||
$("#form_view").attr('checked', true);
|
||||
} else {
|
||||
@ -384,7 +452,7 @@
|
||||
}
|
||||
});
|
||||
|
||||
$(document).on('submit', 'form#collaborate_form', function (e) {
|
||||
$(document).on('submit', 'form#collaborate_form', function(e) {
|
||||
e.preventDefault();
|
||||
var data = $("form#collaborate_form").serialize();
|
||||
var url = $("form#collaborate_form").attr('action');
|
||||
@ -395,7 +463,7 @@
|
||||
url: url,
|
||||
dataType: "json",
|
||||
data: data,
|
||||
success: function (response) {
|
||||
success: function(response) {
|
||||
ladda.stop();
|
||||
if (response.success) {
|
||||
$("#collab_modal").modal('hide');
|
||||
@ -407,7 +475,7 @@
|
||||
});
|
||||
});
|
||||
|
||||
$('a[data-toggle="pill"]').on('shown.bs.tab', function (e) {
|
||||
$('a[data-toggle="pill"]').on('shown.bs.tab', function(e) {
|
||||
var target = $(e.target).attr('href');
|
||||
if (target == '#custome-tabs-forms') {
|
||||
if (typeof form_table != 'undefined') {
|
||||
@ -424,25 +492,25 @@
|
||||
}
|
||||
});
|
||||
|
||||
@if(auth()->user()->can('superadmin'))
|
||||
$(document).on('click', '.toggle_global_template', function () {
|
||||
$.ajax({
|
||||
method: "POST",
|
||||
url: "{{route('toggle.global.template')}}",
|
||||
dataType: "json",
|
||||
data: {
|
||||
is_checked: $(this).is(":checked") ? 1 : 0,
|
||||
form_id: $(this).data("form_id"),
|
||||
},
|
||||
success: function (response) {
|
||||
if (response.success) {
|
||||
template_table.ajax.reload();
|
||||
} else {
|
||||
toastr.error(response.msg);
|
||||
@if (auth()->user()->can('superadmin'))
|
||||
$(document).on('click', '.toggle_global_template', function() {
|
||||
$.ajax({
|
||||
method: "POST",
|
||||
url: "{{ route('toggle.global.template') }}",
|
||||
dataType: "json",
|
||||
data: {
|
||||
is_checked: $(this).is(":checked") ? 1 : 0,
|
||||
form_id: $(this).data("form_id"),
|
||||
},
|
||||
success: function(response) {
|
||||
if (response.success) {
|
||||
template_table.ajax.reload();
|
||||
} else {
|
||||
toastr.error(response.msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
@endif
|
||||
});
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user