34 lines
1.1 KiB
JavaScript
Executable File
34 lines
1.1 KiB
JavaScript
Executable File
const contextPath = import.meta.env.BASE_URL;
|
|
export default class CustomerService {
|
|
getCustomersSmall() {
|
|
return fetch(contextPath + 'demo/data/customers-small.json')
|
|
.then((res) => res.json())
|
|
.then((d) => d.data);
|
|
}
|
|
|
|
getCustomersMedium() {
|
|
return fetch(contextPath + 'demo/data/customers-medium.json')
|
|
.then((res) => res.json())
|
|
.then((d) => d.data);
|
|
}
|
|
|
|
getCustomersLarge() {
|
|
return fetch(contextPath + 'demo/data/customers-large.json')
|
|
.then((res) => res.json())
|
|
.then((d) => d.data);
|
|
}
|
|
|
|
getCustomersXLarge() {
|
|
return fetch(contextPath + 'demo/data/customers-xlarge.json')
|
|
.then((res) => res.json())
|
|
.then((d) => d.data);
|
|
}
|
|
|
|
getCustomers(params) {
|
|
const queryParams = Object.keys(params)
|
|
.map((k) => encodeURIComponent(k) + '=' + encodeURIComponent(params[k]))
|
|
.join('&');
|
|
return fetch('https://www.primefaces.org//demo/data/customers?' + queryParams).then((res) => res.json());
|
|
}
|
|
}
|