mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
(bug) fix admin/orders & public/store due to refactoring
This commit is contained in:
parent
117c9bb1dd
commit
c23b57131b
@ -13,7 +13,7 @@ import { MemberSelect } from '../user/member-select';
|
||||
import { User } from '../../models/user';
|
||||
import { FormInput } from '../form/form-input';
|
||||
import OrderAPI from '../../api/order';
|
||||
import { Order, OrderIndexFilter } from '../../models/order';
|
||||
import { Order, OrderIndexFilter, OrderSortOption } from '../../models/order';
|
||||
import { FabPagination } from '../base/fab-pagination';
|
||||
import { X } from 'phosphor-react';
|
||||
|
||||
@ -27,7 +27,7 @@ interface OrdersProps {
|
||||
* Option format, expected by react-select
|
||||
* @see https://github.com/JedWatson/react-select
|
||||
*/
|
||||
type selectOption = { value: number, label: string };
|
||||
type selectOption = { value: OrderSortOption, label: string };
|
||||
|
||||
/**
|
||||
* Option format, expected by checklist
|
||||
@ -38,7 +38,7 @@ const initFilters: OrderIndexFilter = {
|
||||
reference: '',
|
||||
states: [],
|
||||
page: 1,
|
||||
sort: 'DESC'
|
||||
sort: 'created_at-desc'
|
||||
};
|
||||
|
||||
const FablabOrdersFilters = 'FablabOrdersFilters';
|
||||
@ -126,7 +126,7 @@ const Orders: React.FC<OrdersProps> = ({ currentUser, onError }) => {
|
||||
return () => {
|
||||
setFilters(draft => {
|
||||
draft.page = 1;
|
||||
draft.sort = 'DESC';
|
||||
draft.sort = 'created_at-desc';
|
||||
switch (filterType) {
|
||||
case 'reference':
|
||||
draft.reference = '';
|
||||
@ -175,8 +175,8 @@ const Orders: React.FC<OrdersProps> = ({ currentUser, onError }) => {
|
||||
*/
|
||||
const buildOptions = (): Array<selectOption> => {
|
||||
return [
|
||||
{ value: 0, label: t('app.admin.store.orders.sort.newest') },
|
||||
{ value: 1, label: t('app.admin.store.orders.sort.oldest') }
|
||||
{ value: 'created_at-desc', label: t('app.admin.store.orders.sort.newest') },
|
||||
{ value: 'created_at-asc', label: t('app.admin.store.orders.sort.oldest') }
|
||||
];
|
||||
};
|
||||
|
||||
@ -185,7 +185,7 @@ const Orders: React.FC<OrdersProps> = ({ currentUser, onError }) => {
|
||||
*/
|
||||
const handleSorting = (option: selectOption) => {
|
||||
setFilters(draft => {
|
||||
draft.sort = option.value ? 'ASC' : 'DESC';
|
||||
draft.sort = option.value;
|
||||
});
|
||||
};
|
||||
|
||||
@ -337,7 +337,7 @@ const Orders: React.FC<OrdersProps> = ({ currentUser, onError }) => {
|
||||
<StoreListHeader
|
||||
productsCount={totalCount}
|
||||
selectOptions={buildOptions()}
|
||||
selectValue={filters.sort === 'ASC' ? 1 : 0}
|
||||
selectValue={filters.sort}
|
||||
onSelectOptionsChange={handleSorting}
|
||||
/>
|
||||
<div className='features'>
|
||||
|
@ -75,8 +75,7 @@ const Products: React.FC<ProductsProps> = ({ onSuccess, onError }) => {
|
||||
setProductsCount(data.total_count);
|
||||
return data;
|
||||
} catch (error) {
|
||||
onError(t('app.admin.store.products.unexpected_error_occurred'));
|
||||
console.error(error);
|
||||
onError(t('app.admin.store.products.unexpected_error_occurred') + error);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -2,13 +2,13 @@ import React from 'react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import Select from 'react-select';
|
||||
import Switch from 'react-switch';
|
||||
import { ProductSortOption } from '../../models/product';
|
||||
import { SortOption } from '../../models/api';
|
||||
|
||||
interface StoreListHeaderProps {
|
||||
productsCount: number,
|
||||
selectOptions: selectOption[],
|
||||
onSelectOptionsChange: (option: selectOption) => void,
|
||||
selectValue?: ProductSortOption,
|
||||
selectValue?: SortOption,
|
||||
switchLabel?: string,
|
||||
switchChecked?: boolean,
|
||||
onSwitch?: (boolean) => void
|
||||
@ -17,7 +17,7 @@ interface StoreListHeaderProps {
|
||||
* Option format, expected by react-select
|
||||
* @see https://github.com/JedWatson/react-select
|
||||
*/
|
||||
type selectOption = { value: ProductSortOption, label: string };
|
||||
type selectOption = { value: SortOption, label: string };
|
||||
|
||||
/**
|
||||
* Renders an accordion item
|
||||
|
@ -4,7 +4,7 @@ import { react2angular } from 'react2angular';
|
||||
import { Loader } from '../base/loader';
|
||||
import { IApplication } from '../../models/application';
|
||||
import { FabButton } from '../base/fab-button';
|
||||
import { Product } from '../../models/product';
|
||||
import { Product, ProductSortOption } from '../../models/product';
|
||||
import { ProductCategory } from '../../models/product-category';
|
||||
import ProductAPI from '../../api/product';
|
||||
import ProductCategoryAPI from '../../api/product-category';
|
||||
@ -28,7 +28,7 @@ interface StoreProps {
|
||||
* Option format, expected by react-select
|
||||
* @see https://github.com/JedWatson/react-select
|
||||
*/
|
||||
type selectOption = { value: number, label: string };
|
||||
type selectOption = { value: ProductSortOption, label: string };
|
||||
|
||||
/**
|
||||
* This component shows public store
|
||||
@ -51,21 +51,21 @@ const Store: React.FC<StoreProps> = ({ onError, onSuccess, currentUser }) => {
|
||||
useEffect(() => {
|
||||
ProductAPI.index({ page: 1, is_active: filterVisible }).then(data => {
|
||||
setPageCount(data.total_pages);
|
||||
setProducts(data.products);
|
||||
}).catch(() => {
|
||||
onError(t('app.public.store.unexpected_error_occurred'));
|
||||
setProducts(data.data);
|
||||
}).catch(error => {
|
||||
onError(t('app.public.store.unexpected_error_occurred') + error);
|
||||
});
|
||||
ProductCategoryAPI.index().then(data => {
|
||||
setProductCategories(data);
|
||||
formatCategories(data);
|
||||
}).catch(() => {
|
||||
onError(t('app.public.store.unexpected_error_occurred'));
|
||||
}).catch(error => {
|
||||
onError(t('app.public.store.unexpected_error_occurred') + error);
|
||||
});
|
||||
|
||||
MachineAPI.index({ disabled: false }).then(data => {
|
||||
setMachines(buildChecklistOptions(data));
|
||||
}).catch(() => {
|
||||
onError(t('app.public.store.unexpected_error_occurred'));
|
||||
}).catch(error => {
|
||||
onError(t('app.public.store.unexpected_error_occurred') + error);
|
||||
});
|
||||
}, []);
|
||||
|
||||
@ -117,10 +117,10 @@ const Store: React.FC<StoreProps> = ({ onError, onSuccess, currentUser }) => {
|
||||
*/
|
||||
const buildOptions = (): Array<selectOption> => {
|
||||
return [
|
||||
{ value: 0, label: t('app.public.store.products.sort.name_az') },
|
||||
{ value: 1, label: t('app.public.store.products.sort.name_za') },
|
||||
{ value: 2, label: t('app.public.store.products.sort.price_low') },
|
||||
{ value: 3, label: t('app.public.store.products.sort.price_high') }
|
||||
{ value: 'name-asc', label: t('app.public.store.products.sort.name_az') },
|
||||
{ value: 'name-desc', label: t('app.public.store.products.sort.name_za') },
|
||||
{ value: 'amount-asc', label: t('app.public.store.products.sort.price_low') },
|
||||
{ value: 'amount-desc', label: t('app.public.store.products.sort.price_high') }
|
||||
];
|
||||
};
|
||||
/**
|
||||
@ -153,7 +153,7 @@ const Store: React.FC<StoreProps> = ({ onError, onSuccess, currentUser }) => {
|
||||
if (page !== currentPage) {
|
||||
ProductAPI.index({ page, is_active: filterVisible }).then(data => {
|
||||
setCurrentPage(page);
|
||||
setProducts(data.products);
|
||||
setProducts(data.data);
|
||||
setPageCount(data.total_pages);
|
||||
window.document.getElementById('content-main').scrollTo({ top: 100, behavior: 'smooth' });
|
||||
}).catch(() => {
|
||||
|
@ -1,9 +1,13 @@
|
||||
import _ from 'lodash';
|
||||
import { ApiFilter } from '../models/api';
|
||||
|
||||
export default class ApiLib {
|
||||
static filtersToQuery (filters?: ApiFilter): string {
|
||||
if (!filters) return '';
|
||||
|
||||
return '?' + Object.entries(filters).map(f => `${f[0]}=${f[1]}`).join('&');
|
||||
return '?' + Object.entries(filters)
|
||||
.filter(filter => !_.isNil(filter[1]))
|
||||
.map(filter => `${filter[0]}=${filter[1]}`)
|
||||
.join('&');
|
||||
}
|
||||
}
|
||||
|
@ -98,8 +98,8 @@ export default class ProductLib {
|
||||
static indexFiltersToIds = (filters: ProductIndexFilter): ProductIndexFilterIds => {
|
||||
return {
|
||||
...filters,
|
||||
categories: filters.categories.map(c => c.id),
|
||||
machines: filters.machines.map(m => m.id)
|
||||
categories: filters.categories?.map(c => c.id),
|
||||
machines: filters.machines?.map(m => m.id)
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -8,3 +8,5 @@ export interface PaginatedIndex<T> {
|
||||
total_count: number,
|
||||
data: Array<T>
|
||||
}
|
||||
|
||||
export type SortOption = `${string}-${'asc' | 'desc'}` | '';
|
||||
|
@ -48,6 +48,8 @@ export interface OrderPayment {
|
||||
|
||||
export type OrderIndex = PaginatedIndex<Order>;
|
||||
|
||||
export type OrderSortOption = 'created_at-asc' | 'created_at-desc' | '';
|
||||
|
||||
export interface OrderIndexFilter extends ApiFilter {
|
||||
reference?: string,
|
||||
user_id?: number,
|
||||
@ -56,7 +58,7 @@ export interface OrderIndexFilter extends ApiFilter {
|
||||
name?: string,
|
||||
},
|
||||
page?: number,
|
||||
sort?: 'DESC'|'ASC'
|
||||
sort?: OrderSortOption
|
||||
states?: Array<string>,
|
||||
period_from?: string,
|
||||
period_to?: string
|
||||
|
@ -13,7 +13,7 @@ class Orders::OrderService
|
||||
orders = filter_by_period(orders, filters)
|
||||
|
||||
orders = orders.where.not(state: 'cart') if current_user.member?
|
||||
orders = orders.order(created_at: filters[:sort] || 'DESC')
|
||||
orders = orders_ordering(orders, filters)
|
||||
total_count = orders.count
|
||||
orders = orders.page(filters[:page] || 1).per(ORDERS_PER_PAGE)
|
||||
{
|
||||
@ -106,5 +106,13 @@ class Orders::OrderService
|
||||
|
||||
orders.where(created_at: DateTime.parse(filters[:period_from])..DateTime.parse(filters[:period_to]).end_of_day)
|
||||
end
|
||||
|
||||
def orders_ordering(orders, filters)
|
||||
key, order = filters[:sort]&.split('-')
|
||||
key ||= 'created_at'
|
||||
order ||= 'desc'
|
||||
|
||||
orders.order(key => order)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -118,7 +118,7 @@ class ProductService
|
||||
end
|
||||
|
||||
def products_ordering(products, filters)
|
||||
key, order = filters[:sort].split('-')
|
||||
key, order = filters[:sort]&.split('-')
|
||||
key ||= 'created_at'
|
||||
order ||= 'desc'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user