Last round of prettier: npx prettier --write src/
This commit is contained in:
@@ -8,10 +8,22 @@ import type { Writable } from 'svelte/store';
|
||||
|
||||
import type { key_val } from '$lib/stores/ae_stores';
|
||||
|
||||
import { badges_loc_defaults, badges_sess_defaults } from '$lib/stores/ae_events_stores__badges_defaults';
|
||||
import { launcher_loc_defaults, launcher_sess_defaults } from '$lib/stores/ae_events_stores__launcher_defaults';
|
||||
import { leads_loc_defaults, leads_sess_defaults } from '$lib/stores/ae_events_stores__leads_defaults';
|
||||
import { pres_mgmt_loc_defaults, pres_mgmt_sess_defaults } from '$lib/stores/ae_events_stores__pres_mgmt_defaults';
|
||||
import {
|
||||
badges_loc_defaults,
|
||||
badges_sess_defaults
|
||||
} from '$lib/stores/ae_events_stores__badges_defaults';
|
||||
import {
|
||||
launcher_loc_defaults,
|
||||
launcher_sess_defaults
|
||||
} from '$lib/stores/ae_events_stores__launcher_defaults';
|
||||
import {
|
||||
leads_loc_defaults,
|
||||
leads_sess_defaults
|
||||
} from '$lib/stores/ae_events_stores__leads_defaults';
|
||||
import {
|
||||
pres_mgmt_loc_defaults,
|
||||
pres_mgmt_sess_defaults
|
||||
} from '$lib/stores/ae_events_stores__pres_mgmt_defaults';
|
||||
|
||||
// Deployment version stamp. Compared against events_sess.ver in events/+layout.svelte
|
||||
// to detect stale persisted data after a deploy (triggers a reload). Bump this alongside
|
||||
@@ -72,10 +84,12 @@ const events_local_data_struct: key_val = {
|
||||
|
||||
// Presentation Management — see ae_events_stores__pres_mgmt_defaults.ts
|
||||
pres_mgmt: pres_mgmt_loc_defaults
|
||||
|
||||
};
|
||||
|
||||
export const events_loc: Writable<key_val> = persisted('ae_events_loc', events_local_data_struct);
|
||||
export const events_loc: Writable<key_val> = persisted(
|
||||
'ae_events_loc',
|
||||
events_local_data_struct
|
||||
);
|
||||
|
||||
/* *** BEGIN *** Initialize events_session_data_struct */
|
||||
// In-memory only (writable, not persisted). Resets on page load.
|
||||
@@ -235,4 +249,4 @@ export const events_trig: Writable<key_val> = writable(tmp__events_trig);
|
||||
// events_trig_kv: response/status map — keys are request IDs, values are
|
||||
// completion status or Promise results. Used for tracking parallel downloads.
|
||||
const tmp__events_trig_kv: key_val = {};
|
||||
export const events_trig_kv = writable(tmp__events_trig_kv);
|
||||
export const events_trig_kv = writable(tmp__events_trig_kv);
|
||||
|
||||
Reference in New Issue
Block a user