2020-10-14 12:15:09 +02:00
import Combine from "./Base/Combine"
2022-11-02 13:47:34 +01:00
import { FixedUiElement } from "./Base/FixedUiElement"
2021-06-11 22:51:45 +02:00
import BaseUIElement from "./BaseUIElement"
2021-06-21 00:19:19 +02:00
import Title from "./Base/Title"
import Table from "./Base/Table"
2022-11-02 13:47:34 +01:00
import { SpecialVisualization } from "./SpecialVisualization"
import { HistogramViz } from "./Popup/HistogramViz"
import { StealViz } from "./Popup/StealViz"
import { MinimapViz } from "./Popup/MinimapViz"
import { SidedMinimap } from "./Popup/SidedMinimap"
import { ShareLinkViz } from "./Popup/ShareLinkViz"
import { UploadToOsmViz } from "./Popup/UploadToOsmViz"
import { MultiApplyViz } from "./Popup/MultiApplyViz"
import { ExportAsGpxViz } from "./Popup/ExportAsGpxViz"
import { AddNoteCommentViz } from "./Popup/AddNoteCommentViz"
import { PlantNetDetectionViz } from "./Popup/PlantNetDetectionViz"
import { ConflateButton , ImportPointButton , ImportWayButton } from "./Popup/ImportButton"
import TagApplyButton from "./Popup/TagApplyButton"
import { CloseNoteButton } from "./Popup/CloseNoteButton"
import { NearbyImageVis } from "./Popup/NearbyImageVis"
import { MapillaryLinkVis } from "./Popup/MapillaryLinkVis"
import { Stores , UIEventSource } from "../Logic/UIEventSource"
import { AllTagsPanel } from "./AllTagsPanel"
import AllImageProviders from "../Logic/ImageProviders/AllImageProviders"
import { ImageCarousel } from "./Image/ImageCarousel"
import { ImageUploadFlow } from "./Image/ImageUploadFlow"
import { VariableUiElement } from "./Base/VariableUIElement"
import { Utils } from "../Utils"
import WikipediaBox from "./Wikipedia/WikipediaBox"
import Wikidata , { WikidataResponse } from "../Logic/Web/Wikidata"
import { Translation } from "./i18n/Translation"
import Translations from "./i18n/Translations"
import MangroveReviews from "../Logic/Web/MangroveReviews"
import ReviewForm from "./Reviews/ReviewForm"
import ReviewElement from "./Reviews/ReviewElement"
import OpeningHoursVisualization from "./OpeningHours/OpeningHoursVisualization"
import LiveQueryHandler from "../Logic/Web/LiveQueryHandler"
import { SubtleButton } from "./Base/SubtleButton"
import Svg from "../Svg"
import { OpenIdEditor , OpenJosm } from "./BigComponents/CopyrightPanel"
import Hash from "../Logic/Web/Hash"
import NoteCommentElement from "./Popup/NoteCommentElement"
import ImgurUploader from "../Logic/ImageProviders/ImgurUploader"
import FileSelectorButton from "./Input/FileSelectorButton"
import { LoginToggle } from "./Popup/LoginButton"
import Toggle from "./Input/Toggle"
import { SubstitutedTranslation } from "./SubstitutedTranslation"
import List from "./Base/List"
import { OsmFeature } from "../Models/OsmFeature"
import LayerConfig from "../Models/ThemeConfig/LayerConfig"
import { GeoOperations } from "../Logic/GeoOperations"
import StatisticsPanel from "./BigComponents/StatisticsPanel"
import AutoApplyButton from "./Popup/AutoApplyButton"
import { LanguageElement } from "./Popup/LanguageElement"
2023-01-21 23:58:14 +01:00
import FeatureReviews from "../Logic/Web/MangroveReviews"
2022-05-06 12:41:24 +02:00
2020-10-09 20:10:21 +02:00
export default class SpecialVisualizations {
2022-11-02 13:47:34 +01:00
public static specialVisualizations : SpecialVisualization [ ] = SpecialVisualizations . initList ( )
2021-12-12 02:59:24 +01:00
2022-11-02 13:47:34 +01:00
private static initList ( ) : SpecialVisualization [ ] {
2022-01-08 04:22:50 +01:00
const specialVisualizations : SpecialVisualization [ ] = [
2022-10-28 04:33:05 +02:00
new HistogramViz ( ) ,
new StealViz ( ) ,
new MinimapViz ( ) ,
new SidedMinimap ( ) ,
2022-11-02 13:47:34 +01:00
new ShareLinkViz ( ) ,
2022-10-28 04:33:05 +02:00
new UploadToOsmViz ( ) ,
new MultiApplyViz ( ) ,
new ExportAsGpxViz ( ) ,
new AddNoteCommentViz ( ) ,
new PlantNetDetectionViz ( ) ,
new ImportPointButton ( ) ,
new ImportWayButton ( ) ,
new ConflateButton ( ) ,
new TagApplyButton ( ) ,
new CloseNoteButton ( ) ,
new NearbyImageVis ( ) ,
new MapillaryLinkVis ( ) ,
2022-10-29 03:05:29 +02:00
new LanguageElement ( ) ,
2021-12-12 02:59:24 +01:00
{
funcName : "all_tags" ,
docs : "Prints all key-value pairs of the object - used for debugging" ,
args : [ ] ,
2022-01-21 01:57:16 +01:00
constr : ( state , tags : UIEventSource < any > ) = > new AllTagsPanel ( tags , state ) ,
2021-12-12 02:59:24 +01:00
} ,
{
funcName : "image_carousel" ,
docs : "Creates an image carousel for the given sources. An attempt will be made to guess what source is used. Supported: Wikidata identifiers, Wikipedia pages, Wikimedia categories, IMGUR (with attribution, direct links)" ,
args : [
{
2022-03-29 00:20:10 +02:00
name : "image_key" ,
2021-12-12 02:59:24 +01:00
defaultValue : AllImageProviders.defaultKeys.join ( "," ) ,
2022-03-29 00:20:10 +02:00
doc : "The keys given to the images, e.g. if <span class='literal-code'>image</span> is given, the first picture URL will be added as <span class='literal-code'>image</span>, the second as <span class='literal-code'>image:0</span>, the third as <span class='literal-code'>image:1</span>, etc... Multiple values are allowed if ';'-separated " ,
2021-12-12 02:59:24 +01:00
} ,
] ,
2022-01-19 20:34:04 +01:00
constr : ( state , tags , args ) = > {
2021-12-12 02:59:24 +01:00
let imagePrefixes : string [ ] = undefined
if ( args . length > 0 ) {
imagePrefixes = [ ] . concat ( . . . args . map ( ( a ) = > a . split ( "," ) ) )
2021-06-23 02:15:28 +02:00
}
2021-12-21 18:35:31 +01:00
return new ImageCarousel (
AllImageProviders . LoadImagesFor ( tags , imagePrefixes ) ,
2022-09-08 21:40:48 +02:00
tags ,
state
)
2021-12-12 02:59:24 +01:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2021-12-12 02:59:24 +01:00
{
funcName : "image_upload" ,
docs : "Creates a button where a user can upload an image to IMGUR" ,
args : [
{
name : "image-key" ,
doc : "Image tag to add the URL to (or image-tag:0, image-tag:1 when multiple images are added)" ,
defaultValue : "image" ,
} ,
{
name : "label" ,
doc : "The text to show on the button" ,
defaultValue : "Add image" ,
} ,
] ,
2022-01-19 20:34:04 +01:00
constr : ( state , tags , args ) = > {
2021-12-21 18:35:31 +01:00
return new ImageUploadFlow ( tags , state , args [ 0 ] , args [ 1 ] )
2021-12-12 02:59:24 +01:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2021-12-12 02:59:24 +01:00
{
funcName : "wikipedia" ,
docs : "A box showing the corresponding wikipedia article - based on the wikidata tag" ,
args : [
2021-06-23 02:15:28 +02:00
{
2021-12-12 02:59:24 +01:00
name : "keyToShowWikipediaFor" ,
2022-05-01 20:56:16 +02:00
doc : "Use the wikidata entry from this key to show the wikipedia article for. Multiple keys can be given (separated by ';'), in which case the first matching value is used" ,
defaultValue : "wikidata;wikipedia" ,
2021-06-23 02:15:28 +02:00
} ,
2021-12-12 02:59:24 +01:00
] ,
example :
"`{wikipedia()}` is a basic example, `{wikipedia(name:etymology:wikidata)}` to show the wikipedia page of whom the feature was named after. Also remember that these can be styled, e.g. `{wikipedia():max-height: 10rem}` to limit the height" ,
2022-05-01 20:56:16 +02:00
constr : ( _ , tagsSource , args ) = > {
const keys = args [ 0 ] . split ( ";" ) . map ( ( k ) = > k . trim ( ) )
return new VariableUiElement (
tagsSource
. map ( ( tags ) = > {
const key = keys . find (
( k ) = > tags [ k ] !== undefined && tags [ k ] !== ""
2022-09-08 21:40:48 +02:00
)
2022-05-01 20:56:16 +02:00
return tags [ key ]
} )
2021-12-12 02:59:24 +01:00
. map ( ( wikidata ) = > {
const wikidatas : string [ ] = Utils . NoEmpty (
wikidata ? . split ( ";" ) ? . map ( ( wd ) = > wd . trim ( ) ) ? ? [ ]
2022-09-08 21:40:48 +02:00
)
2021-12-12 02:59:24 +01:00
return new WikipediaBox ( wikidatas )
} )
2022-05-01 20:56:16 +02:00
)
2021-12-12 02:59:24 +01:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2022-04-22 01:45:54 +02:00
{
funcName : "wikidata_label" ,
docs : "Shows the label of the corresponding wikidata-item" ,
args : [
{
name : "keyToShowWikidataFor" ,
doc : "Use the wikidata entry from this key to show the label" ,
defaultValue : "wikidata" ,
} ,
] ,
example :
"`{wikidata_label()}` is a basic example, `{wikipedia(name:etymology:wikidata)}` to show the label itself" ,
constr : ( _ , tagsSource , args ) = >
new VariableUiElement (
tagsSource
. map ( ( tags ) = > tags [ args [ 0 ] ] )
. map ( ( wikidata ) = > {
wikidata = Utils . NoEmpty (
wikidata ? . split ( ";" ) ? . map ( ( wd ) = > wd . trim ( ) ) ? ? [ ]
) [ 0 ]
const entry = Wikidata . LoadWikidataEntry ( wikidata )
return new VariableUiElement (
entry . map ( ( e ) = > {
if ( e === undefined || e [ "success" ] === undefined ) {
return wikidata
}
const response = < WikidataResponse > e [ "success" ]
return Translation . fromMap ( response . labels )
} )
2022-09-08 21:40:48 +02:00
)
2022-04-22 01:45:54 +02:00
} )
2022-09-08 21:40:48 +02:00
) ,
2022-04-22 01:45:54 +02:00
} ,
2021-12-12 02:59:24 +01:00
{
funcName : "reviews" ,
docs : "Adds an overview of the mangrove-reviews of this object. Mangrove.Reviews needs - in order to identify the reviewed object - a coordinate and a name. By default, the name of the object is given, but this can be overwritten" ,
example :
"`{reviews()}` for a vanilla review, `{reviews(name, play_forest)}` to review a play forest. If a name is known, the name will be used as identifier, otherwise 'play_forest' is used" ,
args : [
{
name : "subjectKey" ,
defaultValue : "name" ,
doc : "The key to use to determine the subject. If specified, the subject will be <b>tags[subjectKey]</b>" ,
} ,
{
name : "fallback" ,
doc : "The identifier to use, if <i>tags[subjectKey]</i> as specified above is not available. This is effectively a fallback value" ,
} ,
] ,
2022-01-19 20:34:04 +01:00
constr : ( state , tags , args ) = > {
2023-01-21 23:58:14 +01:00
const nameKey = args [ 0 ] ? ? "name"
let fallbackName = args [ 1 ]
const feature = state . allElements . ContainingFeatures . get ( tags . data . id )
const mangrove = FeatureReviews . construct ( feature , state , {
nameKey : nameKey ,
fallbackName ,
} )
const form = new ReviewForm ( ( r ) = > mangrove . createReview ( r ) , state )
return new ReviewElement ( mangrove , form )
2021-12-12 02:59:24 +01:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2021-12-12 02:59:24 +01:00
{
funcName : "opening_hours_table" ,
docs : "Creates an opening-hours table. Usage: {opening_hours_table(opening_hours)} to create a table of the tag 'opening_hours'." ,
args : [
{
2021-06-20 03:09:55 +02:00
name : "key" ,
2021-12-12 02:59:24 +01:00
defaultValue : "opening_hours" ,
doc : "The tagkey from which the table is constructed." ,
} ,
{
name : "prefix" ,
defaultValue : "" ,
doc : "Remove this string from the start of the value before parsing. __Note: use `&LPARENs` to indicate `(` if needed__" ,
} ,
{
name : "postfix" ,
defaultValue : "" ,
doc : "Remove this string from the end of the value before parsing. __Note: use `&RPARENs` to indicate `)` if needed__" ,
} ,
] ,
example :
"A normal opening hours table can be invoked with `{opening_hours_table()}`. A table for e.g. conditional access with opening hours can be `{opening_hours_table(access:conditional, no @ &LPARENS, &RPARENS)}`" ,
2022-01-19 20:34:04 +01:00
constr : ( state , tagSource : UIEventSource < any > , args ) = > {
2021-12-21 18:35:31 +01:00
return new OpeningHoursVisualization (
tagSource ,
state ,
args [ 0 ] ,
args [ 1 ] ,
args [ 2 ]
)
2021-12-12 02:59:24 +01:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2021-12-12 02:59:24 +01:00
{
funcName : "live" ,
docs : "Downloads a JSON from the given URL, e.g. '{live(example.org/data.json, shorthand:x.y.z, other:a.b.c, shorthand)}' will download the given file, will create an object {shorthand: json[x][y][z], other: json[a][b][c] out of it and will return 'other' or 'json[a][b][c]. This is made to use in combination with tags, e.g. {live({url}, {url:format}, needed_value)}" ,
example :
"{live({url},{url:format},hour)} {live(https://data.mobility.brussels/bike/api/counts/?request=live&featureID=CB2105,hour:data.hour_cnt;day:data.day_cnt;year:data.year_cnt,hour)}" ,
args : [
{
2022-04-22 01:45:54 +02:00
name : "Url" ,
2022-03-29 00:20:10 +02:00
doc : "The URL to load" ,
required : true ,
2021-12-12 02:59:24 +01:00
} ,
{
name : "Shorthands" ,
doc : "A list of shorthands, of the format 'shorthandname:path.path.path'. separated by ;" ,
} ,
{
2022-03-29 00:20:10 +02:00
name : "path" ,
doc : "The path (or shorthand) that should be returned" ,
2021-12-12 02:59:24 +01:00
} ,
] ,
2022-01-19 20:34:04 +01:00
constr : ( state , tagSource : UIEventSource < any > , args ) = > {
2021-12-12 02:59:24 +01:00
const url = args [ 0 ]
const shorthands = args [ 1 ]
const neededValue = args [ 2 ]
const source = LiveQueryHandler . FetchLiveData ( url , shorthands . split ( ";" ) )
return new VariableUiElement (
source . map ( ( data ) = > data [ neededValue ] ? ? "Loading..." )
2022-09-08 21:40:48 +02:00
)
2021-12-12 02:59:24 +01:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2021-12-12 02:59:24 +01:00
{
funcName : "canonical" ,
2022-07-26 12:05:34 +02:00
docs : "Converts a short, canonical value into the long, translated text including the unit. This only works if a `unit` is defined for the corresponding value. The unit specification will be included in the text. " ,
example :
"If the object has `length=42`, then `{canonical(length)}` will be shown as **42 meter** (in english), **42 metre** (in french), ..." ,
2021-12-12 02:59:24 +01:00
args : [
{
name : "key" ,
2022-03-29 00:20:10 +02:00
doc : "The key of the tag to give the canonical text for" ,
required : true ,
2021-12-12 02:59:24 +01:00
} ,
] ,
constr : ( state , tagSource , args ) = > {
const key = args [ 0 ]
return new VariableUiElement (
tagSource
. map ( ( tags ) = > tags [ key ] )
. map ( ( value ) = > {
if ( value === undefined ) {
return undefined
}
2022-04-28 00:32:15 +02:00
const allUnits = [ ] . concat (
. . . ( state ? . layoutToUse ? . layers ? . map ( ( lyr ) = > lyr . units ) ? ? [ ] )
2022-09-08 21:40:48 +02:00
)
2021-12-12 02:59:24 +01:00
const unit = allUnits . filter ( ( unit ) = >
unit . isApplicableToKey ( key )
) [ 0 ]
if ( unit === undefined ) {
return value
}
return unit . asHumanLongValue ( value )
} )
)
} ,
2022-09-08 21:40:48 +02:00
} ,
2021-12-23 21:28:41 +01:00
{
funcName : "export_as_geojson" ,
docs : "Exports the selected feature as GeoJson-file" ,
args : [ ] ,
2022-01-19 20:34:04 +01:00
constr : ( state , tagSource ) = > {
2021-12-23 21:28:41 +01:00
const t = Translations . t . general . download
2022-09-08 21:40:48 +02:00
2021-12-23 21:28:41 +01:00
return new SubtleButton (
Svg . download_ui ( ) ,
new Combine ( [
t . downloadFeatureAsGeojson . SetClass ( "font-bold text-lg" ) ,
t . downloadGeoJsonHelper . SetClass ( "subtle" ) ,
] ) . SetClass ( "flex flex-col" )
) . onClick ( ( ) = > {
console . log ( "Exporting as Geojson" )
const tags = tagSource . data
const feature = state . allElements . ContainingFeatures . get ( tags . id )
const matchingLayer = state ? . layoutToUse ? . getMatchingLayer ( tags )
const title =
matchingLayer . title ? . GetRenderValue ( tags ) ? . Subs ( tags ) ? . txt ? ? "geojson"
const data = JSON . stringify ( feature , null , " " )
Utils . offerContentsAsDownloadableFile (
data ,
title + "_mapcomplete_export.geojson" ,
{
mimetype : "application/vnd.geo+json" ,
}
)
} )
} ,
2022-09-08 21:40:48 +02:00
} ,
2021-12-23 21:28:41 +01:00
{
funcName : "open_in_iD" ,
docs : "Opens the current view in the iD-editor" ,
args : [ ] ,
2022-01-08 04:22:50 +01:00
constr : ( state , feature ) = > {
2021-12-23 21:28:41 +01:00
return new OpenIdEditor ( state , undefined , feature . data . id )
} ,
2022-09-08 21:40:48 +02:00
} ,
2022-06-08 12:53:04 +02:00
{
funcName : "open_in_josm" ,
docs : "Opens the current view in the JOSM-editor" ,
args : [ ] ,
constr : ( state , feature ) = > {
return new OpenJosm ( state )
} ,
2022-09-08 21:40:48 +02:00
} ,
2021-12-12 02:59:24 +01:00
{
funcName : "clear_location_history" ,
docs : "A button to remove the travelled track information from the device" ,
args : [ ] ,
constr : ( state ) = > {
return new SubtleButton (
Svg . delete_icon_svg ( ) . SetStyle ( "height: 1.5rem" ) ,
Translations . t . general . removeLocationHistory
) . onClick ( ( ) = > {
state . historicalUserLocations . features . setData ( [ ] )
Hash . hash . setData ( undefined )
} )
2022-01-07 04:14:53 +01:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2022-01-08 14:08:04 +01:00
{
2022-01-08 04:22:50 +01:00
funcName : "visualize_note_comments" ,
2022-01-12 02:31:51 +01:00
docs : "Visualises the comments for notes" ,
2022-09-08 21:40:48 +02:00
args : [
{
2022-01-08 04:22:50 +01:00
name : "commentsKey" ,
doc : "The property name of the comments, which should be stringified json" ,
defaultValue : "comments" ,
2022-09-08 21:40:48 +02:00
} ,
{
2022-01-12 02:31:51 +01:00
name : "start" ,
2022-01-26 21:40:38 +01:00
doc : "Drop the first 'start' comments" ,
2022-01-12 02:31:51 +01:00
defaultValue : "0" ,
2022-09-08 21:40:48 +02:00
} ,
] ,
2022-01-08 14:08:04 +01:00
constr : ( state , tags , args ) = >
new VariableUiElement (
2022-09-08 21:40:48 +02:00
tags
2022-07-27 23:59:04 +02:00
. map ( ( tags ) = > tags [ args [ 0 ] ] )
2022-01-08 04:22:50 +01:00
. map ( ( commentsStr ) = > {
2022-01-08 14:08:04 +01:00
const comments : any [ ] = JSON . parse ( commentsStr )
2022-01-12 02:31:51 +01:00
const startLoc = Number ( args [ 1 ] ? ? 0 )
2022-01-26 21:40:38 +01:00
if ( ! isNaN ( startLoc ) && startLoc > 0 ) {
2022-01-12 02:31:51 +01:00
comments . splice ( 0 , startLoc )
2022-09-08 21:40:48 +02:00
}
2022-07-29 20:04:36 +02:00
return new Combine (
2022-09-08 21:40:48 +02:00
comments
2022-01-08 04:22:50 +01:00
. filter ( ( c ) = > c . text !== "" )
2022-01-08 14:08:04 +01:00
. map ( ( c ) = > new NoteCommentElement ( c ) )
2022-01-08 17:44:23 +01:00
) . SetClass ( "flex flex-col" )
2022-09-08 21:40:48 +02:00
} )
) ,
} ,
{
2022-01-08 14:08:04 +01:00
funcName : "add_image_to_note" ,
docs : "Adds an image to a node" ,
args : [
{
name : "Id-key" ,
doc : "The property name where the ID of the note to close can be found" ,
defaultValue : "id" ,
} ,
] ,
constr : ( state , tags , args ) = > {
2022-01-26 21:40:38 +01:00
const isUploading = new UIEventSource ( false )
const t = Translations . t . notes
const id = tags . data [ args [ 0 ] ? ? "id" ]
2022-09-08 21:40:48 +02:00
2022-09-02 12:39:40 +02:00
const uploader = new ImgurUploader ( async ( url ) = > {
2022-01-08 14:08:04 +01:00
isUploading . setData ( false )
2022-09-02 12:39:40 +02:00
await state . osmConnection . addCommentToNote ( id , url )
2022-01-08 14:08:04 +01:00
NoteCommentElement . addCommentTo ( url , tags , state )
} )
const label = new Combine ( [
Svg . camera_plus_ui ( ) . SetClass ( "block w-12 h-12 p-1 text-4xl " ) ,
Translations . t . image . addPicture ,
2022-01-08 17:44:23 +01:00
] ) . SetClass (
2022-01-08 14:08:04 +01:00
"p-2 border-4 border-black rounded-full font-bold h-full align-center w-full flex justify-center"
)
2022-01-26 21:40:38 +01:00
2022-01-08 14:08:04 +01:00
const fileSelector = new FileSelectorButton ( label )
fileSelector . GetValue ( ) . addCallback ( ( filelist ) = > {
isUploading . setData ( true )
uploader . uploadMany ( "Image for osm.org/note/" + id , "CC0" , filelist )
} )
2022-01-08 17:44:23 +01:00
const ti = Translations . t . image
const uploadPanel = new Combine ( [
fileSelector ,
ti . respectPrivacy . SetClass ( "text-sm" ) ,
] ) . SetClass ( "flex flex-col" )
2022-01-26 21:40:38 +01:00
return new LoginToggle (
new Toggle (
2022-01-08 14:08:04 +01:00
Translations . t . image . uploadingPicture . SetClass ( "alert" ) ,
2022-01-08 17:44:23 +01:00
uploadPanel ,
isUploading
) ,
t . loginToAddPicture ,
state
)
2022-02-16 02:24:15 +01:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2022-02-16 02:24:15 +01:00
{
2022-03-10 23:20:50 +01:00
funcName : "title" ,
2022-02-16 02:24:15 +01:00
args : [ ] ,
2022-03-10 23:20:50 +01:00
docs : "Shows the title of the popup. Useful for some cases, e.g. 'What is phone number of {title()}?'" ,
example :
"`What is the phone number of {title()}`, which might automatically become `What is the phone number of XYZ`." ,
2022-03-13 02:46:42 +01:00
constr : ( state , tagsSource ) = >
2022-02-20 00:30:28 +01:00
new VariableUiElement (
tagsSource . map ( ( tags ) = > {
2022-02-16 02:24:15 +01:00
const layer = state . layoutToUse . getMatchingLayer ( tags )
const title = layer ? . title ? . GetRenderValue ( tags )
2022-03-10 23:20:50 +01:00
if ( title === undefined ) {
2022-02-20 00:30:28 +01:00
return undefined
}
return new SubstitutedTranslation ( title , tagsSource , state )
2022-02-16 02:24:15 +01:00
} )
2022-09-08 21:40:48 +02:00
) ,
2022-05-06 12:41:24 +02:00
} ,
2022-07-13 16:12:25 +02:00
{
funcName : "maproulette_task" ,
args : [ ] ,
constr ( state , tagSource , argument , guistate ) {
let parentId = tagSource . data . mr_challengeId
2022-07-27 23:59:04 +02:00
let challenge = Stores . FromPromise (
Utils . downloadJsonCached (
` https://maproulette.org/api/v2/challenge/ ${ parentId } ` ,
24 * 60 * 60 * 1000
2022-09-08 21:40:48 +02:00
)
)
2022-07-13 16:12:25 +02:00
2022-10-28 04:33:05 +02:00
return new VariableUiElement (
2022-07-27 23:59:04 +02:00
challenge . map ( ( challenge ) = > {
2022-07-13 16:12:25 +02:00
let listItems : BaseUIElement [ ] = [ ]
let title : BaseUIElement
2022-07-27 23:59:04 +02:00
2022-07-13 16:12:25 +02:00
if ( challenge ? . name ) {
title = new Title ( challenge . name )
}
if ( challenge ? . description ) {
listItems . push ( new FixedUiElement ( challenge . description ) )
}
if ( challenge ? . instruction ) {
listItems . push ( new FixedUiElement ( challenge . instruction ) )
}
2022-07-27 23:59:04 +02:00
if ( listItems . length === 0 ) {
2022-07-13 16:12:25 +02:00
return undefined
} else {
return [ title , new List ( listItems ) ]
}
} )
2022-09-08 21:40:48 +02:00
)
2022-07-27 09:28:42 +02:00
} ,
2022-07-13 16:12:25 +02:00
docs : "Show details of a MapRoulette task" ,
2022-09-08 21:40:48 +02:00
} ,
2022-07-25 18:55:15 +02:00
{
funcName : "statistics" ,
docs : "Show general statistics about the elements currently in view. Intended to use on the `current_view`-layer" ,
args : [ ] ,
2022-07-27 23:59:04 +02:00
constr : ( state , tagsSource , args , guiState ) = > {
2022-07-25 18:55:15 +02:00
const elementsInview = new UIEventSource <
{
distance : number
center : [ number , number ]
element : OsmFeature
layer : LayerConfig
} [ ]
2022-11-02 13:47:34 +01:00
> ( [ ] )
2022-09-08 21:40:48 +02:00
2022-07-25 18:55:15 +02:00
function update() {
2022-07-27 23:59:04 +02:00
const mapCenter = < [ number , number ] > [
state . locationControl . data . lon ,
state . locationControl . data . lon ,
]
2022-07-25 18:55:15 +02:00
const bbox = state . currentBounds . data
const elements = state . featurePipeline
. getAllVisibleElementsWithmeta ( bbox )
. map ( ( el ) = > {
const distance = GeoOperations . distanceBetween ( el . center , mapCenter )
2022-07-27 23:59:04 +02:00
return { . . . el , distance }
2022-07-25 18:55:15 +02:00
} )
elements . sort ( ( e0 , e1 ) = > e0 . distance - e1 . distance )
elementsInview . setData ( elements )
}
2022-07-27 23:59:04 +02:00
state . currentBounds . addCallbackAndRun ( update )
state . featurePipeline . newDataLoadedSignal . addCallback ( update )
2022-07-25 18:55:15 +02:00
state . filteredLayers . addCallbackAndRun ( ( fls ) = > {
2022-07-27 23:59:04 +02:00
for ( const fl of fls ) {
fl . isDisplayed . addCallback ( update )
2022-07-25 18:55:15 +02:00
fl . appliedFilters . addCallback ( update )
2022-07-27 23:59:04 +02:00
}
} )
return new StatisticsPanel ( elementsInview , state )
2022-09-08 21:40:48 +02:00
} ,
} ,
2022-07-27 23:59:04 +02:00
{
funcName : "send_email" ,
docs : "Creates a `mailto`-link where some fields are already set and correctly escaped. The user will be promted to send the email" ,
args : [
2022-09-08 21:40:48 +02:00
{
2022-07-27 23:59:04 +02:00
name : "to" ,
doc : "Who to send the email to?" ,
2022-07-29 20:04:36 +02:00
required : true ,
2022-09-08 21:40:48 +02:00
} ,
{
2022-07-27 23:59:04 +02:00
name : "subject" ,
doc : "The subject of the email" ,
required : true ,
2022-09-08 21:40:48 +02:00
} ,
{
2022-07-27 23:59:04 +02:00
name : "body" ,
doc : "The text in the email" ,
2022-07-29 20:04:36 +02:00
required : true ,
2022-09-08 21:40:48 +02:00
} ,
2022-07-27 23:59:04 +02:00
2022-09-08 21:40:48 +02:00
{
2022-07-27 23:59:04 +02:00
name : "button_text" ,
doc : "The text shown on the button in the UI" ,
2022-07-29 20:04:36 +02:00
required : true ,
2022-09-08 21:40:48 +02:00
} ,
] ,
2022-07-27 23:59:04 +02:00
constr ( state , tags , args ) {
return new VariableUiElement (
tags . map ( ( tags ) = > {
const [ to , subject , body , button_text ] = args . map ( ( str ) = >
Utils . SubstituteKeys ( str , tags )
)
const url =
"mailto:" +
to +
"?subject=" +
encodeURIComponent ( subject ) +
"&body=" +
encodeURIComponent ( body )
return new SubtleButton ( Svg . envelope_svg ( ) , button_text , {
url ,
} )
} )
2022-09-08 21:40:48 +02:00
)
2022-07-28 09:16:19 +02:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2022-07-28 09:16:19 +02:00
{
funcName : "multi" ,
docs : "Given an embedded tagRendering (read only) and a key, will read the keyname as a JSON-list. Every element of this list will be considered as tags and rendered with the tagRendering" ,
2022-07-29 20:04:36 +02:00
example :
"```json\n" +
JSON . stringify (
2022-07-28 09:16:19 +02:00
{
render : {
special : {
2022-07-29 20:04:36 +02:00
type : "multi" ,
key : "_doors_from_building_properties" ,
tagRendering : {
render : "The building containing this feature has a <a href='#{id}'>door</a> of width {entrance:width}" ,
2022-09-08 21:40:48 +02:00
} ,
} ,
} ,
2022-07-29 20:04:36 +02:00
} ,
2022-09-08 21:40:48 +02:00
null ,
" "
) +
2022-10-11 01:39:09 +02:00
"\n```" ,
2022-09-08 21:40:48 +02:00
args : [
2022-07-29 20:04:36 +02:00
{
2021-12-12 02:59:24 +01:00
name : "key" ,
2022-08-22 19:16:37 +02:00
doc : "The property to read and to interpret as a list of properties" ,
2022-07-29 20:04:36 +02:00
required : true ,
2022-09-08 21:40:48 +02:00
} ,
{
2022-07-29 20:04:36 +02:00
name : "tagrendering" ,
doc : "An entire tagRenderingConfig" ,
required : true ,
} ,
2022-09-08 21:40:48 +02:00
] ,
2022-07-28 09:16:19 +02:00
constr ( state , featureTags , args ) {
const [ key , tr ] = args
2022-07-29 20:04:36 +02:00
const translation = new Translation ( { "*" : tr } )
return new VariableUiElement (
featureTags . map ( ( tags ) = > {
const properties : object [ ] = JSON . parse ( tags [ key ] )
const elements = [ ]
for ( const property of properties ) {
const subsTr = new SubstitutedTranslation (
translation ,
new UIEventSource < any > ( property ) ,
state
)
elements . push ( subsTr )
}
return new List ( elements )
} )
2022-09-08 21:40:48 +02:00
)
2022-07-29 20:04:36 +02:00
} ,
2022-09-08 21:40:48 +02:00
} ,
2020-10-17 02:37:53 +02:00
]
2022-01-08 04:22:50 +01:00
specialVisualizations . push ( new AutoApplyButton ( specialVisualizations ) )
2022-04-22 01:45:54 +02:00
2022-11-02 13:47:34 +01:00
const invalid = specialVisualizations
. map ( ( sp , i ) = > ( { sp , i } ) )
. filter ( ( sp ) = > sp . sp . funcName === undefined )
if ( invalid . length > 0 ) {
throw (
"Invalid special visualisation found: funcName is undefined for " +
invalid . map ( ( sp ) = > sp . i ) . join ( ", " ) +
'. Did you perhaps type \n funcName: "funcname" // type declaration uses COLON\ninstead of:\n funcName = "funcName" // value definition uses EQUAL'
)
2022-10-28 04:33:05 +02:00
}
2022-01-08 04:22:50 +01:00
return specialVisualizations
2020-10-17 02:37:53 +02:00
}
2022-10-28 04:33:05 +02:00
public static DocumentationFor ( viz : string | SpecialVisualization ) : BaseUIElement | undefined {
if ( typeof viz === "string" ) {
viz = SpecialVisualizations . specialVisualizations . find ( ( sv ) = > sv . funcName === viz )
}
if ( viz === undefined ) {
return undefined
}
return new Combine ( [
new Title ( viz . funcName , 3 ) ,
viz . docs ,
viz . args . length > 0
? new Table (
[ "name" , "default" , "description" ] ,
viz . args . map ( ( arg ) = > {
let defaultArg = arg . defaultValue ? ? "_undefined_"
if ( defaultArg == "" ) {
defaultArg = "_empty string_"
}
return [ arg . name , defaultArg , arg . doc ]
} )
)
: undefined ,
new Title ( "Example usage of " + viz . funcName , 4 ) ,
new FixedUiElement (
viz . example ? ?
"`{" +
viz . funcName +
"(" +
viz . args . map ( ( arg ) = > arg . defaultValue ) . join ( "," ) +
")}`"
) . SetClass ( "literal-code" ) ,
] )
2020-10-17 02:37:53 +02:00
}
2021-10-29 18:16:51 +02:00
2022-10-28 04:33:05 +02:00
public static HelpMessage() {
const helpTexts = SpecialVisualizations . specialVisualizations . map ( ( viz ) = >
SpecialVisualizations . DocumentationFor ( viz )
)
return new Combine ( [
new Combine ( [
new Title ( "Special tag renderings" , 1 ) ,
"In a tagrendering, some special values are substituted by an advanced UI-element. This allows advanced features and visualizations to be reused by custom themes or even to query third-party API's." ,
"General usage is `{func_name()}`, `{func_name(arg, someotherarg)}` or `{func_name(args):cssStyle}`. Note that you _do not_ need to use quotes around your arguments, the comma is enough to separate them. This also implies you cannot use a comma in your args" ,
new Title ( "Using expanded syntax" , 4 ) ,
` Instead of using \` {"render": {"en": "{some_special_visualisation(some_arg, some other really long message, more args)} , "nl": "{some_special_visualisation(some_arg, een boodschap in een andere taal, more args)}} \` , one can also write ` ,
new FixedUiElement (
JSON . stringify (
{
render : {
special : {
type : "some_special_visualisation" ,
before : {
en : "Some text to prefix before the special element (e.g. a title)" ,
nl : "Een tekst om voor het element te zetten (bv. een titel)" ,
} ,
after : {
en : "Some text to put after the element, e.g. a footer" ,
} ,
argname : "some_arg" ,
message : {
en : "some other really long message" ,
nl : "een boodschap in een andere taal" ,
} ,
other_arg_name : "more args" ,
} ,
} ,
} ,
null ,
" "
)
) . SetClass ( "code" ) ,
] ) . SetClass ( "flex flex-col" ) ,
. . . helpTexts ,
] ) . SetClass ( "flex flex-col" )
}
2020-10-09 20:10:21 +02:00
}