Relocated services

This commit is contained in:
Cagatay Civici
2022-11-30 20:36:32 +03:00
parent 1a3880c077
commit 77815b43ce
15 changed files with 13 additions and 13 deletions
-8
View File
@@ -1,8 +0,0 @@
const contextPath = import.meta.env.BASE_URL;
export default class CountryService {
getCountries() {
return fetch(contextPath + 'demo/data/countries.json')
.then((res) => res.json())
.then((d) => d.data);
}
}
-33
View File
@@ -1,33 +0,0 @@
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());
}
}
-14
View File
@@ -1,14 +0,0 @@
const contextPath = import.meta.env.BASE_URL;
export default class NodeService {
getTreeTableNodes() {
return fetch(contextPath + 'demo/data/treetablenodes.json')
.then((res) => res.json())
.then((d) => d.root);
}
getTreeNodes() {
return fetch(contextPath + 'demo/data/treenodes.json')
.then((res) => res.json())
.then((d) => d.root);
}
}
-8
View File
@@ -1,8 +0,0 @@
const contextPath = import.meta.env.BASE_URL;
export default class PhotoService {
getImages() {
return fetch(contextPath + 'demo/data/photos.json')
.then((res) => res.json())
.then((d) => d.data);
}
}
-21
View File
@@ -1,21 +0,0 @@
const contextPath = import.meta.env.BASE_URL;
export default class ProductService {
getProductsSmall() {
return fetch(contextPath + 'demo/data/products-small.json')
.then((res) => res.json())
.then((d) => d.data);
}
getProducts() {
return fetch(contextPath + 'demo/data/products.json')
.then((res) => res.json())
.then((d) => d.data);
}
getProductsWithOrdersSmall() {
return fetch(contextPath + 'demo/data/products-orders-small.json')
.then((res) => res.json())
.then((d) => d.data);
}
}