easyappointments/assets/js/http/customers_http_client.js

134 lines
2.9 KiB
JavaScript
Raw Normal View History

2021-12-11 00:06:59 +03:00
/* ----------------------------------------------------------------------------
2022-01-18 15:05:42 +03:00
* Easy!Appointments - Online Appointment Scheduler
2021-12-11 00:06:59 +03:00
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
2021-12-18 19:43:45 +03:00
* @copyright Copyright (c) Alex Tselegidis
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://easyappointments.org
2021-12-11 00:06:59 +03:00
* @since v1.5.0
* ---------------------------------------------------------------------------- */
/**
* Customers HTTP client.
*
* This module implements the customers related HTTP requests.
*/
App.Http.Customers = (function () {
2021-12-14 09:14:11 +03:00
/**
* Save (create or update) a customer.
*
* @param {Object} customer
*
* @return {Object}
*/
function save(customer) {
return customer.id ? update(customer) : store(customer);
}
/**
* Create a customer.
2021-12-14 09:14:11 +03:00
*
* @param {Object} customer
*
* @return {Object}
2021-12-14 09:14:11 +03:00
*/
function store(customer) {
const url = App.Utils.Url.siteUrl('customers/store');
2021-12-14 09:14:11 +03:00
const data = {
csrf_token: vars('csrf_token'),
customer: customer,
2021-12-14 09:14:11 +03:00
};
return $.post(url, data);
}
/**
* Update a customer.
2021-12-14 09:14:11 +03:00
*
* @param {Object} customer
*
* @return {Object}
2021-12-14 09:14:11 +03:00
*/
function update(customer) {
const url = App.Utils.Url.siteUrl('customers/update');
const data = {
csrf_token: vars('csrf_token'),
customer: customer,
2021-12-14 09:14:11 +03:00
};
return $.post(url, data);
}
/**
* Delete a customer.
2021-12-14 09:14:11 +03:00
*
* @param {Number} customerId
*
* @return {Object}
2021-12-14 09:14:11 +03:00
*/
function destroy(customerId) {
const url = App.Utils.Url.siteUrl('customers/destroy');
const data = {
csrf_token: vars('csrf_token'),
customer_id: customerId,
2021-12-14 09:14:11 +03:00
};
return $.post(url, data);
}
/**
* Search customers by keyword.
*
* @param {String} keyword
* @param {Number} [limit]
* @param {Number} [offset]
* @param {String} [orderBy]
2021-12-14 09:14:11 +03:00
*
* @return {Object}
2021-12-14 09:14:11 +03:00
*/
function search(keyword, limit = null, offset = null, orderBy = null) {
2021-12-14 09:14:11 +03:00
const url = App.Utils.Url.siteUrl('customers/search');
const data = {
csrf_token: vars('csrf_token'),
2021-12-14 09:14:11 +03:00
keyword,
limit,
offset,
order_by: orderBy,
2021-12-14 09:14:11 +03:00
};
return $.post(url, data);
}
/**
* Find a customer.
2021-12-14 09:14:11 +03:00
*
* @param {Number} customerId
*
* @return {Object}
2021-12-14 09:14:11 +03:00
*/
function find(customerId) {
const url = App.Utils.Url.siteUrl('customers/find');
const data = {
csrf_token: vars('csrf_token'),
customer_id: customerId,
2021-12-14 09:14:11 +03:00
};
return $.post(url, data);
}
return {
save,
store,
2021-12-14 09:14:11 +03:00
update,
destroy,
search,
find,
2021-12-14 09:14:11 +03:00
};
2021-12-11 00:06:59 +03:00
})();