mapcomplete/UI/BigComponents/ShareScreen.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

259 lines
9.9 KiB
TypeScript
Raw Normal View History

import { VariableUiElement } from "../Base/VariableUIElement"
import { Translation } from "../i18n/Translation"
import Svg from "../../Svg"
import Combine from "../Base/Combine"
import { Store, UIEventSource } from "../../Logic/UIEventSource"
import { Utils } from "../../Utils"
import Translations from "../i18n/Translations"
2021-06-10 14:05:26 +02:00
import BaseUIElement from "../BaseUIElement"
import LayerConfig from "../../Models/ThemeConfig/LayerConfig"
import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"
import Loc from "../../Models/Loc"
import BaseLayer from "../../Models/BaseLayer"
import FilteredLayer from "../../Models/FilteredLayer"
import { InputElement } from "../Input/InputElement"
import { CheckBox } from "../Input/Checkboxes"
import { SubtleButton } from "../Base/SubtleButton"
import LZString from "lz-string"
2020-07-29 15:05:19 +02:00
2021-06-13 15:04:55 +02:00
export default class ShareScreen extends Combine {
2021-11-07 16:34:51 +01:00
constructor(state: {
layoutToUse: LayoutConfig
locationControl: UIEventSource<Loc>
backgroundLayer: UIEventSource<BaseLayer>
filteredLayers: UIEventSource<FilteredLayer[]>
}) {
const layout = state?.layoutToUse
2020-07-29 15:05:19 +02:00
const tr = Translations.t.general.sharescreen
const optionCheckboxes: InputElement<boolean>[] = []
const optionParts: Store<string>[] = []
const includeLocation = new CheckBox(tr.fsIncludeCurrentLocation, true)
2020-07-29 15:05:19 +02:00
optionCheckboxes.push(includeLocation)
2020-07-29 15:05:19 +02:00
const currentLocation = state.locationControl
optionParts.push(
includeLocation.GetValue().map(
(includeL) => {
if (currentLocation === undefined) {
2021-11-07 16:34:51 +01:00
return null
}
2020-07-29 15:05:19 +02:00
if (includeL) {
2022-09-08 21:40:48 +02:00
return [
2021-06-14 17:28:11 +02:00
["z", currentLocation.data?.zoom],
["lat", currentLocation.data?.lat],
2021-06-14 17:28:11 +02:00
["lon", currentLocation.data?.lon],
2022-09-08 21:40:48 +02:00
]
.filter((p) => p[1] !== undefined)
.map((p) => p[0] + "=" + p[1])
2021-06-14 17:28:11 +02:00
.join("&")
2022-09-08 21:40:48 +02:00
} else {
2021-11-07 16:34:51 +01:00
return null
2022-09-08 21:40:48 +02:00
}
},
2021-06-14 17:28:11 +02:00
[currentLocation]
2022-09-08 21:40:48 +02:00
)
)
function fLayerToParam(flayer: {
isDisplayed: UIEventSource<boolean>
layerDef: LayerConfig
}) {
2020-08-31 13:25:13 +02:00
if (flayer.isDisplayed.data) {
return null // Being displayed is the default
}
2020-08-31 13:25:13 +02:00
return "layer-" + flayer.layerDef.id + "=" + flayer.isDisplayed.data
}
2021-11-07 16:34:51 +01:00
const currentLayer: UIEventSource<{ id: string; name: string; layer: any }> =
state.backgroundLayer
const currentBackground = new VariableUiElement(
currentLayer.map((layer) => {
return tr.fsIncludeCurrentBackgroundMap.Subs({ name: layer?.name ?? "" })
})
2022-09-08 21:40:48 +02:00
)
const includeCurrentBackground = new CheckBox(currentBackground, true)
2021-11-07 16:34:51 +01:00
optionCheckboxes.push(includeCurrentBackground)
optionParts.push(
includeCurrentBackground.GetValue().map(
(includeBG) => {
2021-11-07 16:34:51 +01:00
if (includeBG) {
return "background=" + currentLayer.data?.id
2021-11-07 16:34:51 +01:00
} else {
return null
}
},
[currentLayer]
2022-09-08 21:40:48 +02:00
)
)
const includeLayerChoices = new CheckBox(tr.fsIncludeCurrentLayers, true)
2021-11-07 16:34:51 +01:00
optionCheckboxes.push(includeLayerChoices)
2022-09-08 21:40:48 +02:00
optionParts.push(
includeLayerChoices.GetValue().map(
(includeLayerSelection) => {
2021-11-07 16:34:51 +01:00
if (includeLayerSelection) {
return Utils.NoNull(state.filteredLayers.data.map(fLayerToParam)).join("&")
} else {
return null
}
},
state.filteredLayers.data.map((flayer) => flayer.isDisplayed)
2022-09-08 21:40:48 +02:00
)
)
2020-08-27 01:03:58 +02:00
const switches = [
2020-08-31 13:25:13 +02:00
{ urlName: "fs-userbadge", human: tr.fsUserbadge },
{ urlName: "fs-search", human: tr.fsSearch },
{ urlName: "fs-welcome-message", human: tr.fsWelcomeMessage },
{ urlName: "fs-layers", human: tr.fsLayers },
{ urlName: "fs-add-new", human: tr.fsAddNew },
{ urlName: "fs-geolocation", human: tr.fsGeolocation },
2020-07-29 15:05:19 +02:00
]
for (const swtch of switches) {
const checkbox = new CheckBox(Translations.W(swtch.human))
2020-07-29 15:05:19 +02:00
optionCheckboxes.push(checkbox)
optionParts.push(
checkbox.GetValue().map((isEn) => {
2020-07-29 15:05:19 +02:00
if (isEn) {
return null
} else {
return `${swtch.urlName}=false`
}
2020-07-29 15:05:19 +02:00
})
2022-09-08 21:40:48 +02:00
)
2020-07-29 15:05:19 +02:00
}
if (layout.definitionRaw !== undefined) {
optionParts.push(new UIEventSource("userlayout=" + (layout.definedAtUrl ?? layout.id)))
}
2020-07-29 15:05:19 +02:00
2021-06-13 15:04:55 +02:00
const options = new Combine(optionCheckboxes).SetClass("flex flex-col")
2020-08-31 13:25:13 +02:00
const url = (currentLocation ?? new UIEventSource(undefined)).map(() => {
const host = window.location.host
let path = window.location.pathname
path = path.substr(0, path.lastIndexOf("/"))
let id = layout.id.toLowerCase()
if (layout.definitionRaw !== undefined) {
id = "theme.html"
}
let literalText = `https://${host}${path}/${id}`
2020-07-29 15:05:19 +02:00
let hash = ""
if (layout.definedAtUrl === undefined && layout.definitionRaw !== undefined) {
hash = "#" + LZString.compressToBase64(Utils.MinifyJSON(layout.definitionRaw))
}
const parts = Utils.NoEmpty(
Utils.NoNull(optionParts.map((eventSource) => eventSource.data))
2022-09-08 21:40:48 +02:00
)
2020-07-29 15:05:19 +02:00
if (parts.length === 0) {
return literalText + hash
2020-07-29 15:05:19 +02:00
}
return literalText + "?" + parts.join("&") + hash
2020-07-29 15:05:19 +02:00
}, optionParts)
2020-08-31 13:25:13 +02:00
2021-06-13 15:04:55 +02:00
const iframeCode = new VariableUiElement(
2020-07-29 15:05:19 +02:00
url.map((url) => {
return `<span class='literal-code iframe-code-block'>
&lt;iframe src="${url}" allow="geolocation" width="100%" height="100%" style="min-width: 250px; min-height: 250px" title="${
layout.title?.txt ?? "MapComplete"
} with MapComplete"&gt;&lt;/iframe&gt
2020-07-29 15:05:19 +02:00
</span>`
})
)
2021-06-13 15:04:55 +02:00
const linkStatus = new UIEventSource<string | Translation>("")
const link = new VariableUiElement(
url.map(
(url) =>
`<input type="text" value=" ${url}" id="code-link--copyable" style="width:90%">`
)
).onClick(async () => {
2020-07-29 15:05:19 +02:00
const shareData = {
title: Translations.W(layout.title)?.ConstructElement().textContent ?? "",
text: Translations.W(layout.description)?.ConstructElement().textContent ?? "",
2021-06-10 14:05:26 +02:00
url: url.data,
2020-07-29 15:05:19 +02:00
}
function rejected() {
const copyText = document.getElementById("code-link--copyable")
2020-07-29 15:05:19 +02:00
// @ts-ignore
copyText.select()
// @ts-ignore
copyText.setSelectionRange(0, 99999) /*For mobile devices*/
document.execCommand("copy")
2021-06-13 15:04:55 +02:00
const copied = tr.copiedToClipboard.Clone()
2020-08-27 01:03:58 +02:00
copied.SetClass("thanks")
2021-06-13 15:04:55 +02:00
linkStatus.setData(copied)
2020-07-29 15:05:19 +02:00
}
try {
navigator
.share(shareData)
.then(() => {
2021-06-13 15:04:55 +02:00
const thx = tr.thanksForSharing.Clone()
2020-08-27 01:03:58 +02:00
thx.SetClass("thanks")
2021-06-13 15:04:55 +02:00
linkStatus.setData(thx)
2020-07-29 15:05:19 +02:00
}, rejected)
.catch(rejected)
} catch (err) {
rejected()
}
2022-09-08 21:40:48 +02:00
})
2020-07-29 15:05:19 +02:00
let downloadThemeConfig: BaseUIElement = undefined
if (layout.definitionRaw !== undefined) {
const downloadThemeConfigAsJson = new SubtleButton(
Svg.download_svg(),
new Combine([tr.downloadCustomTheme, tr.downloadCustomThemeHelp.SetClass("subtle")])
.onClick(() => {
Utils.offerContentsAsDownloadableFile(
layout.definitionRaw,
layout.id + ".mapcomplete-theme-definition.json",
{
mimetype: "application/json",
}
)
})
.SetClass("flex flex-col")
2022-09-08 21:40:48 +02:00
)
let editThemeConfig: BaseUIElement = undefined
if (layout.definedAtUrl === undefined) {
const patchedDefinition = JSON.parse(layout.definitionRaw)
patchedDefinition["language"] = Object.keys(patchedDefinition.title)
editThemeConfig = new SubtleButton(
Svg.pencil_svg(),
"Edit this theme on the custom theme generator",
{
url: `https://pietervdvn.github.io/mc/legacy/070/customGenerator.html#${btoa(
JSON.stringify(patchedDefinition)
)}`,
}
)
}
downloadThemeConfig = new Combine([
downloadThemeConfigAsJson,
editThemeConfig,
]).SetClass("flex flex-col")
}
2020-07-29 15:05:19 +02:00
super([
tr.intro,
2021-06-13 15:04:55 +02:00
link,
new VariableUiElement(linkStatus),
downloadThemeConfig,
tr.addToHomeScreen,
tr.embedIntro,
2021-06-13 15:04:55 +02:00
options,
iframeCode,
])
this.SetClass("flex flex-col link-underline")
2020-07-29 15:05:19 +02:00
}
}