Removed the service categories part from the services page

This commit is contained in:
alextselegidis 2021-11-18 05:32:46 +01:00
parent 54ee7ac924
commit 2a599f11b8
2 changed files with 131 additions and 254 deletions

View File

@ -10,7 +10,6 @@
<?php section('content') ?>
<script src="<?= asset_url('assets/js/backend_services_helper.js') ?>"></script>
<script src="<?= asset_url('assets/js/backend_categories_helper.js') ?>"></script>
<script src="<?= asset_url('assets/js/backend_services.js') ?>"></script>
<script>
var GlobalVariables = {
@ -34,25 +33,7 @@
</script>
<div class="container-fluid backend-page" id="services-page">
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link active" href="#services" data-toggle="tab">
<?= lang('services') ?>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#categories" data-toggle="tab">
<?= lang('categories') ?>
</a>
</li>
</ul>
<div class="tab-content">
<!-- SERVICES TAB -->
<div class="tab-pane active" id="services">
<div class="row">
<div class="row" id="services">
<div id="filter-services" class="filter-records col col-12 col-md-5">
<form class="mb-4">
<div class="input-group">
@ -190,90 +171,6 @@
</div>
</div>
</div>
</div>
<!-- CATEGORIES TAB -->
<div class="tab-pane" id="categories">
<div class="row">
<div id="filter-categories" class="filter-records column col-12 col-md-5">
<form class="input-append mb-4">
<div class="input-group">
<input type="text" class="key form-control">
<div class="input-group-addon">
<div>
<button class="filter btn btn-outline-secondary" type="submit"
data-tippy-content="<?= lang('filter') ?>">
<i class="fas fa-search"></i>
</button>
<button class="clear btn btn-outline-secondary" type="button"
data-tippy-content="<?= lang('clear') ?>">
<i class="fas fa-redo-alt"></i>
</button>
</div>
</div>
</div>
</form>
<h3><?= lang('categories') ?></h3>
<div class="results"></div>
</div>
<div class="record-details col-12 col-md-5">
<div class="btn-toolbar mb-4">
<div class="add-edit-delete-group btn-group">
<button id="add-category" class="btn btn-primary">
<i class="fas fa-plus-square mr-2"></i>
<?= lang('add') ?>
</button>
<button id="edit-category" class="btn btn-outline-secondary" disabled="disabled">
<i class="fas fa-edit mr-2"></i>
<?= lang('edit') ?>
</button>
<button id="delete-category" class="btn btn-outline-secondary" disabled="disabled">
<i class="fas fa-trash-alt mr-2"></i>
<?= lang('delete') ?>
</button>
</div>
<div class="save-cancel-group btn-group" style="display:none;">
<button id="save-category" class="btn btn-primary">
<i class="fas fa-check-square mr-2"></i>
<?= lang('save') ?>
</button>
<button id="cancel-category" class="btn btn-outline-secondary">
<i class="fas fa-ban mr-2"></i>
<?= lang('cancel') ?>
</button>
</div>
</div>
<h3><?= lang('details') ?></h3>
<div class="form-message alert" style="display:none;"></div>
<input type="hidden" id="category-id">
<div class="form-group">
<label for="category-name">
<?= lang('name') ?>
<span class="text-danger">*</span>
</label>
<input id="category-name" class="form-control required">
</div>
<div class="form-group">
<label for="category-description">
<?= lang('description') ?>
</label>
<textarea id="category-description" rows="4" class="form-control"></textarea>
</div>
</div>
</div>
</div>
</div>
</div>
<?php section('content') ?>

View File

@ -24,12 +24,11 @@ window.BackendServices = window.BackendServices || {};
/**
* Contains the basic record methods for the page.
*
* @type {ServicesHelper|CategoriesHelper}
* @type {ServicesHelper}
*/
var helper;
var servicesHelper = new ServicesHelper();
var categoriesHelper = new CategoriesHelper();
/**
* Default initialize method of the page.
@ -49,7 +48,9 @@ window.BackendServices = window.BackendServices || {};
bindEventHandlers();
}
exports.updateAvailableCategories();
BackendServices.updateAvailableCategories();
Backend.placeFooterToBottom();
};
/**
@ -58,28 +59,7 @@ window.BackendServices = window.BackendServices || {};
* Do not use this method if you include the "BackendServices" namespace on another page.
*/
function bindEventHandlers() {
/**
* Event: Page Tab Button "Click"
*
* Changes the displayed tab.
*/
$('a[data-toggle="tab"]').on('shown.bs.tab', function () {
if (helper) {
helper.unbindEventHandlers();
}
if ($(this).attr('href') === '#services') {
helper = servicesHelper;
} else if ($(this).attr('href') === '#categories') {
helper = categoriesHelper;
}
helper.resetForm();
helper.filter('');
helper.bindEventHandlers();
$('.filter-key').val('');
Backend.placeFooterToBottom();
});
//
}
/**
@ -88,7 +68,7 @@ window.BackendServices = window.BackendServices || {};
* Use this method every time a change is made to the service categories db table.
*/
exports.updateAvailableCategories = function () {
var url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_filter_service_categories';
var url = GlobalVariables.baseUrl + '/index.php/service_categories/search';
var data = {
csrfToken: GlobalVariables.csrfToken,