chore: aggressive cleanup: remove legacy element_data_store.svelte (v1) after v3 migration

This commit is contained in:
Scott Idem
2026-03-17 12:22:00 -04:00
parent 01fef4f113
commit adef935188
27 changed files with 55 additions and 471 deletions

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import AE_Element_Data_Store_V3 from '$lib/elements/element_data_store_v3.svelte';
import AE_Element_Data_Store from '$lib/elements/element_data_store.svelte';
import { ae_loc } from '$lib/stores/ae_stores';
import { db_core } from '$lib/ae_core/db_core';
import { RefreshCw, Trash2 } from '@lucide/svelte';
@@ -52,7 +52,7 @@
<h2 class="h3">Scenario 1: Global Default</h2>
<p class="text-sm">Fetching code <code>{test_null_act_and_for}</code>. Should fall back to <code>account_id = NULL</code> if not found for account.</p>
<div class="bg-surface-100 dark:bg-surface-800 p-4 rounded-lg border border-surface-500/20">
<AE_Element_Data_Store_V3
<AE_Element_Data_Store
ds_code={test_null_act_and_for}
ds_name={'Global Default Test'}
{log_lvl}
@@ -65,7 +65,7 @@
<h2 class="h3">Scenario 2: Account Default</h2>
<p class="text-sm">Fetching code <code>{test_code_account}</code> for Account ID: <code>{$ae_loc.account_id}</code>.</p>
<div class="bg-surface-100 dark:bg-surface-800 p-4 rounded-lg border border-surface-500/20">
<AE_Element_Data_Store_V3
<AE_Element_Data_Store
ds_code={test_code_account}
ds_name={'Account Default Test'}
{log_lvl}
@@ -78,7 +78,7 @@
<h2 class="h3">Scenario 3: Specific Record (Event Override)</h2>
<p class="text-sm">Fetching code <code>{test_code_and_for}</code> linked to <code>for_type: event</code> and <code>for_id: {testing_event_id}</code>.</p>
<div class="bg-surface-100 dark:bg-surface-800 p-4 rounded-lg border border-surface-500/20">
<AE_Element_Data_Store_V3
<AE_Element_Data_Store
ds_code={test_code_and_for}
ds_name={'Specific Record Test'}
for_type="event"
@@ -93,7 +93,7 @@
<h2 class="h3">Scenario 4: Change Props Passed</h2>
<p class="text-sm">Fetching code <code>{test_code_and_for}</code> linked to <code>for_type: event</code> and <code>for_id: {testing_event_id}</code>.</p>
<div class="bg-surface-100 dark:bg-surface-800 p-4 rounded-lg border border-surface-500/20">
<AE_Element_Data_Store_V3
<AE_Element_Data_Store
ds_code={test_code_and_for}
ds_name={'Specific Record Test'}
ds_type="html"