forked from Cutlery/immich
		
	feat(web): bigger dialog box of location change (#5862)
This commit is contained in:
		
							parent
							
								
									f4c5bdfa1c
								
							
						
					
					
						commit
						1c69dff967
					
				@ -41,12 +41,13 @@
 | 
				
			|||||||
  confirmColor="primary"
 | 
					  confirmColor="primary"
 | 
				
			||||||
  cancelColor="secondary"
 | 
					  cancelColor="secondary"
 | 
				
			||||||
  title="Change Location"
 | 
					  title="Change Location"
 | 
				
			||||||
 | 
					  width={800}
 | 
				
			||||||
  on:confirm={handleConfirm}
 | 
					  on:confirm={handleConfirm}
 | 
				
			||||||
  on:cancel={handleCancel}
 | 
					  on:cancel={handleCancel}
 | 
				
			||||||
>
 | 
					>
 | 
				
			||||||
  <div slot="prompt" class="flex flex-col w-full h-full gap-2">
 | 
					  <div slot="prompt" class="flex flex-col w-full h-full gap-2">
 | 
				
			||||||
    <label for="datetime">Pick a location</label>
 | 
					    <label for="datetime">Pick a location</label>
 | 
				
			||||||
    <div class="h-[350px] min-h-[300px] w-full">
 | 
					    <div class="h-[500px] min-h-[300px] w-full">
 | 
				
			||||||
      <Map
 | 
					      <Map
 | 
				
			||||||
        mapMarkers={lat && lng && asset ? [{ id: asset.id, lat, lon: lng }] : []}
 | 
					        mapMarkers={lat && lng && asset ? [{ id: asset.id, lat, lon: lng }] : []}
 | 
				
			||||||
        {zoom}
 | 
					        {zoom}
 | 
				
			||||||
 | 
				
			|||||||
@ -12,6 +12,7 @@
 | 
				
			|||||||
  export let cancelColor: Color = 'primary';
 | 
					  export let cancelColor: Color = 'primary';
 | 
				
			||||||
  export let hideCancelButton = false;
 | 
					  export let hideCancelButton = false;
 | 
				
			||||||
  export let disabled = false;
 | 
					  export let disabled = false;
 | 
				
			||||||
 | 
					  export let width = 500;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const dispatch = createEventDispatcher<{ cancel: void; confirm: void; 'click-outside': void }>();
 | 
					  const dispatch = createEventDispatcher<{ cancel: void; confirm: void; 'click-outside': void }>();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -36,7 +37,8 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
<FullScreenModal on:clickOutside={handleClickOutside} on:escape={() => handleEscape()}>
 | 
					<FullScreenModal on:clickOutside={handleClickOutside} on:escape={() => handleEscape()}>
 | 
				
			||||||
  <div
 | 
					  <div
 | 
				
			||||||
    class="w-[500px] max-w-[95vw] rounded-3xl border bg-immich-bg p-4 py-8 shadow-sm dark:border-immich-dark-gray dark:bg-immich-dark-gray dark:text-immich-dark-fg"
 | 
					    class="max-w-[95vw] rounded-3xl border bg-immich-bg p-4 py-8 shadow-sm dark:border-immich-dark-gray dark:bg-immich-dark-gray dark:text-immich-dark-fg"
 | 
				
			||||||
 | 
					    style="width: {width}px"
 | 
				
			||||||
  >
 | 
					  >
 | 
				
			||||||
    <div
 | 
					    <div
 | 
				
			||||||
      class="flex flex-col place-content-center place-items-center gap-4 px-4 text-immich-primary dark:text-immich-dark-primary"
 | 
					      class="flex flex-col place-content-center place-items-center gap-4 px-4 text-immich-primary dark:text-immich-dark-primary"
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user