Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
f6984fcbfe
|
|||
|
c11882adfb
|
|||
|
707f4ac11c
|
|||
|
3bada05b63
|
|||
|
f01730fef5
|
|||
|
448c51bab6
|
|||
|
0bcbae374b
|
|||
|
c33fe3b268
|
|||
|
18bda60310
|
|||
|
86d25dc6ba
|
|||
|
5b8bec6a00
|
|||
|
f2c2eb1fdc
|
|||
|
b42c4881f6
|
|||
|
b18e299eca
|
|||
|
401ed41fcd
|
|||
|
504e8fab94
|
|||
|
76897c9e69
|
@@ -19,6 +19,12 @@ import iconRounded from '../../icons/icon-rounded.svg?raw';
|
|||||||
|
|
||||||
<div class="sidebar-content">
|
<div class="sidebar-content">
|
||||||
<ul class="app-menu">
|
<ul class="app-menu">
|
||||||
|
<li>
|
||||||
|
<button type="button" {{on "click" @onSavedPlaces}}>
|
||||||
|
<Icon @name="bookmark" @size={{20}} />
|
||||||
|
<span>Saved places</span>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<button type="button" {{on "click" (fn @onNavigate "settings")}}>
|
<button type="button" {{on "click" (fn @onNavigate "settings")}}>
|
||||||
<Icon @name="settings" @size={{20}} />
|
<Icon @name="settings" @size={{20}} />
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import Component from '@glimmer/component';
|
|||||||
import { action } from '@ember/object';
|
import { action } from '@ember/object';
|
||||||
import { tracked } from '@glimmer/tracking';
|
import { tracked } from '@glimmer/tracking';
|
||||||
import { fn } from '@ember/helper';
|
import { fn } from '@ember/helper';
|
||||||
|
import { service } from '@ember/service';
|
||||||
import eq from 'ember-truth-helpers/helpers/eq';
|
import eq from 'ember-truth-helpers/helpers/eq';
|
||||||
|
|
||||||
import AppMenuHome from './home';
|
import AppMenuHome from './home';
|
||||||
@@ -9,6 +10,7 @@ import AppMenuSettings from './settings';
|
|||||||
import AppMenuAbout from './about';
|
import AppMenuAbout from './about';
|
||||||
|
|
||||||
export default class AppMenu extends Component {
|
export default class AppMenu extends Component {
|
||||||
|
@service router;
|
||||||
@tracked currentView = 'menu'; // 'menu', 'settings', 'about'
|
@tracked currentView = 'menu'; // 'menu', 'settings', 'about'
|
||||||
|
|
||||||
@action
|
@action
|
||||||
@@ -16,10 +18,19 @@ export default class AppMenu extends Component {
|
|||||||
this.currentView = view;
|
this.currentView = view;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
goToSavedPlaces() {
|
||||||
|
this.router.transitionTo('lists.index');
|
||||||
|
}
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="sidebar app-menu-pane">
|
<div class="sidebar app-menu-pane">
|
||||||
{{#if (eq this.currentView "menu")}}
|
{{#if (eq this.currentView "menu")}}
|
||||||
<AppMenuHome @onNavigate={{this.setView}} @onClose={{@onClose}} />
|
<AppMenuHome
|
||||||
|
@onNavigate={{this.setView}}
|
||||||
|
@onClose={{@onClose}}
|
||||||
|
@onSavedPlaces={{this.goToSavedPlaces}}
|
||||||
|
/>
|
||||||
|
|
||||||
{{else if (eq this.currentView "settings")}}
|
{{else if (eq this.currentView "settings")}}
|
||||||
<AppMenuSettings
|
<AppMenuSettings
|
||||||
|
|||||||
@@ -5,7 +5,11 @@ import { tracked } from '@glimmer/tracking';
|
|||||||
import { service } from '@ember/service';
|
import { service } from '@ember/service';
|
||||||
import { fn } from '@ember/helper';
|
import { fn } from '@ember/helper';
|
||||||
import Icon from '#components/icon';
|
import Icon from '#components/icon';
|
||||||
import { normalizeRelayUrl } from '../../../utils/nostr';
|
import {
|
||||||
|
excludeRequiredRelays,
|
||||||
|
mergeRequiredRelays,
|
||||||
|
normalizeRelayUrl,
|
||||||
|
} from '../../../utils/nostr';
|
||||||
|
|
||||||
const stripProtocol = (url) => (url ? url.replace(/^wss?:\/\//, '') : '');
|
const stripProtocol = (url) => (url ? url.replace(/^wss?:\/\//, '') : '');
|
||||||
|
|
||||||
@@ -17,6 +21,74 @@ export default class AppMenuSettingsNostr extends Component {
|
|||||||
@tracked newReadRelay = '';
|
@tracked newReadRelay = '';
|
||||||
@tracked newWriteRelay = '';
|
@tracked newWriteRelay = '';
|
||||||
|
|
||||||
|
get customReadRelays() {
|
||||||
|
return excludeRequiredRelays(
|
||||||
|
this.settings.nostrReadRelays || [],
|
||||||
|
this.nostrData.requiredReadRelays
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
get customWriteRelays() {
|
||||||
|
return excludeRequiredRelays(
|
||||||
|
this.settings.nostrWriteRelays || [],
|
||||||
|
this.nostrData.requiredWriteRelays
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
get readRelayExclusions() {
|
||||||
|
return this.settings.nostrReadRelayExclusions || [];
|
||||||
|
}
|
||||||
|
|
||||||
|
get writeRelayExclusions() {
|
||||||
|
return this.settings.nostrWriteRelayExclusions || [];
|
||||||
|
}
|
||||||
|
|
||||||
|
get requiredReadRelaySet() {
|
||||||
|
return new Set(this.nostrData.requiredReadRelays.filter(Boolean));
|
||||||
|
}
|
||||||
|
|
||||||
|
get requiredWriteRelaySet() {
|
||||||
|
return new Set(this.nostrData.requiredWriteRelays.filter(Boolean));
|
||||||
|
}
|
||||||
|
|
||||||
|
get mailboxReadRelaySet() {
|
||||||
|
return new Set(this.nostrData.mailboxReadRelays);
|
||||||
|
}
|
||||||
|
|
||||||
|
get mailboxWriteRelaySet() {
|
||||||
|
return new Set(this.nostrData.mailboxWriteRelays);
|
||||||
|
}
|
||||||
|
|
||||||
|
get hasReadOverrides() {
|
||||||
|
return (
|
||||||
|
this.customReadRelays.length > 0 || this.readRelayExclusions.length > 0
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
get hasWriteOverrides() {
|
||||||
|
return (
|
||||||
|
this.customWriteRelays.length > 0 || this.writeRelayExclusions.length > 0
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
get readRelaysForDisplay() {
|
||||||
|
return this.nostrData.activeReadRelays.map((url) => {
|
||||||
|
return {
|
||||||
|
url,
|
||||||
|
isRequired: this.requiredReadRelaySet.has(url),
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
get writeRelaysForDisplay() {
|
||||||
|
return this.nostrData.activeWriteRelays.map((url) => {
|
||||||
|
return {
|
||||||
|
url,
|
||||||
|
isRequired: this.requiredWriteRelaySet.has(url),
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
updateNewReadRelay(event) {
|
updateNewReadRelay(event) {
|
||||||
this.newReadRelay = event.target.value;
|
this.newReadRelay = event.target.value;
|
||||||
@@ -32,19 +104,51 @@ export default class AppMenuSettingsNostr extends Component {
|
|||||||
const url = normalizeRelayUrl(this.newReadRelay);
|
const url = normalizeRelayUrl(this.newReadRelay);
|
||||||
if (!url) return;
|
if (!url) return;
|
||||||
|
|
||||||
const current =
|
const merged = mergeRequiredRelays(this.nostrData.requiredReadRelays, [
|
||||||
this.settings.nostrReadRelays || this.nostrData.defaultReadRelays;
|
...this.customReadRelays,
|
||||||
const set = new Set([...current, url]);
|
url,
|
||||||
this.settings.update('nostrReadRelays', Array.from(set));
|
]);
|
||||||
|
const custom = excludeRequiredRelays(
|
||||||
|
merged,
|
||||||
|
this.nostrData.requiredReadRelays
|
||||||
|
);
|
||||||
|
|
||||||
|
const readExclusions = this.readRelayExclusions.filter((relay) => {
|
||||||
|
return normalizeRelayUrl(relay) !== url;
|
||||||
|
});
|
||||||
|
|
||||||
|
this.settings.update('nostrReadRelays', custom.length > 0 ? custom : null);
|
||||||
|
this.settings.update(
|
||||||
|
'nostrReadRelayExclusions',
|
||||||
|
readExclusions.length > 0 ? readExclusions : null
|
||||||
|
);
|
||||||
this.newReadRelay = '';
|
this.newReadRelay = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
removeReadRelay(url) {
|
removeReadRelay(url) {
|
||||||
const current =
|
if (this.requiredReadRelaySet.has(url)) {
|
||||||
this.settings.nostrReadRelays || this.nostrData.defaultReadRelays;
|
return;
|
||||||
const filtered = current.filter((r) => r !== url);
|
}
|
||||||
this.settings.update('nostrReadRelays', filtered);
|
|
||||||
|
const normalizedUrl = normalizeRelayUrl(url);
|
||||||
|
|
||||||
|
const remainingCustom = this.customReadRelays.filter((relay) => {
|
||||||
|
return normalizeRelayUrl(relay) !== normalizedUrl;
|
||||||
|
});
|
||||||
|
|
||||||
|
const nextExclusions = this.mailboxReadRelaySet.has(normalizedUrl)
|
||||||
|
? Array.from(new Set([...this.readRelayExclusions, normalizedUrl]))
|
||||||
|
: this.readRelayExclusions;
|
||||||
|
|
||||||
|
this.settings.update(
|
||||||
|
'nostrReadRelays',
|
||||||
|
remainingCustom.length > 0 ? remainingCustom : null
|
||||||
|
);
|
||||||
|
this.settings.update(
|
||||||
|
'nostrReadRelayExclusions',
|
||||||
|
nextExclusions.length > 0 ? nextExclusions : null
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
@@ -64,6 +168,7 @@ export default class AppMenuSettingsNostr extends Component {
|
|||||||
@action
|
@action
|
||||||
resetReadRelays() {
|
resetReadRelays() {
|
||||||
this.settings.update('nostrReadRelays', null);
|
this.settings.update('nostrReadRelays', null);
|
||||||
|
this.settings.update('nostrReadRelayExclusions', null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
@@ -71,24 +176,57 @@ export default class AppMenuSettingsNostr extends Component {
|
|||||||
const url = normalizeRelayUrl(this.newWriteRelay);
|
const url = normalizeRelayUrl(this.newWriteRelay);
|
||||||
if (!url) return;
|
if (!url) return;
|
||||||
|
|
||||||
const current =
|
const merged = mergeRequiredRelays(this.nostrData.requiredWriteRelays, [
|
||||||
this.settings.nostrWriteRelays || this.nostrData.defaultWriteRelays;
|
...this.customWriteRelays,
|
||||||
const set = new Set([...current, url]);
|
url,
|
||||||
this.settings.update('nostrWriteRelays', Array.from(set));
|
]);
|
||||||
|
const custom = excludeRequiredRelays(
|
||||||
|
merged,
|
||||||
|
this.nostrData.requiredWriteRelays
|
||||||
|
);
|
||||||
|
|
||||||
|
const writeExclusions = this.writeRelayExclusions.filter((relay) => {
|
||||||
|
return normalizeRelayUrl(relay) !== url;
|
||||||
|
});
|
||||||
|
|
||||||
|
this.settings.update('nostrWriteRelays', custom.length > 0 ? custom : null);
|
||||||
|
this.settings.update(
|
||||||
|
'nostrWriteRelayExclusions',
|
||||||
|
writeExclusions.length > 0 ? writeExclusions : null
|
||||||
|
);
|
||||||
this.newWriteRelay = '';
|
this.newWriteRelay = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
removeWriteRelay(url) {
|
removeWriteRelay(url) {
|
||||||
const current =
|
if (this.requiredWriteRelaySet.has(url)) {
|
||||||
this.settings.nostrWriteRelays || this.nostrData.defaultWriteRelays;
|
return;
|
||||||
const filtered = current.filter((r) => r !== url);
|
}
|
||||||
this.settings.update('nostrWriteRelays', filtered);
|
|
||||||
|
const normalizedUrl = normalizeRelayUrl(url);
|
||||||
|
|
||||||
|
const remainingCustom = this.customWriteRelays.filter((relay) => {
|
||||||
|
return normalizeRelayUrl(relay) !== normalizedUrl;
|
||||||
|
});
|
||||||
|
|
||||||
|
const nextExclusions = this.mailboxWriteRelaySet.has(normalizedUrl)
|
||||||
|
? Array.from(new Set([...this.writeRelayExclusions, normalizedUrl]))
|
||||||
|
: this.writeRelayExclusions;
|
||||||
|
|
||||||
|
this.settings.update(
|
||||||
|
'nostrWriteRelays',
|
||||||
|
remainingCustom.length > 0 ? remainingCustom : null
|
||||||
|
);
|
||||||
|
this.settings.update(
|
||||||
|
'nostrWriteRelayExclusions',
|
||||||
|
nextExclusions.length > 0 ? nextExclusions : null
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
resetWriteRelays() {
|
resetWriteRelays() {
|
||||||
this.settings.update('nostrWriteRelays', null);
|
this.settings.update('nostrWriteRelays', null);
|
||||||
|
this.settings.update('nostrWriteRelayExclusions', null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
@@ -112,18 +250,20 @@ export default class AppMenuSettingsNostr extends Component {
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="new-read-relay">Read Relays</label>
|
<label for="new-read-relay">Read Relays</label>
|
||||||
<ul class="relay-list">
|
<ul class="relay-list">
|
||||||
{{#each this.nostrData.activeReadRelays as |relay|}}
|
{{#each this.readRelaysForDisplay as |relay|}}
|
||||||
<li>
|
<li>
|
||||||
<span>{{stripProtocol relay}}</span>
|
<span>{{stripProtocol relay.url}}</span>
|
||||||
<button
|
{{#unless relay.isRequired}}
|
||||||
type="button"
|
<button
|
||||||
class="btn-remove-relay"
|
type="button"
|
||||||
title="Remove relay"
|
class="btn-remove-relay"
|
||||||
aria-label="Remove"
|
title="Remove relay"
|
||||||
{{on "click" (fn this.removeReadRelay relay)}}
|
aria-label="Remove"
|
||||||
>
|
{{on "click" (fn this.removeReadRelay relay.url)}}
|
||||||
<Icon @name="x" @size={{14}} @color="currentColor" />
|
>
|
||||||
</button>
|
<Icon @name="x" @size={{14}} @color="currentColor" />
|
||||||
|
</button>
|
||||||
|
{{/unless}}
|
||||||
</li>
|
</li>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</ul>
|
</ul>
|
||||||
@@ -143,7 +283,7 @@ export default class AppMenuSettingsNostr extends Component {
|
|||||||
{{on "click" this.addReadRelay}}
|
{{on "click" this.addReadRelay}}
|
||||||
>Add</button>
|
>Add</button>
|
||||||
</div>
|
</div>
|
||||||
{{#if this.settings.nostrReadRelays}}
|
{{#if this.hasReadOverrides}}
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="btn-link reset-relays"
|
class="btn-link reset-relays"
|
||||||
@@ -157,18 +297,20 @@ export default class AppMenuSettingsNostr extends Component {
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="new-write-relay">Write Relays</label>
|
<label for="new-write-relay">Write Relays</label>
|
||||||
<ul class="relay-list">
|
<ul class="relay-list">
|
||||||
{{#each this.nostrData.activeWriteRelays as |relay|}}
|
{{#each this.writeRelaysForDisplay as |relay|}}
|
||||||
<li>
|
<li>
|
||||||
<span>{{stripProtocol relay}}</span>
|
<span>{{stripProtocol relay.url}}</span>
|
||||||
<button
|
{{#unless relay.isRequired}}
|
||||||
type="button"
|
<button
|
||||||
class="btn-remove-relay"
|
type="button"
|
||||||
title="Remove relay"
|
class="btn-remove-relay"
|
||||||
aria-label="Remove"
|
title="Remove relay"
|
||||||
{{on "click" (fn this.removeWriteRelay relay)}}
|
aria-label="Remove"
|
||||||
>
|
{{on "click" (fn this.removeWriteRelay relay.url)}}
|
||||||
<Icon @name="x" @size={{14}} @color="currentColor" />
|
>
|
||||||
</button>
|
<Icon @name="x" @size={{14}} @color="currentColor" />
|
||||||
|
</button>
|
||||||
|
{{/unless}}
|
||||||
</li>
|
</li>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</ul>
|
</ul>
|
||||||
@@ -188,7 +330,7 @@ export default class AppMenuSettingsNostr extends Component {
|
|||||||
{{on "click" this.addWriteRelay}}
|
{{on "click" this.addWriteRelay}}
|
||||||
>Add</button>
|
>Add</button>
|
||||||
</div>
|
</div>
|
||||||
{{#if this.settings.nostrWriteRelays}}
|
{{#if this.hasWriteOverrides}}
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="btn-link reset-relays"
|
class="btn-link reset-relays"
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ export default class PlaceDetails extends Component {
|
|||||||
@service storage;
|
@service storage;
|
||||||
@service nostrAuth;
|
@service nostrAuth;
|
||||||
@service nostrData;
|
@service nostrData;
|
||||||
|
@service mapUi;
|
||||||
@tracked isEditing = false;
|
@tracked isEditing = false;
|
||||||
@tracked showLists = false;
|
@tracked showLists = false;
|
||||||
@tracked isPhotoUploadActive = false;
|
@tracked isPhotoUploadActive = false;
|
||||||
@@ -345,9 +346,21 @@ export default class PlaceDetails extends Component {
|
|||||||
|
|
||||||
get osmUrl() {
|
get osmUrl() {
|
||||||
const id = this.place.osmId;
|
const id = this.place.osmId;
|
||||||
if (!id) return null;
|
if (id) {
|
||||||
const type = this.place.osmType || 'node';
|
const type = this.place.osmType || 'node';
|
||||||
return `https://www.openstreetmap.org/${type}/${id}`;
|
return `https://www.openstreetmap.org/${type}/${id}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const lat = this.place.lat;
|
||||||
|
const lon = this.place.lon;
|
||||||
|
if (!lat || !lon) return null;
|
||||||
|
|
||||||
|
const viewLat = this.mapUi.currentCenter?.lat ?? lat;
|
||||||
|
const viewLon = this.mapUi.currentCenter?.lon ?? lon;
|
||||||
|
const zoom = this.mapUi.currentZoom ?? 17;
|
||||||
|
const roundedZoom = Math.round(zoom);
|
||||||
|
|
||||||
|
return `https://www.openstreetmap.org/search?lat=${lat}&lon=${lon}&zoom=${roundedZoom}#map=${roundedZoom}/${Number(viewLat).toFixed(5)}/${Number(viewLon).toFixed(5)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
get gmapsUrl() {
|
get gmapsUrl() {
|
||||||
@@ -591,7 +604,7 @@ export default class PlaceDetails extends Component {
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{#if this.osmUrl}}
|
{{#if this.place.osmId}}
|
||||||
<div class="meta-info">
|
<div class="meta-info">
|
||||||
<p class="content-with-icon">
|
<p class="content-with-icon">
|
||||||
<Icon @name="feather-camera" />
|
<Icon @name="feather-camera" />
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ export default class PlaceListsManager extends Component {
|
|||||||
checked={{this.isSaved}}
|
checked={{this.isSaved}}
|
||||||
{{on "change" this.toggleSaved}}
|
{{on "change" this.toggleSaved}}
|
||||||
/>
|
/>
|
||||||
<span class="list-color"></span>
|
<span class="list-color-dot"></span>
|
||||||
<span class="list-name">Saved places</span>
|
<span class="list-name">Saved places</span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
@@ -122,7 +122,7 @@ export default class PlaceListsManager extends Component {
|
|||||||
/>
|
/>
|
||||||
{{! template-lint-disable no-inline-styles }}
|
{{! template-lint-disable no-inline-styles }}
|
||||||
<span
|
<span
|
||||||
class="list-color"
|
class="list-color-dot"
|
||||||
style={{this.styleFor list.color}}
|
style={{this.styleFor list.color}}
|
||||||
></span>
|
></span>
|
||||||
<span class="list-name">{{list.title}}</span>
|
<span class="list-name">{{list.title}}</span>
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import PlaceDetails from './place-details';
|
|||||||
import Icon from './icon';
|
import Icon from './icon';
|
||||||
import humanizeOsmTag from '../helpers/humanize-osm-tag';
|
import humanizeOsmTag from '../helpers/humanize-osm-tag';
|
||||||
import { getLocalizedName, getPlaceType } from '../utils/osm';
|
import { getLocalizedName, getPlaceType } from '../utils/osm';
|
||||||
|
import restoreScroll from '../modifiers/restore-scroll';
|
||||||
|
|
||||||
export default class PlacesSidebar extends Component {
|
export default class PlacesSidebar extends Component {
|
||||||
@service storage;
|
@service storage;
|
||||||
@@ -168,7 +169,17 @@ export default class PlacesSidebar extends Component {
|
|||||||
{{on "click" this.clearSelection}}
|
{{on "click" this.clearSelection}}
|
||||||
><Icon @name="arrow-left" @size={{20}} @color="#333" /></button>
|
><Icon @name="arrow-left" @size={{20}} @color="#333" /></button>
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#if this.isNearbySearch}}
|
{{#if @onBack}}
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="back-btn"
|
||||||
|
{{on "click" @onBack}}
|
||||||
|
><Icon @name="arrow-left" @size={{20}} @color="#333" /></button>
|
||||||
|
{{/if}}
|
||||||
|
{{#if @title}}
|
||||||
|
<h2><Icon @name="bookmark" @size={{20}} @color="#333" />
|
||||||
|
{{@title}}</h2>
|
||||||
|
{{else if this.isNearbySearch}}
|
||||||
<h2><Icon @name="target" @size={{20}} @color="#ea4335" />
|
<h2><Icon @name="target" @size={{20}} @color="#ea4335" />
|
||||||
Nearby</h2>
|
Nearby</h2>
|
||||||
{{else}}
|
{{else}}
|
||||||
@@ -182,7 +193,7 @@ export default class PlacesSidebar extends Component {
|
|||||||
/></button>
|
/></button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="sidebar-content">
|
<div class="sidebar-content" {{restoreScroll @scrollTop}}>
|
||||||
{{#if @selectedPlace}}
|
{{#if @selectedPlace}}
|
||||||
<PlaceDetails
|
<PlaceDetails
|
||||||
@place={{@selectedPlace}}
|
@place={{@selectedPlace}}
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import { modifier } from 'ember-modifier';
|
||||||
|
|
||||||
|
export default modifier((element, [scrollTop]) => {
|
||||||
|
if (element && typeof scrollTop === 'number' && scrollTop > 0) {
|
||||||
|
// Restore inside requestAnimationFrame to guarantee layout rendering is ready
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
element.scrollTop = scrollTop;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -10,6 +10,10 @@ Router.map(function () {
|
|||||||
this.route('place', { path: '/place/:place_id' });
|
this.route('place', { path: '/place/:place_id' });
|
||||||
this.route('place.new', { path: '/place/new' });
|
this.route('place.new', { path: '/place/new' });
|
||||||
this.route('search');
|
this.route('search');
|
||||||
|
this.route('menu');
|
||||||
|
this.route('lists', function () {
|
||||||
|
this.route('list', { path: '/:list_id' });
|
||||||
|
});
|
||||||
this.route('oauth', function () {
|
this.route('oauth', function () {
|
||||||
this.route('osm-callback', { path: '/osm/callback' });
|
this.route('osm-callback', { path: '/osm/callback' });
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -6,5 +6,6 @@ export default class IndexRoute extends Route {
|
|||||||
|
|
||||||
activate() {
|
activate() {
|
||||||
this.mapUi.clearSearchResults();
|
this.mapUi.clearSearchResults();
|
||||||
|
this.mapUi.hideSidebar();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import Route from '@ember/routing/route';
|
||||||
|
import { service } from '@ember/service';
|
||||||
|
|
||||||
|
export default class ListsRoute extends Route {
|
||||||
|
@service mapUi;
|
||||||
|
|
||||||
|
activate() {
|
||||||
|
this.mapUi.showSidebar();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
import Route from '@ember/routing/route';
|
||||||
|
|
||||||
|
export default class ListsIndexRoute extends Route {}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
import Route from '@ember/routing/route';
|
||||||
|
import { service } from '@ember/service';
|
||||||
|
|
||||||
|
export default class ListsListRoute extends Route {
|
||||||
|
@service storage;
|
||||||
|
|
||||||
|
async model(params) {
|
||||||
|
const listId = params.list_id;
|
||||||
|
try {
|
||||||
|
const places = await this.storage.getPlacesInList(listId);
|
||||||
|
return { listId, places };
|
||||||
|
} catch (e) {
|
||||||
|
console.error('Failed to load places in list', listId, e);
|
||||||
|
return { listId, places: [] };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import Route from '@ember/routing/route';
|
||||||
|
import { service } from '@ember/service';
|
||||||
|
|
||||||
|
export default class MenuRoute extends Route {
|
||||||
|
@service mapUi;
|
||||||
|
|
||||||
|
activate() {
|
||||||
|
this.mapUi.showSidebar();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -108,6 +108,7 @@ export default class PlaceRoute extends Route {
|
|||||||
this.mapUi.clearSelection();
|
this.mapUi.clearSelection();
|
||||||
// Reset the "return to search" flag so it doesn't persist to subsequent navigations
|
// Reset the "return to search" flag so it doesn't persist to subsequent navigations
|
||||||
this.mapUi.returnToSearch = false;
|
this.mapUi.returnToSearch = false;
|
||||||
|
this.mapUi.returnToRoute = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
async loadOsmPlace(id, type = null) {
|
async loadOsmPlace(id, type = null) {
|
||||||
|
|||||||
+23
-1
@@ -1,5 +1,6 @@
|
|||||||
import Service, { service } from '@ember/service';
|
import Service, { service } from '@ember/service';
|
||||||
import { tracked } from '@glimmer/tracking';
|
import { tracked } from '@glimmer/tracking';
|
||||||
|
import { action } from '@ember/object';
|
||||||
|
|
||||||
export default class MapUiService extends Service {
|
export default class MapUiService extends Service {
|
||||||
@service nostrData;
|
@service nostrData;
|
||||||
@@ -9,6 +10,7 @@ export default class MapUiService extends Service {
|
|||||||
@tracked isCreating = false;
|
@tracked isCreating = false;
|
||||||
@tracked creationCoordinates = null;
|
@tracked creationCoordinates = null;
|
||||||
@tracked returnToSearch = false;
|
@tracked returnToSearch = false;
|
||||||
|
@tracked returnToRoute = null;
|
||||||
@tracked currentCenter = null;
|
@tracked currentCenter = null;
|
||||||
@tracked currentBounds = null;
|
@tracked currentBounds = null;
|
||||||
@tracked currentZoom = null;
|
@tracked currentZoom = null;
|
||||||
@@ -19,13 +21,33 @@ export default class MapUiService extends Service {
|
|||||||
@tracked currentSearch = null;
|
@tracked currentSearch = null;
|
||||||
@tracked loadingState = null;
|
@tracked loadingState = null;
|
||||||
@tracked isSidebarVisible = false;
|
@tracked isSidebarVisible = false;
|
||||||
|
@tracked isSidebarOpening = false;
|
||||||
|
|
||||||
|
scrollPositions = {};
|
||||||
|
|
||||||
|
@action
|
||||||
|
saveScrollPosition(key, value) {
|
||||||
|
this.scrollPositions[key] = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
getScrollPosition(key) {
|
||||||
|
return this.scrollPositions[key] || 0;
|
||||||
|
}
|
||||||
|
|
||||||
showSidebar() {
|
showSidebar() {
|
||||||
this.isSidebarVisible = true;
|
if (!this.isSidebarVisible) {
|
||||||
|
this.isSidebarVisible = true;
|
||||||
|
this.isSidebarOpening = true;
|
||||||
|
setTimeout(() => {
|
||||||
|
this.isSidebarOpening = false;
|
||||||
|
}, 250);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hideSidebar() {
|
hideSidebar() {
|
||||||
this.isSidebarVisible = false;
|
this.isSidebarVisible = false;
|
||||||
|
this.isSidebarOpening = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
selectPlace(place, options = {}) {
|
selectPlace(place, options = {}) {
|
||||||
|
|||||||
+52
-28
@@ -6,7 +6,12 @@ import { MailboxesModel } from 'applesauce-core/models/mailboxes';
|
|||||||
import { npubEncode } from 'applesauce-core/helpers/pointers';
|
import { npubEncode } from 'applesauce-core/helpers/pointers';
|
||||||
import { persistEventsToCache } from 'applesauce-core/helpers/event-cache';
|
import { persistEventsToCache } from 'applesauce-core/helpers/event-cache';
|
||||||
import { NostrIDB, openDB } from 'nostr-idb';
|
import { NostrIDB, openDB } from 'nostr-idb';
|
||||||
import { normalizeRelayUrl } from '../utils/nostr';
|
import {
|
||||||
|
excludeRequiredRelays,
|
||||||
|
mergeRequiredRelays,
|
||||||
|
normalizeRelayUrl,
|
||||||
|
uniqNormalizedRelays,
|
||||||
|
} from '../utils/nostr';
|
||||||
import { getGeohashPrefixesInBbox } from '../utils/geohash-coverage';
|
import { getGeohashPrefixesInBbox } from '../utils/geohash-coverage';
|
||||||
|
|
||||||
const DIRECTORY_RELAYS = [
|
const DIRECTORY_RELAYS = [
|
||||||
@@ -83,43 +88,62 @@ export default class NostrDataService extends Service {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
get defaultReadRelays() {
|
get requiredReadRelays() {
|
||||||
const mailboxes = (this.mailboxes?.inboxes || [])
|
return DEFAULT_READ_RELAYS;
|
||||||
.map(normalizeRelayUrl)
|
|
||||||
.filter(Boolean);
|
|
||||||
const defaults = DEFAULT_READ_RELAYS.map(normalizeRelayUrl).filter(Boolean);
|
|
||||||
return Array.from(new Set([...defaults, ...mailboxes]));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get defaultWriteRelays() {
|
get requiredWriteRelays() {
|
||||||
const mailboxes = (this.mailboxes?.outboxes || [])
|
return DEFAULT_WRITE_RELAYS;
|
||||||
|
}
|
||||||
|
|
||||||
|
get mailboxReadRelays() {
|
||||||
|
return (this.mailboxes?.inboxes || [])
|
||||||
.map(normalizeRelayUrl)
|
.map(normalizeRelayUrl)
|
||||||
.filter(Boolean);
|
.filter(Boolean);
|
||||||
const defaults =
|
}
|
||||||
DEFAULT_WRITE_RELAYS.map(normalizeRelayUrl).filter(Boolean);
|
|
||||||
return Array.from(new Set([...defaults, ...mailboxes]));
|
get mailboxWriteRelays() {
|
||||||
|
return (this.mailboxes?.outboxes || [])
|
||||||
|
.map(normalizeRelayUrl)
|
||||||
|
.filter(Boolean);
|
||||||
|
}
|
||||||
|
|
||||||
|
get configuredReadRelays() {
|
||||||
|
const configured = uniqNormalizedRelays([
|
||||||
|
...this.mailboxReadRelays,
|
||||||
|
...(this.settings.nostrReadRelays || []),
|
||||||
|
]);
|
||||||
|
|
||||||
|
return excludeRequiredRelays(
|
||||||
|
configured,
|
||||||
|
this.settings.nostrReadRelayExclusions || []
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
get configuredWriteRelays() {
|
||||||
|
const configured = uniqNormalizedRelays([
|
||||||
|
...this.mailboxWriteRelays,
|
||||||
|
...(this.settings.nostrWriteRelays || []),
|
||||||
|
]);
|
||||||
|
|
||||||
|
return excludeRequiredRelays(
|
||||||
|
configured,
|
||||||
|
this.settings.nostrWriteRelayExclusions || []
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
get activeReadRelays() {
|
get activeReadRelays() {
|
||||||
if (this.settings.nostrReadRelays) {
|
return mergeRequiredRelays(
|
||||||
return Array.from(
|
this.requiredReadRelays,
|
||||||
new Set(
|
this.configuredReadRelays
|
||||||
this.settings.nostrReadRelays.map(normalizeRelayUrl).filter(Boolean)
|
);
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return this.defaultReadRelays;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get activeWriteRelays() {
|
get activeWriteRelays() {
|
||||||
if (this.settings.nostrWriteRelays) {
|
return mergeRequiredRelays(
|
||||||
return Array.from(
|
this.requiredWriteRelays,
|
||||||
new Set(
|
this.configuredWriteRelays
|
||||||
this.settings.nostrWriteRelays.map(normalizeRelayUrl).filter(Boolean)
|
);
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return this.defaultWriteRelays;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async loadPlacesInBounds(bbox) {
|
async loadPlacesInBounds(bbox) {
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ const DEFAULT_SETTINGS = {
|
|||||||
nostrPhotoFallbackUploads: false,
|
nostrPhotoFallbackUploads: false,
|
||||||
nostrReadRelays: null,
|
nostrReadRelays: null,
|
||||||
nostrWriteRelays: null,
|
nostrWriteRelays: null,
|
||||||
|
nostrReadRelayExclusions: null,
|
||||||
|
nostrWriteRelayExclusions: null,
|
||||||
experimentalEnablePhotoDeletion: false,
|
experimentalEnablePhotoDeletion: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -21,6 +23,9 @@ export default class SettingsService extends Service {
|
|||||||
DEFAULT_SETTINGS.nostrPhotoFallbackUploads;
|
DEFAULT_SETTINGS.nostrPhotoFallbackUploads;
|
||||||
@tracked nostrReadRelays = DEFAULT_SETTINGS.nostrReadRelays;
|
@tracked nostrReadRelays = DEFAULT_SETTINGS.nostrReadRelays;
|
||||||
@tracked nostrWriteRelays = DEFAULT_SETTINGS.nostrWriteRelays;
|
@tracked nostrWriteRelays = DEFAULT_SETTINGS.nostrWriteRelays;
|
||||||
|
@tracked nostrReadRelayExclusions = DEFAULT_SETTINGS.nostrReadRelayExclusions;
|
||||||
|
@tracked nostrWriteRelayExclusions =
|
||||||
|
DEFAULT_SETTINGS.nostrWriteRelayExclusions;
|
||||||
@tracked experimentalEnablePhotoDeletion =
|
@tracked experimentalEnablePhotoDeletion =
|
||||||
DEFAULT_SETTINGS.experimentalEnablePhotoDeletion;
|
DEFAULT_SETTINGS.experimentalEnablePhotoDeletion;
|
||||||
|
|
||||||
@@ -111,6 +116,8 @@ export default class SettingsService extends Service {
|
|||||||
this.nostrPhotoFallbackUploads = finalSettings.nostrPhotoFallbackUploads;
|
this.nostrPhotoFallbackUploads = finalSettings.nostrPhotoFallbackUploads;
|
||||||
this.nostrReadRelays = finalSettings.nostrReadRelays;
|
this.nostrReadRelays = finalSettings.nostrReadRelays;
|
||||||
this.nostrWriteRelays = finalSettings.nostrWriteRelays;
|
this.nostrWriteRelays = finalSettings.nostrWriteRelays;
|
||||||
|
this.nostrReadRelayExclusions = finalSettings.nostrReadRelayExclusions;
|
||||||
|
this.nostrWriteRelayExclusions = finalSettings.nostrWriteRelayExclusions;
|
||||||
this.experimentalEnablePhotoDeletion =
|
this.experimentalEnablePhotoDeletion =
|
||||||
finalSettings.experimentalEnablePhotoDeletion;
|
finalSettings.experimentalEnablePhotoDeletion;
|
||||||
|
|
||||||
@@ -127,6 +134,8 @@ export default class SettingsService extends Service {
|
|||||||
nostrPhotoFallbackUploads: this.nostrPhotoFallbackUploads,
|
nostrPhotoFallbackUploads: this.nostrPhotoFallbackUploads,
|
||||||
nostrReadRelays: this.nostrReadRelays,
|
nostrReadRelays: this.nostrReadRelays,
|
||||||
nostrWriteRelays: this.nostrWriteRelays,
|
nostrWriteRelays: this.nostrWriteRelays,
|
||||||
|
nostrReadRelayExclusions: this.nostrReadRelayExclusions,
|
||||||
|
nostrWriteRelayExclusions: this.nostrWriteRelayExclusions,
|
||||||
experimentalEnablePhotoDeletion: this.experimentalEnablePhotoDeletion,
|
experimentalEnablePhotoDeletion: this.experimentalEnablePhotoDeletion,
|
||||||
};
|
};
|
||||||
localStorage.setItem('marco:settings', JSON.stringify(settings));
|
localStorage.setItem('marco:settings', JSON.stringify(settings));
|
||||||
|
|||||||
@@ -270,6 +270,11 @@ export default class StorageService extends Service {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async getPlacesInList(listId) {
|
||||||
|
if (!this.places || !this.places.lists) return [];
|
||||||
|
return this.places.lists.getPlaces(listId);
|
||||||
|
}
|
||||||
|
|
||||||
async loadPlacesInBounds(bbox) {
|
async loadPlacesInBounds(bbox) {
|
||||||
// 1. Calculate required prefixes
|
// 1. Calculate required prefixes
|
||||||
const requiredPrefixes = getGeohashPrefixesInBbox(bbox);
|
const requiredPrefixes = getGeohashPrefixesInBbox(bbox);
|
||||||
|
|||||||
+123
-32
@@ -1,8 +1,10 @@
|
|||||||
/* Ember supports plain CSS out of the box. More info: https://cli.emberjs.com/release/advanced-use/stylesheets/ */
|
/* Ember supports plain CSS out of the box. More info: https://cli.emberjs.com/release/advanced-use/stylesheets/ */
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--default-list-color: #fc3;
|
--body-text-color: #333;
|
||||||
|
--primary-background-color: #fff;
|
||||||
--hover-bg: #f8f9fa;
|
--hover-bg: #f8f9fa;
|
||||||
|
--divider-color: #eee;
|
||||||
--sidebar-width: 350px;
|
--sidebar-width: 350px;
|
||||||
--link-color: #2a7fff;
|
--link-color: #2a7fff;
|
||||||
--link-color-visited: #6a4fbf;
|
--link-color-visited: #6a4fbf;
|
||||||
@@ -10,6 +12,7 @@
|
|||||||
--marker-color-dark: #b31412;
|
--marker-color-dark: #b31412;
|
||||||
--danger-color: var(--marker-color-primary);
|
--danger-color: var(--marker-color-primary);
|
||||||
--danger-color-dark: var(--marker-color-dark);
|
--danger-color-dark: var(--marker-color-dark);
|
||||||
|
--default-list-color: #fc3;
|
||||||
}
|
}
|
||||||
|
|
||||||
html,
|
html,
|
||||||
@@ -31,7 +34,7 @@ body {
|
|||||||
font-family: 'Noto Sans', sans-serif;
|
font-family: 'Noto Sans', sans-serif;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
#root,
|
#root,
|
||||||
@@ -383,7 +386,7 @@ body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 1rem 0;
|
padding: 1rem 0;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid var(--divider-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.account-item:last-child {
|
.account-item:last-child {
|
||||||
@@ -460,6 +463,11 @@ body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: hidden; /* Ensure flex children are contained */
|
overflow: hidden; /* Ensure flex children are contained */
|
||||||
|
will-change: transform;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-opening .sidebar {
|
||||||
|
animation: sidebar-slide-in-left 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar.app-menu-pane {
|
.sidebar.app-menu-pane {
|
||||||
@@ -479,7 +487,7 @@ body {
|
|||||||
|
|
||||||
.sidebar-header {
|
.sidebar-header {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid var(--divider-color);
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -526,7 +534,7 @@ body {
|
|||||||
padding-left: 1.4rem;
|
padding-left: 1.4rem;
|
||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
@@ -557,7 +565,7 @@ body {
|
|||||||
padding-left: 1.4rem;
|
padding-left: 1.4rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
transition: background-color 0.2s;
|
transition: background-color 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -628,7 +636,7 @@ body {
|
|||||||
width: 24px;
|
width: 24px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background-color: #fff;
|
background-color: var(--primary-background-color);
|
||||||
border: 1px solid var(--danger-color);
|
border: 1px solid var(--danger-color);
|
||||||
color: var(--danger-color);
|
color: var(--danger-color);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -644,7 +652,7 @@ body {
|
|||||||
.btn-remove-relay:hover,
|
.btn-remove-relay:hover,
|
||||||
.btn-remove-relay:active {
|
.btn-remove-relay:active {
|
||||||
background-color: var(--danger-color);
|
background-color: var(--danger-color);
|
||||||
color: #fff;
|
color: var(--primary-background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.add-relay-input {
|
.add-relay-input {
|
||||||
@@ -674,7 +682,7 @@ body {
|
|||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
background: var(--hover-bg);
|
background: var(--hover-bg);
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid var(--divider-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-group {
|
.form-group {
|
||||||
@@ -696,8 +704,8 @@ body {
|
|||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
box-sizing: border-box; /* Ensure padding doesn't overflow width */
|
box-sizing: border-box; /* Ensure padding doesn't overflow width */
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
background-color: #fff;
|
background-color: var(--primary-background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control:focus {
|
.form-control:focus {
|
||||||
@@ -708,7 +716,7 @@ body {
|
|||||||
|
|
||||||
select.form-control {
|
select.form-control {
|
||||||
appearance: none;
|
appearance: none;
|
||||||
background-color: #fff;
|
background-color: var(--primary-background-color);
|
||||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: right 0.75rem center;
|
background-position: right 0.75rem center;
|
||||||
@@ -784,7 +792,7 @@ select.form-control {
|
|||||||
.meta-info p:first-child {
|
.meta-info p:first-child {
|
||||||
margin-top: 1.2rem;
|
margin-top: 1.2rem;
|
||||||
padding-top: 1.2rem;
|
padding-top: 1.2rem;
|
||||||
border-top: 1px solid #eee;
|
border-top: 1px solid var(--divider-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.meta-info a,
|
.meta-info a,
|
||||||
@@ -843,9 +851,9 @@ abbr[title] {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid var(--divider-color);
|
||||||
background: #fff;
|
background: var(--primary-background-color);
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background 0.2s;
|
transition: background 0.2s;
|
||||||
@@ -1016,7 +1024,7 @@ abbr[title] {
|
|||||||
.photo-carousel.inline .photo-carousel-track {
|
.photo-carousel.inline .photo-carousel-track {
|
||||||
scroll-snap-type: none;
|
scroll-snap-type: none;
|
||||||
gap: 2px;
|
gap: 2px;
|
||||||
background-color: #fff;
|
background-color: var(--primary-background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-carousel.inline .carousel-slide {
|
.photo-carousel.inline .carousel-slide {
|
||||||
@@ -1095,7 +1103,7 @@ abbr[title] {
|
|||||||
|
|
||||||
.btn-outline {
|
.btn-outline {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1104,7 +1112,7 @@ abbr[title] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-secondary {
|
.btn-secondary {
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
border: 1px solid rgb(255 204 51 / 20%);
|
border: 1px solid rgb(255 204 51 / 20%);
|
||||||
background: rgb(255 204 51 / 30%);
|
background: rgb(255 204 51 / 30%);
|
||||||
}
|
}
|
||||||
@@ -1266,6 +1274,20 @@ span.icon {
|
|||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content-with-icon > span:not(.icon) {
|
||||||
|
min-width: 0;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-with-icon > span:not(.icon) a {
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
.content-with-icon .icon {
|
.content-with-icon .icon {
|
||||||
margin-top: 0.15rem;
|
margin-top: 0.15rem;
|
||||||
}
|
}
|
||||||
@@ -1347,7 +1369,7 @@ span.icon {
|
|||||||
width: 24px;
|
width: 24px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, -50%);
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
z-index: 2000;
|
z-index: 2000;
|
||||||
display: none;
|
display: none;
|
||||||
@@ -1406,6 +1428,8 @@ button.create-place {
|
|||||||
border-top-left-radius: 16px;
|
border-top-left-radius: 16px;
|
||||||
border-top-right-radius: 16px;
|
border-top-right-radius: 16px;
|
||||||
inset: auto 0 0;
|
inset: auto 0 0;
|
||||||
|
animation: sidebar-slide-up-bottom 0.18s cubic-bezier(0.16, 1, 0.3, 1)
|
||||||
|
forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-content {
|
.sidebar-content {
|
||||||
@@ -1481,7 +1505,7 @@ button.create-place {
|
|||||||
min-width: 0;
|
min-width: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
outline: none;
|
outline: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0 4px;
|
padding: 0 4px;
|
||||||
@@ -1512,7 +1536,7 @@ button.create-place {
|
|||||||
|
|
||||||
.search-submit-btn:hover {
|
.search-submit-btn:hover {
|
||||||
background: rgb(0 0 0 / 5%);
|
background: rgb(0 0 0 / 5%);
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-clear-btn {
|
.search-clear-btn {
|
||||||
@@ -1530,7 +1554,7 @@ button.create-place {
|
|||||||
|
|
||||||
.search-clear-btn:hover {
|
.search-clear-btn:hover {
|
||||||
background: rgb(0 0 0 / 5%);
|
background: rgb(0 0 0 / 5%);
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search Results Popover */
|
/* Search Results Popover */
|
||||||
@@ -1599,7 +1623,7 @@ button.create-place {
|
|||||||
|
|
||||||
.result-title {
|
.result-title {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@@ -1651,7 +1675,7 @@ button.create-place {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.place-lists-manager input[type='checkbox'] {
|
.place-lists-manager input[type='checkbox'] {
|
||||||
@@ -1661,7 +1685,8 @@ button.create-place {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.place-lists-manager .list-color {
|
/* Shared List Color Dot */
|
||||||
|
.list-color-dot {
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background-color: var(--default-list-color);
|
background-color: var(--default-list-color);
|
||||||
@@ -1672,7 +1697,7 @@ button.create-place {
|
|||||||
|
|
||||||
.place-lists-manager .divider {
|
.place-lists-manager .divider {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background: #eee;
|
background: var(--divider-color);
|
||||||
margin: 0.5rem 0;
|
margin: 0.5rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1715,7 +1740,7 @@ button.create-place {
|
|||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
border-radius: 16px; /* Pill shape */
|
border-radius: 16px; /* Pill shape */
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
|
box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
|
||||||
@@ -1727,7 +1752,7 @@ button.create-place {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.category-chip:active {
|
.category-chip:active {
|
||||||
background: #eee;
|
background: var(--divider-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.category-chip:disabled {
|
.category-chip:disabled {
|
||||||
@@ -1862,7 +1887,7 @@ button.create-place {
|
|||||||
|
|
||||||
.photo-tag-chip {
|
.photo-tag-chip {
|
||||||
background: #f8f9fa;
|
background: #f8f9fa;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
@@ -1872,7 +1897,7 @@ button.create-place {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.photo-tag-chip:hover {
|
.photo-tag-chip:hover {
|
||||||
background: #eee;
|
background: var(--divider-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-tag-chip.is-selected {
|
.photo-tag-chip.is-selected {
|
||||||
@@ -2103,7 +2128,7 @@ button.create-place {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
color: #333;
|
color: var(--body-text-color);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2123,3 +2148,69 @@ button.create-place {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Snappy slide-in from left (Desktop) */
|
||||||
|
@keyframes sidebar-slide-in-left {
|
||||||
|
from {
|
||||||
|
transform: translateX(-100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Snappy slide-up from bottom (Mobile) */
|
||||||
|
@keyframes sidebar-slide-up-bottom {
|
||||||
|
from {
|
||||||
|
transform: translateY(100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Lists Index Sidebar Menu */
|
||||||
|
.lists-index-item {
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px solid var(--divider-color);
|
||||||
|
background: var(--primary-background-color);
|
||||||
|
color: var(--body-text-color);
|
||||||
|
padding: 1rem;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background 0.2s;
|
||||||
|
font-family: inherit;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lists-index-item:hover {
|
||||||
|
background: var(--hover-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.lists-index-item-left {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12px;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lists-index-name {
|
||||||
|
font-size: 0.95rem;
|
||||||
|
font-weight: normal;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lists-index-count {
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
margin: 0;
|
||||||
|
white-space: nowrap;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|||||||
@@ -15,16 +15,17 @@ export default class ApplicationComponent extends Component {
|
|||||||
@service mapUi;
|
@service mapUi;
|
||||||
@service router;
|
@service router;
|
||||||
|
|
||||||
@tracked isAppMenuOpen = false;
|
|
||||||
|
|
||||||
get isSidebarOpen() {
|
get isSidebarOpen() {
|
||||||
// We consider the sidebar "open" if we are in search or place routes AND it's visible.
|
// We consider the sidebar "open" if we are in search, menu, lists or place routes AND it's visible.
|
||||||
// This helps the map know if it should shift the center or adjust view.
|
// This helps the map know if it should shift the center or adjust view.
|
||||||
|
const name = this.router.currentRouteName;
|
||||||
return (
|
return (
|
||||||
this.mapUi.isSidebarVisible &&
|
this.mapUi.isSidebarVisible &&
|
||||||
(this.router.currentRouteName === 'place' ||
|
(name === 'place' ||
|
||||||
this.router.currentRouteName === 'place.new' ||
|
name === 'place.new' ||
|
||||||
this.router.currentRouteName === 'search')
|
name === 'search' ||
|
||||||
|
name === 'menu' ||
|
||||||
|
name.startsWith('lists'))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -37,24 +38,27 @@ export default class ApplicationComponent extends Component {
|
|||||||
|
|
||||||
@action
|
@action
|
||||||
toggleAppMenu() {
|
toggleAppMenu() {
|
||||||
this.isAppMenuOpen = !this.isAppMenuOpen;
|
if (this.router.currentRouteName === 'menu') {
|
||||||
}
|
this.router.transitionTo('index');
|
||||||
|
} else {
|
||||||
@action
|
this.router.transitionTo('menu');
|
||||||
closeAppMenu() {
|
}
|
||||||
this.isAppMenuOpen = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
handleOutsideClick() {
|
handleOutsideClick() {
|
||||||
if (this.isAppMenuOpen) {
|
const name = this.router.currentRouteName;
|
||||||
this.closeAppMenu();
|
if (
|
||||||
} else if (
|
name === 'search' ||
|
||||||
this.router.currentRouteName === 'search' ||
|
name === 'place' ||
|
||||||
this.router.currentRouteName === 'place'
|
name === 'menu' ||
|
||||||
|
name.startsWith('lists')
|
||||||
) {
|
) {
|
||||||
this.mapUi.clearSelection();
|
this.mapUi.clearSelection();
|
||||||
this.mapUi.hideSidebar();
|
this.mapUi.hideSidebar();
|
||||||
|
if (name === 'menu' || name.startsWith('lists')) {
|
||||||
|
this.router.transitionTo('index');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -66,32 +70,30 @@ export default class ApplicationComponent extends Component {
|
|||||||
<template>
|
<template>
|
||||||
{{pageTitle "Marco"}}
|
{{pageTitle "Marco"}}
|
||||||
|
|
||||||
<AppHeader @onToggleMenu={{this.toggleAppMenu}} />
|
<div class={{if this.mapUi.isSidebarOpening "sidebar-opening"}}>
|
||||||
|
<AppHeader @onToggleMenu={{this.toggleAppMenu}} />
|
||||||
|
|
||||||
<div
|
|
||||||
id="rs-widget-container"
|
|
||||||
class={{if this.storage.isWidgetOpen "visible"}}
|
|
||||||
></div>
|
|
||||||
|
|
||||||
{{#if this.storage.isWidgetOpen}}
|
|
||||||
<div
|
<div
|
||||||
class="rs-backdrop"
|
id="rs-widget-container"
|
||||||
role="button"
|
class={{if this.storage.isWidgetOpen "visible"}}
|
||||||
{{on "click" this.storage.closeWidget}}
|
|
||||||
></div>
|
></div>
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
<Map
|
{{#if this.storage.isWidgetOpen}}
|
||||||
@isSidebarOpen={{or this.isSidebarOpen this.isAppMenuOpen}}
|
<div
|
||||||
@onOutsideClick={{this.handleOutsideClick}}
|
class="rs-backdrop"
|
||||||
/>
|
role="button"
|
||||||
|
{{on "click" this.storage.closeWidget}}
|
||||||
|
></div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{#if this.isAppMenuOpen}}
|
<Map
|
||||||
<AppMenu @onClose={{this.closeAppMenu}} />
|
@isSidebarOpen={{this.isSidebarOpen}}
|
||||||
{{/if}}
|
@onOutsideClick={{this.handleOutsideClick}}
|
||||||
|
/>
|
||||||
|
|
||||||
<Toast />
|
<Toast />
|
||||||
|
|
||||||
{{outlet}}
|
{{outlet}}
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
import Component from '@glimmer/component';
|
||||||
|
|
||||||
|
export default class ListsTemplate extends Component {
|
||||||
|
<template>
|
||||||
|
{{outlet}}
|
||||||
|
</template>
|
||||||
|
}
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
import Component from '@glimmer/component';
|
||||||
|
import { service } from '@ember/service';
|
||||||
|
import { action } from '@ember/object';
|
||||||
|
import { fn } from '@ember/helper';
|
||||||
|
import { on } from '@ember/modifier';
|
||||||
|
import Icon from '#components/icon';
|
||||||
|
|
||||||
|
export default class ListsIndexTemplate extends Component {
|
||||||
|
@service storage;
|
||||||
|
@service router;
|
||||||
|
@service mapUi;
|
||||||
|
|
||||||
|
@action
|
||||||
|
selectList(listId) {
|
||||||
|
this.router.transitionTo('lists.list', listId);
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
close() {
|
||||||
|
this.router.transitionTo('index');
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
backToMenu() {
|
||||||
|
this.router.transitionTo('menu');
|
||||||
|
}
|
||||||
|
|
||||||
|
<template>
|
||||||
|
{{#if this.mapUi.isSidebarVisible}}
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="sidebar-header">
|
||||||
|
<button type="button" class="back-btn" {{on "click" this.backToMenu}}>
|
||||||
|
<Icon @name="arrow-left" @size={{20}} @color="#333" />
|
||||||
|
</button>
|
||||||
|
<h2><Icon @name="bookmark" @size={{20}} @color="#333" /> Saved places</h2>
|
||||||
|
<button type="button" class="close-btn" {{on "click" this.close}}>
|
||||||
|
<Icon @name="x" @size={{20}} @color="#333" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sidebar-content">
|
||||||
|
<ul class="places-list">
|
||||||
|
{{#each this.storage.lists as |list|}}
|
||||||
|
<li>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="lists-index-item"
|
||||||
|
{{on "click" (fn this.selectList list.id)}}
|
||||||
|
>
|
||||||
|
<div class="lists-index-item-left">
|
||||||
|
<span
|
||||||
|
class="list-color-dot"
|
||||||
|
style="background-color: {{list.color}}"
|
||||||
|
></span>
|
||||||
|
<div class="lists-index-name">{{list.title}}</div>
|
||||||
|
</div>
|
||||||
|
<div class="lists-index-count">
|
||||||
|
{{#if list.placeRefs.length}}
|
||||||
|
{{list.placeRefs.length}} places
|
||||||
|
{{else}}
|
||||||
|
empty
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
</template>
|
||||||
|
}
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
import Component from '@glimmer/component';
|
||||||
|
import PlacesSidebar from '#components/places-sidebar';
|
||||||
|
import { service } from '@ember/service';
|
||||||
|
import { action } from '@ember/object';
|
||||||
|
|
||||||
|
export default class ListsListTemplate extends Component {
|
||||||
|
@service router;
|
||||||
|
@service mapUi;
|
||||||
|
@service storage;
|
||||||
|
|
||||||
|
get listId() {
|
||||||
|
return this.args.model?.listId;
|
||||||
|
}
|
||||||
|
|
||||||
|
get scrollTop() {
|
||||||
|
return this.mapUi.getScrollPosition(`list-${this.listId}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
get listTitle() {
|
||||||
|
const list = this.storage.lists.find((l) => l.id === this.listId);
|
||||||
|
return list ? list.title : 'Saved places';
|
||||||
|
}
|
||||||
|
|
||||||
|
get places() {
|
||||||
|
const modelPlaces = this.args.model?.places || [];
|
||||||
|
const currentList = this.storage.lists.find((l) => l.id === this.listId);
|
||||||
|
const placeRefsIds = new Set(currentList?.placeRefs?.map((ref) => ref.id) || []);
|
||||||
|
|
||||||
|
// Filter live tracked savedPlaces that are in this list
|
||||||
|
const livePlaces = this.storage.savedPlaces.filter((p) => placeRefsIds.has(p.id));
|
||||||
|
|
||||||
|
const merged = [];
|
||||||
|
const seen = new Set();
|
||||||
|
|
||||||
|
// Process live state first to reflect deletions/edits immediately
|
||||||
|
livePlaces.forEach((p) => {
|
||||||
|
merged.push(p);
|
||||||
|
seen.add(p.id);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Supplement with any model-fetched places that are still valid but not in live state yet
|
||||||
|
modelPlaces.forEach((p) => {
|
||||||
|
if (placeRefsIds.has(p.id) && !seen.has(p.id)) {
|
||||||
|
merged.push(p);
|
||||||
|
seen.add(p.id);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return merged;
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
selectPlace(place) {
|
||||||
|
if (place) {
|
||||||
|
const sidebarContent = document.querySelector('.sidebar-content');
|
||||||
|
if (sidebarContent) {
|
||||||
|
this.mapUi.saveScrollPosition(`list-${this.listId}`, sidebarContent.scrollTop);
|
||||||
|
}
|
||||||
|
this.mapUi.returnToRoute = {
|
||||||
|
name: 'lists.list',
|
||||||
|
model: this.listId,
|
||||||
|
};
|
||||||
|
this.mapUi.showSidebar();
|
||||||
|
this.mapUi.preventNextZoom = true;
|
||||||
|
this.router.transitionTo('place', place);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
close() {
|
||||||
|
this.router.transitionTo('index');
|
||||||
|
}
|
||||||
|
|
||||||
|
@action
|
||||||
|
backToLists() {
|
||||||
|
this.router.transitionTo('lists.index');
|
||||||
|
}
|
||||||
|
|
||||||
|
<template>
|
||||||
|
{{#if this.mapUi.isSidebarVisible}}
|
||||||
|
<PlacesSidebar
|
||||||
|
@places={{this.places}}
|
||||||
|
@title={{this.listTitle}}
|
||||||
|
@scrollTop={{this.scrollTop}}
|
||||||
|
@onSelect={{this.selectPlace}}
|
||||||
|
@onClose={{this.close}}
|
||||||
|
@onBack={{this.backToLists}}
|
||||||
|
/>
|
||||||
|
{{/if}}
|
||||||
|
</template>
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
import Component from '@glimmer/component';
|
||||||
|
import AppMenu from '#components/app-menu/index';
|
||||||
|
import { service } from '@ember/service';
|
||||||
|
import { action } from '@ember/object';
|
||||||
|
|
||||||
|
export default class MenuTemplate extends Component {
|
||||||
|
@service router;
|
||||||
|
|
||||||
|
@action
|
||||||
|
close() {
|
||||||
|
this.router.transitionTo('index');
|
||||||
|
}
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<AppMenu @onClose={{this.close}} />
|
||||||
|
</template>
|
||||||
|
}
|
||||||
@@ -77,8 +77,14 @@ export default class PlaceTemplate extends Component {
|
|||||||
navigateBack(place) {
|
navigateBack(place) {
|
||||||
// The sidebar calls this with null when "Back" is clicked.
|
// The sidebar calls this with null when "Back" is clicked.
|
||||||
if (place === null) {
|
if (place === null) {
|
||||||
|
// If we have an active route context (e.g. lists), return to it
|
||||||
|
if (this.mapUi.returnToRoute) {
|
||||||
|
this.mapUi.showSidebar();
|
||||||
|
const { name, model } = this.mapUi.returnToRoute;
|
||||||
|
this.router.transitionTo(name, model);
|
||||||
|
}
|
||||||
// If we have an active search context, return to it (UP navigation)
|
// If we have an active search context, return to it (UP navigation)
|
||||||
if (this.mapUi.returnToSearch && this.mapUi.currentSearch) {
|
else if (this.mapUi.returnToSearch && this.mapUi.currentSearch) {
|
||||||
this.mapUi.showSidebar();
|
this.mapUi.showSidebar();
|
||||||
this.router.transitionTo('search', {
|
this.router.transitionTo('search', {
|
||||||
queryParams: this.mapUi.currentSearch,
|
queryParams: this.mapUi.currentSearch,
|
||||||
|
|||||||
@@ -10,6 +10,10 @@ export default class SearchTemplate extends Component {
|
|||||||
@action
|
@action
|
||||||
selectPlace(place) {
|
selectPlace(place) {
|
||||||
if (place) {
|
if (place) {
|
||||||
|
const sidebarContent = document.querySelector('.sidebar-content');
|
||||||
|
if (sidebarContent) {
|
||||||
|
this.mapUi.saveScrollPosition('search', sidebarContent.scrollTop);
|
||||||
|
}
|
||||||
this.mapUi.returnToSearch = true;
|
this.mapUi.returnToSearch = true;
|
||||||
this.mapUi.showSidebar();
|
this.mapUi.showSidebar();
|
||||||
this.mapUi.preventNextZoom = true;
|
this.mapUi.preventNextZoom = true;
|
||||||
@@ -28,6 +32,7 @@ export default class SearchTemplate extends Component {
|
|||||||
{{#if this.mapUi.isSidebarVisible}}
|
{{#if this.mapUi.isSidebarVisible}}
|
||||||
<PlacesSidebar
|
<PlacesSidebar
|
||||||
@places={{this.mapUi.searchResults}}
|
@places={{this.mapUi.searchResults}}
|
||||||
|
@scrollTop={{this.mapUi.getScrollPosition "search"}}
|
||||||
@onSelect={{this.selectPlace}}
|
@onSelect={{this.selectPlace}}
|
||||||
@onClose={{this.close}}
|
@onClose={{this.close}}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
// AGENT: Keep imports sorted alphabetically, grouped by feather-icons → pinhead → custom/local
|
// AGENT: Keep imports sorted alphabetically, grouped by feather-icons → pinhead → custom/local
|
||||||
|
/*
|
||||||
|
* Feather icons
|
||||||
|
*/
|
||||||
import activity from 'feather-icons/dist/icons/activity.svg?raw';
|
import activity from 'feather-icons/dist/icons/activity.svg?raw';
|
||||||
import arrowLeft from 'feather-icons/dist/icons/arrow-left.svg?raw';
|
import arrowLeft from 'feather-icons/dist/icons/arrow-left.svg?raw';
|
||||||
import bookmark from 'feather-icons/dist/icons/bookmark.svg?raw';
|
import bookmark from 'feather-icons/dist/icons/bookmark.svg?raw';
|
||||||
@@ -40,6 +43,9 @@ import check from 'feather-icons/dist/icons/check.svg?raw';
|
|||||||
import alertCircle from 'feather-icons/dist/icons/alert-circle.svg?raw';
|
import alertCircle from 'feather-icons/dist/icons/alert-circle.svg?raw';
|
||||||
import zap from 'feather-icons/dist/icons/zap.svg?raw';
|
import zap from 'feather-icons/dist/icons/zap.svg?raw';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Pinhead icons
|
||||||
|
*/
|
||||||
import angelfish from '@waysidemapping/pinhead/dist/icons/angelfish.svg?raw';
|
import angelfish from '@waysidemapping/pinhead/dist/icons/angelfish.svg?raw';
|
||||||
import barbell from '@waysidemapping/pinhead/dist/icons/barbell.svg?raw';
|
import barbell from '@waysidemapping/pinhead/dist/icons/barbell.svg?raw';
|
||||||
import climbingWall from '@waysidemapping/pinhead/dist/icons/climbing_wall.svg?raw';
|
import climbingWall from '@waysidemapping/pinhead/dist/icons/climbing_wall.svg?raw';
|
||||||
@@ -53,8 +59,12 @@ import bus from '@waysidemapping/pinhead/dist/icons/bus.svg?raw';
|
|||||||
import camera from '@waysidemapping/pinhead/dist/icons/camera.svg?raw';
|
import camera from '@waysidemapping/pinhead/dist/icons/camera.svg?raw';
|
||||||
import boxingGloveUp from '@waysidemapping/pinhead/dist/icons/boxing_glove_up.svg?raw';
|
import boxingGloveUp from '@waysidemapping/pinhead/dist/icons/boxing_glove_up.svg?raw';
|
||||||
import car from '@waysidemapping/pinhead/dist/icons/car.svg?raw';
|
import car from '@waysidemapping/pinhead/dist/icons/car.svg?raw';
|
||||||
|
import carAndWrench from '@waysidemapping/pinhead/dist/icons/car_and_wrench.svg?raw';
|
||||||
|
import castleKeep from '@waysidemapping/pinhead/dist/icons/castle_keep.svg?raw';
|
||||||
import cigaretteWithSmokeCurl from '@waysidemapping/pinhead/dist/icons/cigarette_with_smoke_curl.svg?raw';
|
import cigaretteWithSmokeCurl from '@waysidemapping/pinhead/dist/icons/cigarette_with_smoke_curl.svg?raw';
|
||||||
|
import cityGate from '@waysidemapping/pinhead/dist/icons/city_gate.svg?raw';
|
||||||
import classicalBuilding from '@waysidemapping/pinhead/dist/icons/classical_building.svg?raw';
|
import classicalBuilding from '@waysidemapping/pinhead/dist/icons/classical_building.svg?raw';
|
||||||
|
import classicalBuildingWithClock from '@waysidemapping/pinhead/dist/icons/classical_building_with_clock.svg?raw';
|
||||||
import classicalBuildingWithDomeAndFlag from '@waysidemapping/pinhead/dist/icons/classical_building_with_dome_and_flag.svg?raw';
|
import classicalBuildingWithDomeAndFlag from '@waysidemapping/pinhead/dist/icons/classical_building_with_dome_and_flag.svg?raw';
|
||||||
import classicalBuildingWithFlag from '@waysidemapping/pinhead/dist/icons/classical_building_with_flag.svg?raw';
|
import classicalBuildingWithFlag from '@waysidemapping/pinhead/dist/icons/classical_building_with_flag.svg?raw';
|
||||||
import commercialBuilding from '@waysidemapping/pinhead/dist/icons/commercial_building.svg?raw';
|
import commercialBuilding from '@waysidemapping/pinhead/dist/icons/commercial_building.svg?raw';
|
||||||
@@ -82,8 +92,13 @@ import grecianVase from '@waysidemapping/pinhead/dist/icons/grecian_vase.svg?raw
|
|||||||
import greekCross from '@waysidemapping/pinhead/dist/icons/greek_cross.svg?raw';
|
import greekCross from '@waysidemapping/pinhead/dist/icons/greek_cross.svg?raw';
|
||||||
import iceCreamOnCone from '@waysidemapping/pinhead/dist/icons/ice_cream_on_cone.svg?raw';
|
import iceCreamOnCone from '@waysidemapping/pinhead/dist/icons/ice_cream_on_cone.svg?raw';
|
||||||
import industrialBuilding from '@waysidemapping/pinhead/dist/icons/industrial_building.svg?raw';
|
import industrialBuilding from '@waysidemapping/pinhead/dist/icons/industrial_building.svg?raw';
|
||||||
|
import infoI from '@waysidemapping/pinhead/dist/icons/info_i.svg?raw';
|
||||||
import jewel from '@waysidemapping/pinhead/dist/icons/jewel.svg?raw';
|
import jewel from '@waysidemapping/pinhead/dist/icons/jewel.svg?raw';
|
||||||
import lowriseBuilding from '@waysidemapping/pinhead/dist/icons/lowrise_building.svg?raw';
|
import lowriseBuilding from '@waysidemapping/pinhead/dist/icons/lowrise_building.svg?raw';
|
||||||
|
import marketStall from '@waysidemapping/pinhead/dist/icons/market_stall.svg?raw';
|
||||||
|
import memorialStoneWithInscription from '@waysidemapping/pinhead/dist/icons/memorial_stone_with_inscription.svg?raw';
|
||||||
|
import mobilePhoneWithKeypadAndAntenna from '@waysidemapping/pinhead/dist/icons/mobile_phone_with_keypad_and_antenna.svg?raw';
|
||||||
|
import molarTooth from '@waysidemapping/pinhead/dist/icons/molar_tooth.svg?raw';
|
||||||
import needleAndSpoolOfThread from '@waysidemapping/pinhead/dist/icons/needle_and_spool_of_thread.svg?raw';
|
import needleAndSpoolOfThread from '@waysidemapping/pinhead/dist/icons/needle_and_spool_of_thread.svg?raw';
|
||||||
import openBook from '@waysidemapping/pinhead/dist/icons/open_book.svg?raw';
|
import openBook from '@waysidemapping/pinhead/dist/icons/open_book.svg?raw';
|
||||||
import palace from '@waysidemapping/pinhead/dist/icons/palace.svg?raw';
|
import palace from '@waysidemapping/pinhead/dist/icons/palace.svg?raw';
|
||||||
@@ -118,6 +133,9 @@ import wallHangingWithMountainsAndSun from '@waysidemapping/pinhead/dist/icons/w
|
|||||||
import windingWayWide from '@waysidemapping/pinhead/dist/icons/winding_way_wide.svg?raw';
|
import windingWayWide from '@waysidemapping/pinhead/dist/icons/winding_way_wide.svg?raw';
|
||||||
import womensAndMensRestroomSymbol from '@waysidemapping/pinhead/dist/icons/womens_and_mens_restroom_symbol.svg?raw';
|
import womensAndMensRestroomSymbol from '@waysidemapping/pinhead/dist/icons/womens_and_mens_restroom_symbol.svg?raw';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Custom/local icons
|
||||||
|
*/
|
||||||
import loadingRing from '../icons/270-ring.svg?raw';
|
import loadingRing from '../icons/270-ring.svg?raw';
|
||||||
import nostrich from '../icons/nostrich-2.svg?raw';
|
import nostrich from '../icons/nostrich-2.svg?raw';
|
||||||
import remotestorage from '../icons/remotestorage.svg?raw';
|
import remotestorage from '../icons/remotestorage.svg?raw';
|
||||||
@@ -144,11 +162,13 @@ const ICONS = {
|
|||||||
'chevron-left': chevronLeft,
|
'chevron-left': chevronLeft,
|
||||||
'chevron-right': chevronRight,
|
'chevron-right': chevronRight,
|
||||||
'cigarette-with-smoke-curl': cigaretteWithSmokeCurl,
|
'cigarette-with-smoke-curl': cigaretteWithSmokeCurl,
|
||||||
|
'city-gate': cityGate,
|
||||||
climbing_wall: climbingWall,
|
climbing_wall: climbingWall,
|
||||||
check,
|
check,
|
||||||
'alert-circle': alertCircle,
|
'alert-circle': alertCircle,
|
||||||
'alert-triangle': alertTriangle,
|
'alert-triangle': alertTriangle,
|
||||||
'classical-building': classicalBuilding,
|
'classical-building': classicalBuilding,
|
||||||
|
'classical-building-with-clock': classicalBuildingWithClock,
|
||||||
'classical-building-with-dome-and-flag': classicalBuildingWithDomeAndFlag,
|
'classical-building-with-dome-and-flag': classicalBuildingWithDomeAndFlag,
|
||||||
'classical-building-with-flag': classicalBuildingWithFlag,
|
'classical-building-with-flag': classicalBuildingWithFlag,
|
||||||
'commercial-building': commercialBuilding,
|
'commercial-building': commercialBuilding,
|
||||||
@@ -185,6 +205,7 @@ const ICONS = {
|
|||||||
'ice-cream-on-cone': iceCreamOnCone,
|
'ice-cream-on-cone': iceCreamOnCone,
|
||||||
'industrial-building': industrialBuilding,
|
'industrial-building': industrialBuilding,
|
||||||
info,
|
info,
|
||||||
|
'info-i': infoI,
|
||||||
instagram,
|
instagram,
|
||||||
jewel,
|
jewel,
|
||||||
'log-in': logIn,
|
'log-in': logIn,
|
||||||
@@ -193,7 +214,11 @@ const ICONS = {
|
|||||||
mail,
|
mail,
|
||||||
map,
|
map,
|
||||||
'map-pin': mapPin,
|
'map-pin': mapPin,
|
||||||
|
'market-stall': marketStall,
|
||||||
|
'memorial-stone-with-inscription': memorialStoneWithInscription,
|
||||||
menu,
|
menu,
|
||||||
|
'mobile-phone-with-keypad-and-antenna': mobilePhoneWithKeypadAndAntenna,
|
||||||
|
'molar-tooth': molarTooth,
|
||||||
'more-horizontal': moreHorizontal,
|
'more-horizontal': moreHorizontal,
|
||||||
'more-vertical': moreVertical,
|
'more-vertical': moreVertical,
|
||||||
navigation,
|
navigation,
|
||||||
@@ -245,6 +270,8 @@ const ICONS = {
|
|||||||
winding_way_wide: windingWayWide,
|
winding_way_wide: windingWayWide,
|
||||||
parking_p: parkingP,
|
parking_p: parkingP,
|
||||||
car,
|
car,
|
||||||
|
'car-and-wrench': carAndWrench,
|
||||||
|
'castle-keep': castleKeep,
|
||||||
x,
|
x,
|
||||||
zap,
|
zap,
|
||||||
'loading-ring': loadingRing,
|
'loading-ring': loadingRing,
|
||||||
|
|||||||
@@ -14,6 +14,30 @@ export function normalizeRelayUrl(url) {
|
|||||||
return normalized;
|
return normalized;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function uniqNormalizedRelays(relays = []) {
|
||||||
|
return Array.from(new Set(relays.map(normalizeRelayUrl).filter(Boolean)));
|
||||||
|
}
|
||||||
|
|
||||||
|
export function mergeRequiredRelays(requiredRelays = [], customRelays = []) {
|
||||||
|
const requiredSet = new Set(requiredRelays.filter(Boolean));
|
||||||
|
const merged = [...requiredRelays.filter(Boolean)];
|
||||||
|
|
||||||
|
for (const relay of uniqNormalizedRelays(customRelays)) {
|
||||||
|
if (!requiredSet.has(relay)) {
|
||||||
|
merged.push(relay);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return merged;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function excludeRequiredRelays(customRelays = [], requiredRelays = []) {
|
||||||
|
const requiredSet = new Set(requiredRelays.filter(Boolean));
|
||||||
|
return uniqNormalizedRelays(customRelays).filter((relay) => {
|
||||||
|
return !requiredSet.has(relay);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extracts and normalizes photo data from NIP-360 (Place Photos) events.
|
* Extracts and normalizes photo data from NIP-360 (Place Photos) events.
|
||||||
* Sorts chronologically and guarantees the first landscape photo (or first portrait) is at index 0.
|
* Sorts chronologically and guarantees the first landscape photo (or first portrait) is at index 0.
|
||||||
|
|||||||
@@ -27,6 +27,8 @@ export const POI_ICON_RULES = [
|
|||||||
|
|
||||||
{ tags: { amenity: 'bank' }, icon: 'banknote' },
|
{ tags: { amenity: 'bank' }, icon: 'banknote' },
|
||||||
{ tags: { amenity: 'place_of_worship' }, icon: 'place-of-worship-building' },
|
{ tags: { amenity: 'place_of_worship' }, icon: 'place-of-worship-building' },
|
||||||
|
{ tags: { amenity: 'townhall' }, icon: 'classical-building-with-clock' },
|
||||||
|
{ tags: { building: 'townhall' }, icon: 'classical-building-with-clock' },
|
||||||
{ tags: { amenity: 'fire_station' }, icon: 'badge-shield-with-fire' },
|
{ tags: { amenity: 'fire_station' }, icon: 'badge-shield-with-fire' },
|
||||||
{ tags: { amenity: 'police' }, icon: 'police-officer-with-stop-arm' },
|
{ tags: { amenity: 'police' }, icon: 'police-officer-with-stop-arm' },
|
||||||
{ tags: { amenity: 'toilets' }, icon: 'womens-and-mens-restroom-symbol' },
|
{ tags: { amenity: 'toilets' }, icon: 'womens-and-mens-restroom-symbol' },
|
||||||
@@ -72,6 +74,7 @@ export const POI_ICON_RULES = [
|
|||||||
tags: { shop: 'beauty' },
|
tags: { shop: 'beauty' },
|
||||||
icon: 'fancy-mirror-with-reflection-and-stars',
|
icon: 'fancy-mirror-with-reflection-and-stars',
|
||||||
},
|
},
|
||||||
|
{ tags: { shop: 'car_repair' }, icon: 'car-and-wrench' },
|
||||||
{ tags: { craft: 'tailor' }, icon: 'needle-and-spool-of-thread' },
|
{ tags: { craft: 'tailor' }, icon: 'needle-and-spool-of-thread' },
|
||||||
{ tags: { office: 'estate_agent' }, icon: 'village-buildings' },
|
{ tags: { office: 'estate_agent' }, icon: 'village-buildings' },
|
||||||
{ tags: { office: true }, icon: 'commercial-building' },
|
{ tags: { office: true }, icon: 'commercial-building' },
|
||||||
@@ -103,6 +106,7 @@ export const POI_ICON_RULES = [
|
|||||||
{ tags: { tourism: 'viewpoint' }, icon: 'camera' },
|
{ tags: { tourism: 'viewpoint' }, icon: 'camera' },
|
||||||
{ tags: { tourism: 'zoo' }, icon: 'camera' },
|
{ tags: { tourism: 'zoo' }, icon: 'camera' },
|
||||||
{ tags: { tourism: 'artwork' }, icon: 'camera' },
|
{ tags: { tourism: 'artwork' }, icon: 'camera' },
|
||||||
|
{ tags: { tourism: 'information' }, icon: 'info-i' },
|
||||||
{ tags: { amenity: 'cinema' }, icon: 'film' },
|
{ tags: { amenity: 'cinema' }, icon: 'film' },
|
||||||
{ tags: { amenity: 'theatre' }, icon: 'camera' },
|
{ tags: { amenity: 'theatre' }, icon: 'camera' },
|
||||||
{ tags: { amenity: 'arts_centre' }, icon: 'comedy-mask-and-tragedy-mask' },
|
{ tags: { amenity: 'arts_centre' }, icon: 'comedy-mask-and-tragedy-mask' },
|
||||||
@@ -113,7 +117,9 @@ export const POI_ICON_RULES = [
|
|||||||
{ tags: { historic: 'bridge' }, icon: 'bridge' },
|
{ tags: { historic: 'bridge' }, icon: 'bridge' },
|
||||||
{ tags: { historic: 'bridge_site' }, icon: 'bridge' },
|
{ tags: { historic: 'bridge_site' }, icon: 'bridge' },
|
||||||
{ tags: { historic: 'fort' }, icon: 'fort' },
|
{ tags: { historic: 'fort' }, icon: 'fort' },
|
||||||
|
{ tags: { historic: 'city_gate' }, icon: 'city-gate' },
|
||||||
{ tags: { historic: 'castle' }, icon: 'palace' },
|
{ tags: { historic: 'castle' }, icon: 'palace' },
|
||||||
|
{ tags: { building: 'tower', historic: 'yes' }, icon: 'castle-keep' },
|
||||||
{ tags: { historic: 'building' }, icon: 'classical-building-with-flag' },
|
{ tags: { historic: 'building' }, icon: 'classical-building-with-flag' },
|
||||||
{ tags: { historic: 'archaeological_site' }, icon: 'grecian-vase' },
|
{ tags: { historic: 'archaeological_site' }, icon: 'grecian-vase' },
|
||||||
{ tags: { historic: 'memorial' }, icon: 'memorial-stone-with-inscription' },
|
{ tags: { historic: 'memorial' }, icon: 'memorial-stone-with-inscription' },
|
||||||
|
|||||||
+10
-1
@@ -56,15 +56,24 @@ const PLACE_TYPE_KEYS = [
|
|||||||
export function getPlaceType(tags) {
|
export function getPlaceType(tags) {
|
||||||
if (!tags) return null;
|
if (!tags) return null;
|
||||||
|
|
||||||
|
let fallbackKey = null;
|
||||||
|
|
||||||
for (const key of PLACE_TYPE_KEYS) {
|
for (const key of PLACE_TYPE_KEYS) {
|
||||||
const value = tags[key];
|
const value = tags[key];
|
||||||
if (value) {
|
if (value) {
|
||||||
if (value === 'yes') {
|
if (value === 'yes') {
|
||||||
return humanizeOsmTag(key);
|
if (!fallbackKey) {
|
||||||
|
fallbackKey = key;
|
||||||
|
}
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
return humanizeOsmTag(value);
|
return humanizeOsmTag(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (fallbackKey) {
|
||||||
|
return humanizeOsmTag(fallbackKey);
|
||||||
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ export const POI_CATEGORIES = [
|
|||||||
label: 'Things to do',
|
label: 'Things to do',
|
||||||
icon: 'feather-camera',
|
icon: 'feather-camera',
|
||||||
filter: [
|
filter: [
|
||||||
'["tourism"~"^(museum|gallery|attraction|viewpoint|zoo|theme_park|aquarium|artwork)$"]',
|
'["tourism"~"^(museum|gallery|attraction|viewpoint|zoo|theme_park|aquarium|artwork|information)$"]',
|
||||||
'["amenity"~"^(cinema|theatre|arts_centre|planetarium)$"]',
|
'["amenity"~"^(cinema|theatre|arts_centre|planetarium)$"]',
|
||||||
'["leisure"~"^(sports_centre|stadium|water_park)$"]',
|
'["leisure"~"^(sports_centre|stadium|water_park)$"]',
|
||||||
'["historic"]',
|
'["historic"]',
|
||||||
@@ -55,7 +55,7 @@ export const POI_CATEGORIES = [
|
|||||||
id: 'accommodation',
|
id: 'accommodation',
|
||||||
label: 'Hotels',
|
label: 'Hotels',
|
||||||
icon: 'person-sleeping-in-bed',
|
icon: 'person-sleeping-in-bed',
|
||||||
filter: ['["tourism"~"^(hotel|hostel|motel|chalet)$"]'],
|
filter: ['["tourism"~"^(hotel|hostel|motel|chalet|guest_house)$"]'],
|
||||||
types: ['node', 'way', 'relation'],
|
types: ['node', 'way', 'relation'],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -49,11 +49,19 @@ export class MockNostrDataService extends Service {
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
get defaultReadRelays() {
|
get requiredReadRelays() {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
get defaultWriteRelays() {
|
get requiredWriteRelays() {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
get mailboxReadRelays() {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
get mailboxWriteRelays() {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,188 @@
|
|||||||
|
import { module, test } from 'qunit';
|
||||||
|
import { setupRenderingTest } from 'marco/tests/helpers';
|
||||||
|
import { click, fillIn, render } from '@ember/test-helpers';
|
||||||
|
import Service, { service } from '@ember/service';
|
||||||
|
import AppMenuSettingsNostr from 'marco/components/app-menu/settings/nostr';
|
||||||
|
import {
|
||||||
|
excludeRequiredRelays,
|
||||||
|
mergeRequiredRelays,
|
||||||
|
uniqNormalizedRelays,
|
||||||
|
} from 'marco/utils/nostr';
|
||||||
|
|
||||||
|
class MockNostrDataService extends Service {
|
||||||
|
@service settings;
|
||||||
|
|
||||||
|
requiredReadRelays = ['wss://nostr.kosmos.org'];
|
||||||
|
requiredWriteRelays = [];
|
||||||
|
|
||||||
|
mailboxReadRelays = ['wss://mailbox.example.com'];
|
||||||
|
mailboxWriteRelays = ['wss://mailbox-write.example.com'];
|
||||||
|
|
||||||
|
get configuredReadRelays() {
|
||||||
|
const configured = uniqNormalizedRelays([
|
||||||
|
...this.mailboxReadRelays,
|
||||||
|
...(this.settings.nostrReadRelays || []),
|
||||||
|
]);
|
||||||
|
|
||||||
|
return excludeRequiredRelays(
|
||||||
|
configured,
|
||||||
|
this.settings.nostrReadRelayExclusions || []
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
get configuredWriteRelays() {
|
||||||
|
const configured = uniqNormalizedRelays([
|
||||||
|
...this.mailboxWriteRelays,
|
||||||
|
...(this.settings.nostrWriteRelays || []),
|
||||||
|
]);
|
||||||
|
|
||||||
|
return excludeRequiredRelays(
|
||||||
|
configured,
|
||||||
|
this.settings.nostrWriteRelayExclusions || []
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
get activeReadRelays() {
|
||||||
|
return mergeRequiredRelays(
|
||||||
|
this.requiredReadRelays,
|
||||||
|
this.configuredReadRelays
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
get activeWriteRelays() {
|
||||||
|
return mergeRequiredRelays(
|
||||||
|
this.requiredWriteRelays,
|
||||||
|
this.configuredWriteRelays
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
async clearCache() {}
|
||||||
|
}
|
||||||
|
|
||||||
|
function readRows(element) {
|
||||||
|
const list = element.querySelectorAll('.relay-list')[0];
|
||||||
|
return [...list.querySelectorAll('li')];
|
||||||
|
}
|
||||||
|
|
||||||
|
function writeRows(element) {
|
||||||
|
const list = element.querySelectorAll('.relay-list')[1];
|
||||||
|
return [...list.querySelectorAll('li')];
|
||||||
|
}
|
||||||
|
|
||||||
|
function rowByText(rows, text) {
|
||||||
|
return rows.find((row) => row.textContent.includes(text));
|
||||||
|
}
|
||||||
|
|
||||||
|
module('Integration | Component | app-menu/settings/nostr', function (hooks) {
|
||||||
|
setupRenderingTest(hooks);
|
||||||
|
|
||||||
|
hooks.beforeEach(function () {
|
||||||
|
localStorage.removeItem('marco:settings');
|
||||||
|
|
||||||
|
this.owner.register('service:nostrData', MockNostrDataService);
|
||||||
|
this.settings = this.owner.lookup('service:settings');
|
||||||
|
this.onChange = () => {};
|
||||||
|
});
|
||||||
|
|
||||||
|
hooks.afterEach(function () {
|
||||||
|
localStorage.removeItem('marco:settings');
|
||||||
|
});
|
||||||
|
|
||||||
|
async function renderAndOpenDetails(context) {
|
||||||
|
await render(
|
||||||
|
<template><AppMenuSettingsNostr @onChange={{this.onChange}} /></template>
|
||||||
|
);
|
||||||
|
await click('summary');
|
||||||
|
return context.element;
|
||||||
|
}
|
||||||
|
|
||||||
|
test('required read relay is first and non-removable', async function (assert) {
|
||||||
|
const element = await renderAndOpenDetails(this);
|
||||||
|
const rows = readRows(element);
|
||||||
|
|
||||||
|
assert.dom(rows[0]).includesText('nostr.kosmos.org');
|
||||||
|
|
||||||
|
const requiredRow = rowByText(rows, 'nostr.kosmos.org');
|
||||||
|
const mailboxRow = rowByText(rows, 'mailbox.example.com');
|
||||||
|
|
||||||
|
assert.dom(requiredRow.querySelector('.btn-remove-relay')).doesNotExist();
|
||||||
|
assert.dom(mailboxRow.querySelector('.btn-remove-relay')).exists();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('removing mailbox read relay stores exclusion override', async function (assert) {
|
||||||
|
const element = await renderAndOpenDetails(this);
|
||||||
|
const mailboxRow = rowByText(readRows(element), 'mailbox.example.com');
|
||||||
|
|
||||||
|
await click(mailboxRow.querySelector('.btn-remove-relay'));
|
||||||
|
|
||||||
|
assert.deepEqual(this.settings.nostrReadRelayExclusions, [
|
||||||
|
'wss://mailbox.example.com',
|
||||||
|
]);
|
||||||
|
assert.strictEqual(this.settings.nostrReadRelays, null);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('removing custom read relay updates custom list without exclusions', async function (assert) {
|
||||||
|
this.settings.update('nostrReadRelays', ['wss://custom.example.com']);
|
||||||
|
|
||||||
|
const element = await renderAndOpenDetails(this);
|
||||||
|
const customRow = rowByText(readRows(element), 'custom.example.com');
|
||||||
|
|
||||||
|
await click(customRow.querySelector('.btn-remove-relay'));
|
||||||
|
|
||||||
|
assert.strictEqual(this.settings.nostrReadRelays, null);
|
||||||
|
assert.strictEqual(this.settings.nostrReadRelayExclusions, null);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('adding read relay clears existing exclusion for same relay', async function (assert) {
|
||||||
|
this.settings.update('nostrReadRelayExclusions', [
|
||||||
|
'wss://mailbox.example.com',
|
||||||
|
]);
|
||||||
|
|
||||||
|
const element = await renderAndOpenDetails(this);
|
||||||
|
|
||||||
|
await fillIn('#new-read-relay', 'Mailbox.EXAMPLE.com/');
|
||||||
|
await click(element.querySelector('#new-read-relay').nextElementSibling);
|
||||||
|
|
||||||
|
assert.deepEqual(this.settings.nostrReadRelays, [
|
||||||
|
'wss://mailbox.example.com',
|
||||||
|
]);
|
||||||
|
assert.strictEqual(this.settings.nostrReadRelayExclusions, null);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('reset read relays clears additions and exclusions', async function (assert) {
|
||||||
|
this.settings.update('nostrReadRelays', ['wss://custom.example.com']);
|
||||||
|
this.settings.update('nostrReadRelayExclusions', [
|
||||||
|
'wss://mailbox.example.com',
|
||||||
|
]);
|
||||||
|
|
||||||
|
const element = await renderAndOpenDetails(this);
|
||||||
|
await click(element.querySelectorAll('.reset-relays')[0]);
|
||||||
|
|
||||||
|
assert.strictEqual(this.settings.nostrReadRelays, null);
|
||||||
|
assert.strictEqual(this.settings.nostrReadRelayExclusions, null);
|
||||||
|
|
||||||
|
const requiredRow = rowByText(readRows(element), 'nostr.kosmos.org');
|
||||||
|
assert.dom(requiredRow).exists();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('write relays are removable and mailbox delete stores exclusion', async function (assert) {
|
||||||
|
this.settings.update('nostrWriteRelays', [
|
||||||
|
'wss://custom-write.example.com',
|
||||||
|
]);
|
||||||
|
|
||||||
|
const element = await renderAndOpenDetails(this);
|
||||||
|
const rows = writeRows(element);
|
||||||
|
|
||||||
|
assert.true(
|
||||||
|
rows.every((row) => row.querySelector('.btn-remove-relay')),
|
||||||
|
'all write relays can be removed'
|
||||||
|
);
|
||||||
|
|
||||||
|
const mailboxRow = rowByText(rows, 'mailbox-write.example.com');
|
||||||
|
await click(mailboxRow.querySelector('.btn-remove-relay'));
|
||||||
|
|
||||||
|
assert.deepEqual(this.settings.nostrWriteRelayExclusions, [
|
||||||
|
'wss://mailbox-write.example.com',
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -334,4 +334,54 @@ module('Integration | Component | place-details', function (hooks) {
|
|||||||
assert.dom(links[0]).hasText('+44 987 654 321');
|
assert.dom(links[0]).hasText('+44 987 654 321');
|
||||||
assert.dom(links[1]).hasText('+1 234-567 8900');
|
assert.dom(links[1]).hasText('+1 234-567 8900');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('it renders correct OpenStreetMap link for an OSM place', async function (assert) {
|
||||||
|
const place = {
|
||||||
|
title: 'OSM Place',
|
||||||
|
osmId: '12345',
|
||||||
|
osmType: 'node',
|
||||||
|
lat: 52.520008,
|
||||||
|
lon: 13.404954,
|
||||||
|
};
|
||||||
|
|
||||||
|
await render(<template><PlaceDetails @place={{place}} /></template>);
|
||||||
|
|
||||||
|
const osmLink = this.element.querySelector(
|
||||||
|
'.meta-info a[href^="https://www.openstreetmap.org/node/12345"]'
|
||||||
|
);
|
||||||
|
assert.ok(osmLink, 'OpenStreetMap link is rendered');
|
||||||
|
assert.strictEqual(
|
||||||
|
osmLink.getAttribute('href'),
|
||||||
|
'https://www.openstreetmap.org/node/12345'
|
||||||
|
);
|
||||||
|
|
||||||
|
assert.dom('button.btn-link').hasText('Add a photo');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('it renders correct search-based OpenStreetMap link for a custom saved place', async function (assert) {
|
||||||
|
class MockMapUi extends Service {
|
||||||
|
currentCenter = { lat: 52.5, lon: 13.4 };
|
||||||
|
currentZoom = 15.6;
|
||||||
|
}
|
||||||
|
this.owner.register('service:map-ui', MockMapUi);
|
||||||
|
|
||||||
|
const place = {
|
||||||
|
title: 'Custom Place',
|
||||||
|
lat: 52.520008,
|
||||||
|
lon: 13.404954,
|
||||||
|
};
|
||||||
|
|
||||||
|
await render(<template><PlaceDetails @place={{place}} /></template>);
|
||||||
|
|
||||||
|
const osmLink = this.element.querySelector(
|
||||||
|
'.meta-info a[href^="https://www.openstreetmap.org/search"]'
|
||||||
|
);
|
||||||
|
assert.ok(osmLink, 'OpenStreetMap search link is rendered');
|
||||||
|
assert.strictEqual(
|
||||||
|
osmLink.getAttribute('href'),
|
||||||
|
'https://www.openstreetmap.org/search?lat=52.520008&lon=13.404954&zoom=16#map=16/52.50000/13.40000'
|
||||||
|
);
|
||||||
|
|
||||||
|
assert.dom('button.btn-link').doesNotExist();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
import { module, test } from 'qunit';
|
import { module, test } from 'qunit';
|
||||||
import { normalizeRelayUrl, parsePlacePhotos } from 'marco/utils/nostr';
|
import {
|
||||||
|
excludeRequiredRelays,
|
||||||
|
mergeRequiredRelays,
|
||||||
|
normalizeRelayUrl,
|
||||||
|
parsePlacePhotos,
|
||||||
|
uniqNormalizedRelays,
|
||||||
|
} from 'marco/utils/nostr';
|
||||||
|
|
||||||
module('Unit | Utility | nostr', function () {
|
module('Unit | Utility | nostr', function () {
|
||||||
test('normalizeRelayUrl normalizes protocol, case, and slashes', function (assert) {
|
test('normalizeRelayUrl normalizes protocol, case, and slashes', function (assert) {
|
||||||
@@ -141,4 +147,59 @@ module('Unit | Utility | nostr', function () {
|
|||||||
assert.strictEqual(photos[0].placeIdentifier, 'osm:node:123');
|
assert.strictEqual(photos[0].placeIdentifier, 'osm:node:123');
|
||||||
assert.strictEqual(photos[1].placeIdentifier, 'osm:node:456');
|
assert.strictEqual(photos[1].placeIdentifier, 'osm:node:456');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('uniqNormalizedRelays returns normalized unique relays', function (assert) {
|
||||||
|
const relays = uniqNormalizedRelays([
|
||||||
|
'Relay.example.com',
|
||||||
|
'wss://relay.example.com/',
|
||||||
|
'wss://other.example.com',
|
||||||
|
]);
|
||||||
|
|
||||||
|
assert.deepEqual(relays, [
|
||||||
|
'wss://relay.example.com',
|
||||||
|
'wss://other.example.com',
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('mergeRequiredRelays keeps required relays as-is and merges normalized custom relays', function (assert) {
|
||||||
|
const relays = mergeRequiredRelays(
|
||||||
|
['wss://required.example.com', 'required-2.example.com'],
|
||||||
|
['required-2.example.com/', 'wss://custom.example.com']
|
||||||
|
);
|
||||||
|
|
||||||
|
assert.deepEqual(relays, [
|
||||||
|
'wss://required.example.com',
|
||||||
|
'required-2.example.com',
|
||||||
|
'wss://required-2.example.com',
|
||||||
|
'wss://custom.example.com',
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('excludeRequiredRelays removes required relays from normalized custom list', function (assert) {
|
||||||
|
const relays = excludeRequiredRelays(
|
||||||
|
[
|
||||||
|
'wss://required.example.com',
|
||||||
|
'custom.example.com',
|
||||||
|
'ws://custom2.example.com',
|
||||||
|
],
|
||||||
|
['wss://required.example.com']
|
||||||
|
);
|
||||||
|
|
||||||
|
assert.deepEqual(relays, [
|
||||||
|
'wss://custom.example.com',
|
||||||
|
'ws://custom2.example.com',
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('excludeRequiredRelays trusts required list without normalizing it', function (assert) {
|
||||||
|
const relays = excludeRequiredRelays(
|
||||||
|
['Required.example.com', 'custom.example.com'],
|
||||||
|
['required.example.com']
|
||||||
|
);
|
||||||
|
|
||||||
|
assert.deepEqual(relays, [
|
||||||
|
'wss://required.example.com',
|
||||||
|
'wss://custom.example.com',
|
||||||
|
]);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { getIconNameForTags } from 'marco/utils/osm-icons';
|
import { getIconNameForTags, POI_ICON_RULES } from 'marco/utils/osm-icons';
|
||||||
|
import { getIcon } from 'marco/utils/icons';
|
||||||
import { module, test } from 'qunit';
|
import { module, test } from 'qunit';
|
||||||
|
|
||||||
module('Unit | Utility | osm-icons', function () {
|
module('Unit | Utility | osm-icons', function () {
|
||||||
@@ -36,4 +37,14 @@ module('Unit | Utility | osm-icons', function () {
|
|||||||
let result = getIconNameForTags({ foo: 'bar' });
|
let result = getIconNameForTags({ foo: 'bar' });
|
||||||
assert.strictEqual(result, null);
|
assert.strictEqual(result, null);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('all icons used in POI_ICON_RULES exist in the icons utility', function (assert) {
|
||||||
|
for (let rule of POI_ICON_RULES) {
|
||||||
|
let icon = getIcon(rule.icon);
|
||||||
|
assert.ok(
|
||||||
|
icon,
|
||||||
|
`Icon "${rule.icon}" specified in POI_ICON_RULES should be imported and available in getIcon`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -89,6 +89,12 @@ module('Unit | Utility | osm', function (hooks) {
|
|||||||
assert.strictEqual(result, 'Building');
|
assert.strictEqual(result, 'Building');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('getPlaceType ignores generic "yes" values if a more specific tag is present', function (assert) {
|
||||||
|
const tags = { historic: 'yes', building: 'tower' };
|
||||||
|
const result = getPlaceType(tags);
|
||||||
|
assert.strictEqual(result, 'Tower');
|
||||||
|
});
|
||||||
|
|
||||||
test('getPlaceType prioritizes order (amenity > shop > building)', function (assert) {
|
test('getPlaceType prioritizes order (amenity > shop > building)', function (assert) {
|
||||||
// If something is both a shop and a building, it should be a shop
|
// If something is both a shop and a building, it should be a shop
|
||||||
const tags = { building: 'yes', shop: 'supermarket' };
|
const tags = { building: 'yes', shop: 'supermarket' };
|
||||||
|
|||||||
Reference in New Issue
Block a user