- Added 'account_id_random' to persistent property list to fix local search isolation. - Standardized search body and helpers to support mandatory x-account-id headers. - Refactored LiveQuery to use synchronous dependency tracking ($derived.by) for reliable search updates. - Broadened server-side search to handle inclusive OR logic on the client, preventing disappearing results. - Updated task list with IDAA Recovery Meeting testing status.
974 lines
30 KiB
TypeScript
974 lines
30 KiB
TypeScript
import type { key_val } from '$lib/stores/ae_stores';
|
|
import { api } from '$lib/api/api';
|
|
import { get_ae_obj_li_for_obj_id_crud_v2 } from '$lib/ae_api/api_get__crud_obj_li_v2';
|
|
|
|
import { db_save_ae_obj_li__ae_obj } from '$lib/ae_core/core__idb_dexie';
|
|
import { db_events } from '$lib/ae_events/db_events';
|
|
import type { ae_Event } from '$lib/types/ae_types';
|
|
|
|
import { load_ae_obj_li__event_device } from './ae_events__event_device';
|
|
import { load_ae_obj_li__event_location } from './ae_events__event_location';
|
|
import { load_ae_obj_li__event_session } from './ae_events__event_session';
|
|
import { load_ae_obj_li__event_badge_template } from '$lib/ae_events/ae_events__event_badge_template';
|
|
import { load_ae_obj_li__event_file } from '$lib/ae_events/ae_events__event_file';
|
|
|
|
const ae_promises: key_val = {};
|
|
|
|
// Updated 2026-01-27 to V3 String-Only ID Standard
|
|
export async function load_ae_obj_id__event({
|
|
api_cfg,
|
|
event_id,
|
|
view = 'default',
|
|
inc_device_li = false,
|
|
inc_file_li = false,
|
|
inc_location_li = false,
|
|
inc_session_li = false,
|
|
inc_template_li = false,
|
|
try_cache = true,
|
|
log_lvl = 0
|
|
}: {
|
|
api_cfg: any;
|
|
event_id: string;
|
|
view?: string;
|
|
inc_device_li?: boolean;
|
|
inc_file_li?: boolean;
|
|
inc_location_li?: boolean;
|
|
inc_session_li?: boolean;
|
|
inc_template_li?: boolean;
|
|
try_cache?: boolean;
|
|
log_lvl?: number;
|
|
}): Promise<ae_Event | null> {
|
|
if (log_lvl) {
|
|
console.log(`*** load_ae_obj_id__event() *** event_id=${event_id} (SWR Optimization)`);
|
|
}
|
|
|
|
// 1. FAST PATH: Return cached data immediately
|
|
if (try_cache) {
|
|
try {
|
|
const cached_event = await db_events.event.get(event_id);
|
|
if (cached_event) {
|
|
if (log_lvl) console.log('EVENT LOAD: Cache hit. Returning stale data immediately.');
|
|
|
|
// Trigger background refresh
|
|
_refresh_event_v3_background({
|
|
api_cfg, event_id, view, try_cache,
|
|
inc_device_li, inc_file_li, inc_location_li, inc_session_li, inc_template_li,
|
|
log_lvl: 0
|
|
});
|
|
|
|
// Still handle nested loads for the cached version to ensure UI richness
|
|
return await _handle_nested_loads(cached_event, {
|
|
api_cfg, inc_device_li, inc_file_li, inc_location_li, inc_session_li, inc_template_li, log_lvl
|
|
});
|
|
}
|
|
} catch (e) {
|
|
if (log_lvl) console.warn('EVENT LOAD: Cache read failed.', e);
|
|
}
|
|
}
|
|
|
|
// 2. SLOW PATH: Wait for API if cache is empty or try_cache is false
|
|
return await _refresh_event_v3_background({
|
|
api_cfg, event_id, view, try_cache,
|
|
inc_device_li, inc_file_li, inc_location_li, inc_session_li, inc_template_li,
|
|
log_lvl
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Internal helper to perform the actual API fetch and cache update for events
|
|
*/
|
|
async function _refresh_event_v3_background({
|
|
api_cfg, event_id, view, try_cache,
|
|
inc_device_li, inc_file_li, inc_location_li, inc_session_li, inc_template_li,
|
|
log_lvl
|
|
}: any) {
|
|
// Check if offline
|
|
if (typeof navigator !== 'undefined' && !navigator.onLine) {
|
|
if (log_lvl) console.log('Browser is offline. Skipping API refresh.');
|
|
return null;
|
|
}
|
|
|
|
try {
|
|
const result = await api.get_ae_obj_v3({
|
|
api_cfg: api_cfg,
|
|
obj_type: 'event',
|
|
obj_id: event_id,
|
|
view,
|
|
log_lvl: log_lvl
|
|
});
|
|
|
|
if (result) {
|
|
let processed_obj = result;
|
|
if (try_cache) {
|
|
const processed = await process_ae_obj__event_props({
|
|
obj_li: [result],
|
|
log_lvl: log_lvl
|
|
});
|
|
processed_obj = processed[0];
|
|
await db_save_ae_obj_li__ae_obj({
|
|
db_instance: db_events,
|
|
table_name: 'event',
|
|
obj_li: processed,
|
|
properties_to_save: properties_to_save,
|
|
log_lvl: log_lvl
|
|
});
|
|
}
|
|
|
|
return await _handle_nested_loads(processed_obj, {
|
|
api_cfg, inc_device_li, inc_file_li, inc_location_li, inc_session_li, inc_template_li, log_lvl
|
|
});
|
|
}
|
|
} catch (error: any) {
|
|
if (log_lvl) console.log('Event API refresh failed.', error);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Shared logic for loading nested child collections
|
|
*/
|
|
async function _handle_nested_loads(event_obj: any, { api_cfg, inc_device_li, inc_file_li, inc_location_li, inc_session_li, inc_template_li, log_lvl }: any) {
|
|
if (log_lvl) console.log(`Loading nested collections for event: ${event_obj.event_id} (Devices: ${inc_device_li}, Files: ${inc_file_li}, Locations: ${inc_location_li}, Sessions: ${inc_session_li}, Templates: ${inc_template_li})`);
|
|
// String-Only ID Vision: the '_id' field IS the string ID
|
|
const current_event_id = event_obj.id || event_obj.event_id;
|
|
|
|
// Use Promise.all for concurrent nested loads to further reduce delay
|
|
const tasks = [];
|
|
|
|
if (inc_device_li) {
|
|
tasks.push(load_ae_obj_li__event_device({
|
|
api_cfg,
|
|
for_obj_type: 'event',
|
|
for_obj_id: current_event_id,
|
|
log_lvl
|
|
}).then(res => event_obj.event_device_obj_li = res));
|
|
}
|
|
if (inc_file_li) {
|
|
tasks.push(load_ae_obj_li__event_file({
|
|
api_cfg,
|
|
for_obj_type: 'event',
|
|
for_obj_id: current_event_id,
|
|
enabled: 'all',
|
|
limit: 100,
|
|
log_lvl
|
|
}).then(res => event_obj.event_file_li = res));
|
|
}
|
|
if (inc_location_li) {
|
|
tasks.push(load_ae_obj_li__event_location({
|
|
api_cfg,
|
|
for_obj_type: 'event',
|
|
for_obj_id: current_event_id,
|
|
log_lvl
|
|
}).then(res => event_obj.event_location_obj_li = res));
|
|
}
|
|
if (inc_session_li) {
|
|
tasks.push(load_ae_obj_li__event_session({
|
|
api_cfg,
|
|
for_obj_type: 'event',
|
|
for_obj_id: current_event_id,
|
|
log_lvl
|
|
}).then(res => event_obj.event_session_obj_li = res));
|
|
}
|
|
if (inc_template_li) {
|
|
tasks.push(load_ae_obj_li__event_badge_template({
|
|
api_cfg,
|
|
event_id: current_event_id,
|
|
log_lvl
|
|
}).then(res => event_obj.event_badge_template_obj_li = res));
|
|
}
|
|
|
|
if (tasks.length > 0) await Promise.all(tasks);
|
|
|
|
return event_obj;
|
|
}
|
|
|
|
// Updated 2026-01-27 to V3 String-Only ID Standard
|
|
export async function load_ae_obj_li__event({
|
|
api_cfg,
|
|
for_obj_type = 'account',
|
|
for_obj_id,
|
|
qry_conference = null,
|
|
enabled = 'enabled',
|
|
hidden = 'not_hidden',
|
|
view = 'default',
|
|
inc_session_li = false,
|
|
limit = 9,
|
|
offset = 0,
|
|
order_by_li = { start_datetime: 'DESC' } as const,
|
|
try_cache = true,
|
|
log_lvl = 0
|
|
}: {
|
|
api_cfg: any;
|
|
for_obj_type?: string;
|
|
for_obj_id: string;
|
|
qry_conference?: boolean | null;
|
|
enabled?: 'enabled' | 'all' | 'not_enabled';
|
|
hidden?: 'hidden' | 'all' | 'not_hidden';
|
|
view?: string;
|
|
inc_session_li?: boolean;
|
|
limit?: number;
|
|
offset?: number;
|
|
order_by_li?: Record<string, 'ASC' | 'DESC'> | Record<string, 'ASC' | 'DESC'>[];
|
|
params?: key_val;
|
|
try_cache?: boolean;
|
|
log_lvl?: number;
|
|
}): Promise<ae_Event[]> {
|
|
|
|
// Check if offline
|
|
if (typeof navigator !== 'undefined' && !navigator.onLine) {
|
|
if (log_lvl) console.log('Browser is offline. Skipping API and attempting cache load.');
|
|
ae_promises.load__event_obj_li = await db_events.event
|
|
.where('account_id').equals(for_obj_id)
|
|
.toArray();
|
|
return ae_promises.load__event_obj_li || [];
|
|
}
|
|
|
|
let promise;
|
|
|
|
if (qry_conference !== null) {
|
|
const search_query: any = {
|
|
and: [{ field: 'conference', op: 'eq', value: qry_conference }]
|
|
};
|
|
|
|
if (for_obj_id) {
|
|
search_query.and.push({ field: `${for_obj_type}_id`, op: 'eq', value: for_obj_id });
|
|
}
|
|
|
|
promise = api.search_ae_obj_v3({
|
|
api_cfg,
|
|
obj_type: 'event',
|
|
headers: { 'x-account-id': for_obj_id },
|
|
search_query,
|
|
enabled,
|
|
hidden,
|
|
view,
|
|
limit,
|
|
offset,
|
|
order_by_li,
|
|
log_lvl
|
|
});
|
|
} else {
|
|
promise = api.get_ae_obj_li_v3({
|
|
api_cfg,
|
|
obj_type: 'event',
|
|
for_obj_type,
|
|
for_obj_id,
|
|
enabled,
|
|
hidden,
|
|
view,
|
|
limit,
|
|
offset,
|
|
order_by_li,
|
|
log_lvl
|
|
});
|
|
}
|
|
|
|
try {
|
|
const result_li = await promise;
|
|
if (result_li) {
|
|
let processed_results = result_li;
|
|
|
|
if (try_cache) {
|
|
const processed = await process_ae_obj__event_props({
|
|
obj_li: result_li,
|
|
log_lvl: log_lvl
|
|
});
|
|
processed_results = processed;
|
|
await db_save_ae_obj_li__ae_obj({
|
|
db_instance: db_events,
|
|
table_name: 'event',
|
|
obj_li: processed,
|
|
properties_to_save: properties_to_save,
|
|
log_lvl: log_lvl
|
|
});
|
|
}
|
|
ae_promises.load__event_obj_li = processed_results;
|
|
} else {
|
|
console.log('No results returned from API.');
|
|
if (try_cache) {
|
|
if (log_lvl) console.log('Attempting to load from local cache...');
|
|
ae_promises.load__event_obj_li = await db_events.event
|
|
.where('account_id').equals(for_obj_id)
|
|
.toArray();
|
|
} else {
|
|
ae_promises.load__event_obj_li = [];
|
|
}
|
|
}
|
|
} catch (error: any) {
|
|
console.log('API request failed.', error);
|
|
if (try_cache) {
|
|
if (log_lvl) console.log('Attempting to load from local cache after error...');
|
|
ae_promises.load__event_obj_li = await db_events.event
|
|
.where('account_id').equals(for_obj_id)
|
|
.toArray();
|
|
} else {
|
|
ae_promises.load__event_obj_li = [];
|
|
}
|
|
}
|
|
|
|
if (inc_session_li && ae_promises.load__event_obj_li) {
|
|
const session_tasks = ae_promises.load__event_obj_li.map((event_obj: any) => {
|
|
const current_event_id = event_obj.id || event_obj.event_id;
|
|
return load_ae_obj_li__event_session({
|
|
api_cfg,
|
|
for_obj_type: 'event',
|
|
for_obj_id: current_event_id,
|
|
log_lvl
|
|
}).then((res) => (event_obj.event_session_obj_li = res));
|
|
});
|
|
await Promise.all(session_tasks);
|
|
}
|
|
|
|
return ae_promises.load__event_obj_li;
|
|
}
|
|
|
|
// Updated 2026-01-06
|
|
export async function create_ae_obj__event({
|
|
api_cfg,
|
|
account_id,
|
|
data_kv,
|
|
params = {},
|
|
try_cache = true,
|
|
log_lvl = 0
|
|
}: {
|
|
api_cfg: any;
|
|
account_id: string;
|
|
data_kv: key_val;
|
|
params?: key_val;
|
|
try_cache?: boolean;
|
|
log_lvl?: number;
|
|
}): Promise<ae_Event | null> {
|
|
const result = await api.create_ae_obj_v3({
|
|
api_cfg,
|
|
obj_type: 'event',
|
|
fields: {
|
|
account_id,
|
|
...data_kv
|
|
},
|
|
params,
|
|
log_lvl
|
|
});
|
|
|
|
if (result) {
|
|
const processed = await process_ae_obj__event_props({
|
|
obj_li: [result],
|
|
log_lvl: log_lvl
|
|
});
|
|
const processed_obj = processed[0];
|
|
|
|
if (try_cache) {
|
|
await db_save_ae_obj_li__ae_obj({
|
|
db_instance: db_events,
|
|
table_name: 'event',
|
|
obj_li: processed,
|
|
properties_to_save: properties_to_save,
|
|
log_lvl: log_lvl
|
|
});
|
|
}
|
|
return processed_obj;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
// Updated 2026-01-06
|
|
export async function delete_ae_obj_id__event({
|
|
api_cfg,
|
|
event_id,
|
|
method = 'delete',
|
|
params = {},
|
|
try_cache = true,
|
|
log_lvl = 0
|
|
}: {
|
|
api_cfg: any;
|
|
event_id: string;
|
|
method?: 'delete' | 'soft_delete' | 'disable' | 'hide';
|
|
params?: key_val;
|
|
try_cache?: boolean;
|
|
log_lvl?: number;
|
|
}) {
|
|
const result = await api.delete_ae_obj_v3({
|
|
api_cfg,
|
|
obj_type: 'event',
|
|
obj_id: event_id,
|
|
method,
|
|
params,
|
|
log_lvl
|
|
});
|
|
|
|
if (try_cache) {
|
|
await db_events.event.delete(event_id);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// Updated 2026-01-06
|
|
export async function update_ae_obj__event({
|
|
api_cfg,
|
|
event_id,
|
|
data_kv,
|
|
params = {},
|
|
try_cache = true,
|
|
log_lvl = 0
|
|
}: {
|
|
api_cfg: any;
|
|
event_id: string;
|
|
data_kv: key_val;
|
|
params?: key_val;
|
|
try_cache?: boolean;
|
|
log_lvl?: number;
|
|
}): Promise<ae_Event | null> {
|
|
const result = await api.update_ae_obj_v3({
|
|
api_cfg,
|
|
obj_type: 'event',
|
|
obj_id: event_id,
|
|
fields: data_kv,
|
|
params,
|
|
log_lvl
|
|
});
|
|
|
|
if (result) {
|
|
const processed = await process_ae_obj__event_props({
|
|
obj_li: [result],
|
|
log_lvl: log_lvl
|
|
});
|
|
const processed_obj = processed[0];
|
|
|
|
if (try_cache) {
|
|
await db_save_ae_obj_li__ae_obj({
|
|
db_instance: db_events,
|
|
table_name: 'event',
|
|
obj_li: processed,
|
|
properties_to_save: properties_to_save,
|
|
log_lvl: log_lvl
|
|
});
|
|
}
|
|
return processed_obj;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
// Updated 2026-01-21
|
|
/**
|
|
* Unified Search for Events (V3 API)
|
|
*
|
|
* STRATEGY: Hybrid Search/Filter
|
|
* 1. Server-side (V3 Search): Used for text search (qry_str) to reduce payload.
|
|
* 2. Client-side (Filter Layer): Handles all other filters (Type, Location, Person)
|
|
* to ensure correct inclusive OR logic and stable ID matching.
|
|
*/
|
|
export async function search__event({
|
|
api_cfg,
|
|
for_obj_type = 'account',
|
|
for_obj_id,
|
|
qry_str,
|
|
qry_person_id = null,
|
|
qry_conference = null,
|
|
qry_physical = null,
|
|
qry_virtual = null,
|
|
qry_type = null,
|
|
enabled = 'enabled',
|
|
hidden = 'not_hidden',
|
|
view = 'default',
|
|
limit = 99,
|
|
offset = 0,
|
|
order_by_li = { start_datetime: 'DESC' } as const,
|
|
try_cache = true,
|
|
log_lvl = 0
|
|
}: {
|
|
api_cfg: any;
|
|
for_obj_type?: string;
|
|
for_obj_id: string;
|
|
qry_str?: string;
|
|
qry_person_id?: string | null;
|
|
qry_conference?: boolean | null;
|
|
qry_physical?: boolean | null;
|
|
qry_virtual?: boolean | null;
|
|
qry_type?: string | null;
|
|
enabled?: 'enabled' | 'all' | 'not_enabled';
|
|
hidden?: 'hidden' | 'all' | 'not_hidden';
|
|
view?: string;
|
|
limit?: number;
|
|
offset?: number;
|
|
order_by_li?: Record<string, 'ASC' | 'DESC'>;
|
|
try_cache?: boolean;
|
|
log_lvl?: number;
|
|
}): Promise<ae_Event[]> {
|
|
if (log_lvl) console.log('*** search__event() *** [V3]');
|
|
|
|
let result_li: ae_Event[] | null = null;
|
|
|
|
if (qry_str && qry_str.trim().length > 0) {
|
|
// Option A: Active Text Search
|
|
const search_query: any = {
|
|
and: []
|
|
};
|
|
const params: key_val = {};
|
|
|
|
search_query.and.push({ field: 'default_qry_str', op: 'like', value: `%${qry_str.trim()}%` });
|
|
params['lk_qry'] = { 'default_qry_str': qry_str.trim() };
|
|
|
|
if (for_obj_id) {
|
|
// V3 Standard: Use random string ID for body filters.
|
|
// The API resolves this to the integer column automatically.
|
|
search_query.and.push({ field: `${for_obj_type}_id_random`, op: 'eq', value: for_obj_id });
|
|
}
|
|
|
|
// NOTE: We do NOT push 'physical' and 'virtual' to the server-side query here.
|
|
// The V3 Search API uses AND logic for the body, which would exclude
|
|
// meetings that are only physical or only virtual if both filters are active.
|
|
// We handle this in the Client-side Filter Layer below for correct OR logic.
|
|
|
|
result_li = await api.search_ae_obj_v3({
|
|
api_cfg,
|
|
obj_type: 'event',
|
|
headers: { 'x-account-id': for_obj_id },
|
|
search_query,
|
|
params,
|
|
enabled,
|
|
hidden,
|
|
view,
|
|
limit,
|
|
offset,
|
|
order_by_li,
|
|
log_lvl
|
|
});
|
|
} else {
|
|
// Option B: List All
|
|
result_li = await api.get_ae_obj_li_v3({
|
|
api_cfg,
|
|
obj_type: 'event',
|
|
for_obj_type,
|
|
for_obj_id,
|
|
enabled,
|
|
hidden,
|
|
view,
|
|
limit,
|
|
offset,
|
|
order_by_li,
|
|
headers: { 'x-account-id': for_obj_id },
|
|
log_lvl
|
|
});
|
|
}
|
|
|
|
// Handle potential V3 API envelope
|
|
let valid_result_li: ae_Event[] = [];
|
|
if (Array.isArray(result_li)) {
|
|
valid_result_li = result_li;
|
|
} else if (result_li && typeof result_li === 'object' && Array.isArray((result_li as any).data)) {
|
|
valid_result_li = (result_li as any).data;
|
|
} else {
|
|
return [];
|
|
}
|
|
|
|
const processed_obj_li = await process_ae_obj__event_props({
|
|
obj_li: valid_result_li,
|
|
log_lvl: log_lvl
|
|
});
|
|
|
|
if (try_cache) {
|
|
await db_save_ae_obj_li__ae_obj({
|
|
db_instance: db_events,
|
|
table_name: 'event',
|
|
obj_li: processed_obj_li,
|
|
properties_to_save: properties_to_save,
|
|
log_lvl: log_lvl
|
|
});
|
|
}
|
|
|
|
// Client-side Filter Layer
|
|
const filtered_obj_li = processed_obj_li.filter((ev: any) => {
|
|
// Handle conference filter
|
|
if (qry_conference != null) {
|
|
const ev_conf = ev.conference == true;
|
|
if (ev_conf !== !!qry_conference) return false;
|
|
}
|
|
|
|
// Handle type filter
|
|
if (qry_type != null && qry_type !== 'all' && qry_type !== '') {
|
|
if (ev.type !== qry_type) return false;
|
|
}
|
|
|
|
// Location Filtering (Inclusive OR logic)
|
|
if (qry_physical === true || qry_virtual === true) {
|
|
const ev_physical = ev.physical == true;
|
|
const ev_virtual = ev.virtual == true;
|
|
|
|
let match = false;
|
|
if (qry_physical === true && ev_physical) match = true;
|
|
if (qry_virtual === true && ev_virtual) match = true;
|
|
|
|
if (!match) return false;
|
|
}
|
|
|
|
// Handle person ID filter
|
|
if (qry_person_id) {
|
|
const match = (
|
|
ev.external_person_id === qry_person_id ||
|
|
ev.poc_person_id === qry_person_id ||
|
|
ev.poc_person_id_random === qry_person_id ||
|
|
ev.poc_event_person_id === qry_person_id ||
|
|
ev.poc_event_person_id_random === qry_person_id
|
|
);
|
|
if (!match) return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
|
|
if (log_lvl) {
|
|
console.log(`Filter results (Hybrid): Input=${processed_obj_li.length}, Output=${filtered_obj_li.length}`);
|
|
}
|
|
|
|
return filtered_obj_li.slice(0, limit);
|
|
}
|
|
|
|
export const qry_ae_obj_li__event = search__event;
|
|
|
|
|
|
|
|
/**
|
|
* Specialized search function for IDAA module using legacy V2 endpoints.
|
|
* This is isolated to prevent V3 migration bugs from affecting Recovery Meetings.
|
|
*/
|
|
// Updated 2026-01-20
|
|
export async function qry_ae_obj_li__event_v2({
|
|
api_cfg,
|
|
for_obj_type = 'account',
|
|
for_obj_id,
|
|
qry_str,
|
|
qry_person_id = null,
|
|
qry_conference = null,
|
|
qry_physical = null,
|
|
qry_virtual = null,
|
|
qry_type = null,
|
|
enabled = 'enabled',
|
|
hidden = 'not_hidden',
|
|
view = 'default',
|
|
limit = 99,
|
|
offset = 0,
|
|
order_by_li = { start_datetime: 'DESC' } as const,
|
|
try_cache = true,
|
|
log_lvl = 0
|
|
}: {
|
|
api_cfg: any;
|
|
for_obj_type?: string;
|
|
for_obj_id: string;
|
|
qry_str?: string;
|
|
qry_person_id?: string | null;
|
|
qry_conference?: boolean | null;
|
|
qry_physical?: boolean | null;
|
|
qry_virtual?: boolean | null;
|
|
qry_type?: string | null;
|
|
enabled?: 'enabled' | 'all' | 'not_enabled';
|
|
hidden?: 'hidden' | 'all' | 'not_hidden';
|
|
view?: string;
|
|
limit?: number;
|
|
offset?: number;
|
|
order_by_li?: Record<string, 'ASC' | 'DESC'>;
|
|
try_cache?: boolean;
|
|
log_lvl?: number;
|
|
}) {
|
|
if (log_lvl) console.log('*** qry_ae_obj_li__event_v2() ***');
|
|
|
|
const params_json: any = { qry: { and: [] } };
|
|
|
|
if (qry_str) {
|
|
// Use default_qry_str for searching as requested
|
|
params_json.qry.and.push({ field: 'default_qry_str', op: 'like', value: `%${qry_str}%` });
|
|
}
|
|
|
|
const result_li = await get_ae_obj_li_for_obj_id_crud_v2({
|
|
api_cfg,
|
|
obj_type: 'event',
|
|
for_obj_type,
|
|
for_obj_id,
|
|
enabled,
|
|
hidden,
|
|
limit,
|
|
offset,
|
|
order_by_li,
|
|
params_json,
|
|
log_lvl
|
|
});
|
|
|
|
if (!result_li) return [];
|
|
|
|
const processed_obj_li = await process_ae_obj__event_props({
|
|
obj_li: result_li,
|
|
log_lvl: log_lvl
|
|
});
|
|
|
|
if (try_cache) {
|
|
await db_save_ae_obj_li__ae_obj({
|
|
db_instance: db_events,
|
|
table_name: 'event',
|
|
obj_li: processed_obj_li,
|
|
properties_to_save: properties_to_save,
|
|
log_lvl: log_lvl
|
|
});
|
|
}
|
|
|
|
// Client-side Filter Layer
|
|
const filtered_obj_li = processed_obj_li.filter((ev: any) => {
|
|
// Handle conference filter
|
|
if (qry_conference != null) {
|
|
const ev_conf = ev.conference === true || ev.conference === 1 || ev.conference === '1';
|
|
if (ev_conf !== !!qry_conference) return false;
|
|
}
|
|
|
|
// Location Filtering (Inclusive OR logic)
|
|
// If either filter is explicitly true, we restrict results.
|
|
// If both are false or null, we show everything.
|
|
if (qry_physical === true || qry_virtual === true) {
|
|
const ev_physical = ev.physical === true || ev.physical === 1 || ev.physical === '1';
|
|
const ev_virtual = ev.virtual === true || ev.virtual === 1 || ev.virtual === '1';
|
|
|
|
let match = false;
|
|
if (qry_physical === true && ev_physical) match = true;
|
|
if (qry_virtual === true && ev_virtual) match = true;
|
|
|
|
if (!match) return false;
|
|
}
|
|
|
|
// Handle type filter (skip if null, undefined, 'all', or empty string)
|
|
if (qry_type != null && qry_type !== 'all' && qry_type !== '') {
|
|
if (ev.type !== qry_type) return false;
|
|
}
|
|
|
|
// Handle person ID filter
|
|
if (qry_person_id) {
|
|
const match = (
|
|
ev.external_person_id === qry_person_id ||
|
|
ev.poc_person_id === qry_person_id ||
|
|
ev.poc_person_id_random === qry_person_id ||
|
|
ev.poc_event_person_id === qry_person_id ||
|
|
ev.poc_event_person_id_random === qry_person_id
|
|
);
|
|
if (!match) return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
|
|
if (log_lvl) {
|
|
console.log(`Filter results (V2): Input=${processed_obj_li.length}, Output=${filtered_obj_li.length}`);
|
|
}
|
|
|
|
return filtered_obj_li.slice(0, limit);
|
|
}
|
|
|
|
// Updated 2025-05-09
|
|
export const properties_to_save = [
|
|
'id',
|
|
'event_id',
|
|
'code',
|
|
'account_id',
|
|
'account_id_random',
|
|
'conference',
|
|
'type',
|
|
'name',
|
|
'summary',
|
|
'description',
|
|
'start_datetime',
|
|
'end_datetime',
|
|
'timezone',
|
|
'location_address_json',
|
|
'location_text',
|
|
'attend_json',
|
|
'attend_text',
|
|
'status',
|
|
'mod_abstracts_json',
|
|
'mod_badges_json',
|
|
'mod_exhibits_json',
|
|
'mod_meetings_json',
|
|
'mod_pres_mgmt_json',
|
|
'cfg_json',
|
|
'enable',
|
|
'hide',
|
|
'priority',
|
|
'sort',
|
|
'group',
|
|
'notes',
|
|
'created_on',
|
|
'updated_on',
|
|
'contact_li_json',
|
|
'external_person_id',
|
|
'physical',
|
|
'virtual',
|
|
'recurring',
|
|
'recurring_pattern',
|
|
'recurring_start_time',
|
|
'recurring_end_time',
|
|
'recurring_text',
|
|
'weekday_sunday',
|
|
'weekday_monday',
|
|
'weekday_tuesday',
|
|
'weekday_wednesday',
|
|
'weekday_thursday',
|
|
'weekday_friday',
|
|
'weekday_saturday',
|
|
'attend_url',
|
|
'attend_url_text',
|
|
'attend_url_code',
|
|
'attend_url_passcode',
|
|
'attend_phone',
|
|
'attend_phone_passcode',
|
|
'tmp_sort_1',
|
|
'tmp_sort_2',
|
|
'file_count',
|
|
'file_count_all',
|
|
'internal_use_count',
|
|
'event_file_id_li_json'
|
|
];
|
|
|
|
async function _process_generic_props<T extends Record<string, any>>({
|
|
obj_li,
|
|
obj_type,
|
|
log_lvl = 0,
|
|
specific_processor
|
|
}: {
|
|
obj_li: T[];
|
|
obj_type: string;
|
|
log_lvl?: number;
|
|
specific_processor?: (obj: T) => Promise<T> | T;
|
|
}): Promise<T[]> {
|
|
if (!obj_li || obj_li.length === 0) return [];
|
|
|
|
const processed_obj_li: T[] = [];
|
|
|
|
for (const original_obj of obj_li) {
|
|
let processed_obj = { ...original_obj };
|
|
|
|
for (const key in processed_obj) {
|
|
if (key.endsWith('_random')) {
|
|
const newKey = key.slice(0, -7);
|
|
(processed_obj as any)[newKey] = processed_obj[key];
|
|
}
|
|
}
|
|
const randomIdKey = `${obj_type}_id_random`;
|
|
if (processed_obj[randomIdKey]) {
|
|
(processed_obj as any).id = processed_obj[randomIdKey];
|
|
}
|
|
|
|
const group = processed_obj.group ?? '0';
|
|
const priority = processed_obj.priority ? 1 : 0;
|
|
const sort = processed_obj.sort ?? '0';
|
|
const updated = processed_obj.updated_on ?? processed_obj.created_on;
|
|
const name = processed_obj.name ?? '';
|
|
|
|
(processed_obj as any).tmp_sort_1 = `${group}_${priority}_${sort}_${updated}`;
|
|
(processed_obj as any).tmp_sort_2 = `${group}_${priority}_${sort}_${name}_${updated}`;
|
|
|
|
if (specific_processor) {
|
|
processed_obj = await Promise.resolve(specific_processor(processed_obj));
|
|
}
|
|
|
|
processed_obj_li.push(processed_obj as T);
|
|
}
|
|
|
|
return processed_obj_li;
|
|
}
|
|
|
|
// Updated 2026-01-20
|
|
export async function process_ae_obj__event_props({
|
|
obj_li,
|
|
log_lvl = 0
|
|
}: {
|
|
obj_li: any[];
|
|
log_lvl?: number;
|
|
}) {
|
|
return _process_generic_props({
|
|
obj_li,
|
|
obj_type: 'event',
|
|
log_lvl,
|
|
specific_processor: (obj) => {
|
|
if (obj.event_code) {
|
|
obj.code = obj.event_code;
|
|
}
|
|
// Ensure ID consistency for components relying on specific ID fields
|
|
if (obj.id && !obj.event_id) {
|
|
obj.event_id = obj.id;
|
|
}
|
|
return obj;
|
|
}
|
|
});
|
|
}
|
|
|
|
export function sync_config__event_pres_mgmt({
|
|
pres_mgmt_cfg_remote,
|
|
pres_mgmt_cfg_local,
|
|
log_lvl = 0
|
|
}: {
|
|
pres_mgmt_cfg_remote: key_val;
|
|
pres_mgmt_cfg_local: key_val;
|
|
log_lvl?: number;
|
|
}) {
|
|
if (log_lvl) {
|
|
console.log(
|
|
`*** sync_config__event_pres_mgmt() *** pres_mgmt_cfg_remote:`,
|
|
pres_mgmt_cfg_remote
|
|
);
|
|
}
|
|
|
|
pres_mgmt_cfg_local.label__person_external_id =
|
|
pres_mgmt_cfg_remote?.label__person_external_id ?? 'External ID';
|
|
pres_mgmt_cfg_local.label__presenter_external_id =
|
|
pres_mgmt_cfg_remote?.label__presenter_external_id ?? 'External ID';
|
|
pres_mgmt_cfg_local.label__session_poc_type =
|
|
pres_mgmt_cfg_remote?.label__session_poc_type ?? 'poc';
|
|
pres_mgmt_cfg_local.label__session_poc_name =
|
|
pres_mgmt_cfg_remote?.label__session_poc_name_short ?? 'POC';
|
|
pres_mgmt_cfg_local.label__session_poc_name =
|
|
pres_mgmt_cfg_remote?.label__session_poc_name ?? 'Point of Contact';
|
|
pres_mgmt_cfg_local.hide__session_poc = pres_mgmt_cfg_remote?.hide__session_poc ?? false;
|
|
pres_mgmt_cfg_local.require__presenter_agree =
|
|
pres_mgmt_cfg_remote?.require__presenter_agree ?? false;
|
|
pres_mgmt_cfg_local.require__session_agree =
|
|
pres_mgmt_cfg_remote?.require__session_agree ?? false;
|
|
pres_mgmt_cfg_local.show__copy_access_link =
|
|
pres_mgmt_cfg_remote?.show__copy_access_link ?? false;
|
|
pres_mgmt_cfg_local.show__email_access_link =
|
|
pres_mgmt_cfg_remote?.show__email_access_link ?? false;
|
|
pres_mgmt_cfg_local.file_purpose_option_kv =
|
|
pres_mgmt_cfg_remote?.file_purpose_option_kv ?? null;
|
|
|
|
if (pres_mgmt_cfg_local.lock_config) {
|
|
console.log(`The config should be locked! Forcing the sync!`);
|
|
pres_mgmt_cfg_local.sync_local_config = true;
|
|
}
|
|
|
|
if (pres_mgmt_cfg_local?.sync_local_config) {
|
|
pres_mgmt_cfg_local.hide__location_code =
|
|
pres_mgmt_cfg_remote?.hide__location_code ?? false;
|
|
pres_mgmt_cfg_local.hide__presentation_code =
|
|
pres_mgmt_cfg_remote?.hide__presentation_code ?? false;
|
|
pres_mgmt_cfg_local.hide__presentation_datetime =
|
|
pres_mgmt_cfg_remote?.hide__presentation_datetime ?? false;
|
|
pres_mgmt_cfg_local.show_content__presentation_description =
|
|
pres_mgmt_cfg_remote?.show_content__presentation_description ?? false;
|
|
pres_mgmt_cfg_local.hide__presenter_code =
|
|
pres_mgmt_cfg_remote?.hide__presenter_code ?? false;
|
|
pres_mgmt_cfg_local.hide__presenter_biography =
|
|
pres_mgmt_cfg_remote?.hide__presenter_biography ?? false;
|
|
pres_mgmt_cfg_local.hide__session_code = pres_mgmt_cfg_remote?.hide__session_code ?? false;
|
|
pres_mgmt_cfg_local.hide__session_description =
|
|
pres_mgmt_cfg_remote?.hide__session_description ?? false;
|
|
pres_mgmt_cfg_local.hide__session_location =
|
|
pres_mgmt_cfg_remote?.hide__session_location ?? false;
|
|
pres_mgmt_cfg_local.hide__session_msg = pres_mgmt_cfg_remote?.hide__session_msg ?? false;
|
|
pres_mgmt_cfg_local.hide__session_poc_profile =
|
|
pres_mgmt_cfg_remote?.hide__session_poc_profile ?? false;
|
|
pres_mgmt_cfg_local.hide__session_poc_biography =
|
|
pres_mgmt_cfg_remote?.hide__session_poc_biography ?? false;
|
|
pres_mgmt_cfg_local.hide__session_poc_profile_pic =
|
|
pres_mgmt_cfg_remote?.hide__session_poc_profile_pic ?? false;
|
|
pres_mgmt_cfg_local.hide_launcher_link = pres_mgmt_cfg_remote?.hide_launcher_link ?? false;
|
|
pres_mgmt_cfg_local.hide_launcher_link_legacy =
|
|
pres_mgmt_cfg_remote?.hide_launcher_link_legacy ?? false;
|
|
}
|
|
|
|
return pres_mgmt_cfg_local;
|
|
} |