mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	chore: 🤖 remove leaflet css from library_loader
This commit is contained in:
		| @@ -77,10 +77,6 @@ const HIGHLIGHT_JS: Library = { | ||||
|     } | ||||
| }; | ||||
|  | ||||
| const LEAFLET: Library = { | ||||
|     css: ["node_modules/leaflet/dist/leaflet.css"] | ||||
| }; | ||||
|  | ||||
| async function requireLibrary(library: Library) { | ||||
|     if (library.css) { | ||||
|         library.css.map((cssUrl) => requireCss(cssUrl)); | ||||
| @@ -168,6 +164,5 @@ export default { | ||||
|     CODE_MIRROR, | ||||
|     CALENDAR_WIDGET, | ||||
|     KATEX, | ||||
|     HIGHLIGHT_JS, | ||||
|     LEAFLET | ||||
|     HIGHLIGHT_JS | ||||
| }; | ||||
|   | ||||
| @@ -1,5 +1,6 @@ | ||||
| import type { Map } from "leaflet"; | ||||
| import library_loader from "../services/library_loader.js"; | ||||
| import L from "leaflet"; | ||||
| import "leaflet/dist/leaflet.css"; | ||||
| import NoteContextAwareWidget from "./note_context_aware_widget.js"; | ||||
|  | ||||
| const TPL = `\ | ||||
| @@ -21,7 +22,7 @@ const TPL = `\ | ||||
|     <div class="geo-map-container"></div> | ||||
| </div>`; | ||||
|  | ||||
| export type Leaflet = typeof import("leaflet"); | ||||
| export type Leaflet = typeof L; | ||||
| export type InitCallback = (L: Leaflet) => void; | ||||
|  | ||||
| export default class GeoMapWidget extends NoteContextAwareWidget { | ||||
| @@ -40,9 +41,6 @@ export default class GeoMapWidget extends NoteContextAwareWidget { | ||||
|  | ||||
|         this.$container = this.$widget.find(".geo-map-container"); | ||||
|  | ||||
|         library_loader.requireLibrary(library_loader.LEAFLET).then(async () => { | ||||
|             const L = (await import("leaflet")).default; | ||||
|  | ||||
|         const map = L.map(this.$container[0], { | ||||
|             worldCopyJump: true | ||||
|         }); | ||||
| @@ -56,7 +54,5 @@ export default class GeoMapWidget extends NoteContextAwareWidget { | ||||
|             attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors', | ||||
|             detectRetina: true | ||||
|         }).addTo(map); | ||||
|         }); | ||||
|     } | ||||
|  | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user