added new geoPoint field

This commit is contained in:
Gani Georgiev
2025-04-02 11:38:19 +03:00
parent f3a836eb7c
commit 4c5abd5bd9
60 changed files with 1373 additions and 1143 deletions

View File

@@ -5,6 +5,7 @@
import TinyMCE from "@/components/base/TinyMCE.svelte";
import RecordFileThumb from "@/components/records/RecordFileThumb.svelte";
import RecordInfo from "@/components/records/RecordInfo.svelte";
import GeoPointValue from "@/components/records/fields/GeoPointValue.svelte";
import { superuser } from "@/stores/superuser";
import CommonHelper from "@/utils/CommonHelper";
@@ -120,6 +121,8 @@
...
{/if}
</div>
{:else if field.type === "geoPoint"}
<div class="label"><GeoPointValue value={rawValue} /></div>
{:else if short}
<span class="txt txt-ellipsis" title={CommonHelper.truncate(rawValue)}>
{CommonHelper.truncate(rawValue)}

View File

@@ -1,8 +1,9 @@
<script>
import CommonHelper from "@/utils/CommonHelper";
import RecordFileThumb from "@/components/records/RecordFileThumb.svelte";
import RecordInfoContent from "@/components/records/RecordInfoContent.svelte";
import GeoPointValue from "@/components/records/fields/GeoPointValue.svelte";
import { collections } from "@/stores/collections";
import CommonHelper from "@/utils/CommonHelper";
export let record;
@@ -53,6 +54,8 @@
{#if field.type == "relation" && record.expand?.[field.name]}
<RecordInfoContent bind:record={record.expand[field.name]} />
{:else if field.type == "geoPoint"}
<GeoPointValue value={record[field.name]} />
{:else}
{CommonHelper.truncate(CommonHelper.displayValue(record, [field.name]), 70)}
{/if}

View File

@@ -23,6 +23,7 @@
import SelectField from "@/components/records/fields/SelectField.svelte";
import TextField from "@/components/records/fields/TextField.svelte";
import UrlField from "@/components/records/fields/UrlField.svelte";
import GeoPointField from "@/components/records/fields/GeoPointField.svelte";
import ImpersonatePopup from "@/components/records/ImpersonatePopup.svelte";
import { confirm } from "@/stores/confirmation";
import { setErrors } from "@/stores/errors";
@@ -730,6 +731,8 @@
<RelationField {field} {original} {record} bind:value={record[field.name]} />
{:else if field.type === "password"}
<PasswordField {field} {original} {record} bind:value={record[field.name]} />
{:else if field.type === "geoPoint"}
<GeoPointField {field} {original} {record} bind:value={record[field.name]} />
{/if}
{/each}
</form>

View File

@@ -0,0 +1,143 @@
<script>
import tooltip from "@/actions/tooltip";
import Field from "@/components/base/Field.svelte";
import FieldLabel from "@/components/records/fields/FieldLabel.svelte";
import { slide } from "svelte/transition";
export let original;
export let field;
export let value = undefined;
let mapComponent;
let isMapComponentLoading = false;
let isMapVisible = false;
$: if (typeof value === "undefined") {
value = { lat: 0, lon: 0 };
}
$: if (value) {
normalize();
}
function normalize() {
if (value.lat > 90) {
value.lat = 90;
}
if (value.lat < -90) {
value.lat = -90;
}
if (value.lon > 180) {
value.lon = 180;
}
if (value.lon < -180) {
value.lon = -180;
}
}
function toggleMapVisibility() {
if (isMapVisible) {
hideMap();
} else {
showMap();
}
}
function showMap() {
loadMapComponent();
isMapVisible = true;
}
function hideMap() {
isMapVisible = false;
}
async function loadMapComponent() {
if (mapComponent || isMapComponentLoading) {
return; // already loaded or in the process
}
isMapComponentLoading = true;
mapComponent = (await import("@/components/base/Leaflet.svelte")).default;
isMapComponentLoading = false;
}
</script>
<Field class="form-field form-field-list {field.required ? 'required' : ''}" name={field.name} let:uniqueId>
<FieldLabel {uniqueId} {field} />
<div class="list">
<div class="list-item">
<Field class="form-field form-field-inline m-0" let:uniqueId>
<label for={uniqueId}>Longitude:</label>
<input
type="number"
id={uniqueId}
required={field.required}
placeholder="0"
step="any"
min="-180"
max="180"
bind:value={value.lon}
/>
</Field>
<span class="separator"></span>
<Field class="form-field form-field-inline m-0" let:uniqueId>
<label for={uniqueId}>Latitude:</label>
<input
type="number"
id={uniqueId}
required={field.required}
placeholder="0"
step="any"
min="-90"
max="90"
bind:value={value.lat}
/>
</Field>
<span class="separator"></span>
<button
type="button"
class="btn btn-circle btn-sm btn-circle {isMapVisible
? 'btn-secondary'
: 'btn-hint btn-transparent'}"
aria-label="Toggle map"
use:tooltip={"Toggle map"}
on:click={toggleMapVisibility}
>
<i class="ri-map-2-line"></i>
</button>
</div>
{#if isMapVisible}
<div class="block" style="height:200px" transition:slide={{ duration: 150 }}>
{#if isMapComponentLoading}
<div class="block txt-center p-base">
<span class="loader loader-sm"></span>
</div>
{:else}
<svelte:component this={mapComponent} height={200} bind:point={value} />
{/if}
</div>
{/if}
</div>
</Field>
<style lang="scss">
.list-item {
padding: 5px 10px;
min-height: 0;
gap: 10px;
}
.separator {
align-self: stretch;
background: var(--baseAlt2Color);
width: 1px;
margin: -5px 0;
}
</style>

View File

@@ -0,0 +1,9 @@
<script>
export let value = {};
</script>
<div class="txt">
{value?.lon}
<span class="txt-disabled txt-xs">|</span>
{value.lat}
</div>