mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	add <Suspense> to enable async components and dynamic imports under the deck UI
				
					
				
			This commit is contained in:
		
							parent
							
								
									ed6c781426
								
							
						
					
					
						commit
						1d16656b39
					
				
					 1 changed files with 15 additions and 10 deletions
				
			
		| 
						 | 
					@ -18,6 +18,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
				:style="columns.filter(c => ids.includes(c.id)).some(c => c.flexible) ? { flex: 1, minWidth: '350px' } : { width: Math.max(...columns.filter(c => ids.includes(c.id)).map(c => c.width)) + 'px' }"
 | 
									:style="columns.filter(c => ids.includes(c.id)).some(c => c.flexible) ? { flex: 1, minWidth: '350px' } : { width: Math.max(...columns.filter(c => ids.includes(c.id)).map(c => c.width)) + 'px' }"
 | 
				
			||||||
				@wheel.self="onWheel"
 | 
									@wheel.self="onWheel"
 | 
				
			||||||
			>
 | 
								>
 | 
				
			||||||
 | 
									<Suspense>
 | 
				
			||||||
					<component
 | 
										<component
 | 
				
			||||||
						:is="columnComponents[columns.find(c => c.id === id)!.type] ?? XTlColumn"
 | 
											:is="columnComponents[columns.find(c => c.id === id)!.type] ?? XTlColumn"
 | 
				
			||||||
						v-for="id in ids"
 | 
											v-for="id in ids"
 | 
				
			||||||
| 
						 | 
					@ -28,6 +29,10 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
						:isStacked="ids.length > 1"
 | 
											:isStacked="ids.length > 1"
 | 
				
			||||||
						@headerWheel="onWheel"
 | 
											@headerWheel="onWheel"
 | 
				
			||||||
					/>
 | 
										/>
 | 
				
			||||||
 | 
										<template #fallback>
 | 
				
			||||||
 | 
											<MkLoading/>
 | 
				
			||||||
 | 
										</template>
 | 
				
			||||||
 | 
									</Suspense>
 | 
				
			||||||
			</section>
 | 
								</section>
 | 
				
			||||||
			<div v-if="layout.length === 0" class="_panel" :class="$style.onboarding">
 | 
								<div v-if="layout.length === 0" class="_panel" :class="$style.onboarding">
 | 
				
			||||||
				<div>{{ i18n.ts._deck.introduction }}</div>
 | 
									<div>{{ i18n.ts._deck.introduction }}</div>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue