better filters

This commit is contained in:
Sean Morley
2024-08-05 09:59:34 -04:00
parent 44cad30528
commit 77c11fefea
2 changed files with 41 additions and 215 deletions

View File

@@ -403,202 +403,4 @@ export const actions: Actions = {
let link_url = adventure.link;
return { image_url, link_url };
}
// get: async (event) => {
// if (!event.locals.user) {
// }
// const formData = await event.request.formData();
// const visited = formData.get('visited');
// const planned = formData.get('planned');
// let include_collections = formData.get('include_collections') as string;
// if (include_collections) {
// include_collections = 'true';
// } else {
// include_collections = 'false';
// }
// const order_direction = formData.get('order_direction') as string;
// const order_by = formData.get('order_by') as string;
// console.log(order_direction, order_by);
// let adventures: Adventure[] = [];
// if (!event.locals.user) {
// return {
// status: 401,
// body: { message: 'Unauthorized' }
// };
// }
// let filterString = '';
// if (visited) {
// filterString += 'visited';
// }
// if (planned) {
// if (filterString) {
// filterString += ',';
// }
// filterString += 'planned';
// }
// if (!filterString) {
// filterString = '';
// }
// let next = null;
// let previous = null;
// let count = 0;
// console.log(filterString);
// let visitedFetch = await fetch(
// `${serverEndpoint}/api/adventures/filtered?types=${filterString}&order_by=${order_by}&order_direction=${order_direction}&include_collections=${include_collections}`,
// {
// headers: {
// Cookie: `${event.cookies.get('auth')}`
// }
// }
// );
// if (!visitedFetch.ok) {
// console.error('Failed to fetch visited adventures');
// return redirect(302, '/login');
// } else {
// let res = await visitedFetch.json();
// let visited = res.results as Adventure[];
// next = res.next;
// previous = res.previous;
// count = res.count;
// adventures = [...adventures, ...visited];
// console.log(next, previous, count);
// }
// return {
// adventures,
// next,
// previous,
// count
// };
// },
// changePage: async (event) => {
// const formData = await event.request.formData();
// const next = formData.get('next') as string;
// const previous = formData.get('previous') as string;
// const page = formData.get('page') as string;
// if (!event.locals.user) {
// return {
// status: 401,
// body: { message: 'Unauthorized' }
// };
// }
// if (!page) {
// return {
// status: 400,
// body: { error: 'Missing required fields' }
// };
// }
// // Start with the provided URL or default to the filtered adventures endpoint
// let url: string = next || previous || '/api/adventures/filtered';
// // Extract the path starting from '/api/adventures'
// const apiIndex = url.indexOf('/api/adventures');
// if (apiIndex !== -1) {
// url = url.slice(apiIndex);
// } else {
// url = '/api/adventures/filtered';
// }
// // Replace or add the page number in the URL
// if (url.includes('page=')) {
// url = url.replace(/page=\d+/, `page=${page}`);
// } else {
// // If 'page=' is not in the URL, add it
// url += url.includes('?') ? '&' : '?';
// url += `page=${page}`;
// }
// const fullUrl = `${serverEndpoint}${url}`;
// console.log(fullUrl);
// console.log(serverEndpoint);
// try {
// const response = await fetch(fullUrl, {
// headers: {
// 'Content-Type': 'application/json',
// Cookie: `${event.cookies.get('auth')}`
// }
// });
// if (!response.ok) {
// throw new Error(`HTTP error! status: ${response.status}`);
// }
// const data = await response.json();
// let adventures = data.results as Adventure[];
// let next = data.next;
// let previous = data.previous;
// let count = data.count;
// return {
// status: 200,
// body: {
// adventures,
// next,
// previous,
// count,
// page
// }
// };
// } catch (error) {
// console.error('Error fetching data:', error);
// return {
// status: 500,
// body: { error: 'Failed to fetch data' }
// };
// }
// },
// all: async (event) => {
// if (!event.locals.user) {
// return {
// status: 401,
// body: { message: 'Unauthorized' }
// };
// }
// const formData = await event.request.formData();
// let include_collections = formData.get('include_collections') as string;
// if (include_collections !== 'true' && include_collections !== 'false') {
// include_collections = 'false';
// }
// let adventures: Adventure[] = [];
// let visitedFetch = await fetch(
// `${serverEndpoint}/api/adventures/all/?include_collections=${include_collections}`,
// {
// headers: {
// Cookie: `${event.cookies.get('auth')}`,
// 'Content-Type': 'application/json'
// }
// }
// );
// if (!visitedFetch.ok) {
// console.error('Failed to fetch all adventures');
// return redirect(302, '/login');
// } else {
// console.log('Fetched all adventures');
// let res = await visitedFetch.json();
// console.log(res);
// adventures = res as Adventure[];
// }
// return {
// adventures
// };
// }
};