mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2026-08-01 10:18:54 -04:00
commit 9b5b80380fc81f5a68828e22754f0e7d53b0dea0
Author: squidfunk <martin.donath@squidfunk.com>
Date: Sun Feb 7 16:25:06 2021 +0100
Refactored more stuff
commit 5a2108254f1222db7de08690e13c24e972ea19c0
Author: squidfunk <martin.donath@squidfunk.com>
Date: Sun Feb 7 13:48:16 2021 +0100
Refactored more stuff
commit b3a112f4bddefebcf9dbd1d0ffe240d86fc9aa08
Author: squidfunk <martin.donath@squidfunk.com>
Date: Sun Feb 7 12:02:42 2021 +0100
Refactored more stuff
commit bff323b6b81571021c0ac9be6f637de7728447a5
Author: squidfunk <martin.donath@squidfunk.com>
Date: Sat Feb 6 18:14:52 2021 +0100
Refactored search result list
commit 27b7e7e2da3b725797ad769e4411260ffd35b9f8
Author: squidfunk <martin.donath@squidfunk.com>
Date: Sat Feb 6 17:12:36 2021 +0100
Refactored more components
commit 3747e5ba6d084ed513a2659f48f161449b760076
Author: squidfunk <martin.donath@squidfunk.com>
Date: Sun Jan 24 18:56:26 2021 +0100
Implemented new architecture for several components
commit ea2851ab0f27113b080c2539a94a88dc0332be84
Author: squidfunk <martin.donath@squidfunk.com>
Date: Sun Jan 24 14:53:42 2021 +0100
Removed unnecessary height declaration for sidebars
commit 3c3f83ab4ef392dbabf1a11afba2556e529b1674
Merge: 91d239d8 13024179
Author: squidfunk <martin.donath@squidfunk.com>
Date: Sun Jan 24 13:04:49 2021 +0100
Merge branch 'master' into refactor/observable-architecture
commit 91d239d86649b9571b376011669bc73a7865b186
Author: squidfunk <martin.donath@squidfunk.com>
Date: Sat Jan 9 13:11:04 2021 +0100
Started refactoring observable architecture
141 lines
4.4 KiB
TypeScript
141 lines
4.4 KiB
TypeScript
/*
|
|
* Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to
|
|
* deal in the Software without restriction, including without limitation the
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
import "focus-visible"
|
|
import { merge, NEVER, Observable, Subject } from "rxjs"
|
|
import { switchMap } from "rxjs/operators"
|
|
|
|
import {
|
|
getElementOrThrow,
|
|
getElements,
|
|
watchLocationTarget,
|
|
watchMedia,
|
|
watchPrint,
|
|
watchViewport
|
|
} from "./browser"
|
|
import {
|
|
mountContent,
|
|
mountDialog,
|
|
mountHeader,
|
|
mountHeaderTitle,
|
|
mountSearch,
|
|
mountSidebar,
|
|
mountSource,
|
|
mountTableOfContents,
|
|
mountTabs,
|
|
watchHeader,
|
|
watchMain
|
|
} from "./components"
|
|
import {
|
|
setupClipboardJS
|
|
} from "./integrations"
|
|
import { translation } from "./_"
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Program
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
/* Yay, JavaScript is available */
|
|
document.documentElement.classList.remove("no-js")
|
|
document.documentElement.classList.add("js")
|
|
|
|
/* Set up subjects */
|
|
const target$ = watchLocationTarget()
|
|
|
|
/* Set up user interface observables */
|
|
const viewport$ = watchViewport()
|
|
const tablet$ = watchMedia("(min-width: 960px)")
|
|
const screen$ = watchMedia("(min-width: 1220px)")
|
|
const print$ = watchPrint()
|
|
|
|
// these elements MUST be available
|
|
const header = getElementOrThrow("[data-md-component=header]")
|
|
const main = getElementOrThrow("[data-md-component=main]")
|
|
|
|
const header$ = watchHeader(header)
|
|
const main$ = watchMain(main, { header$: header$, viewport$ })
|
|
|
|
/* Setup Clipboard.js integration */
|
|
const message$ = new Subject<string>()
|
|
setupClipboardJS()
|
|
.subscribe(() => message$.next(translation("clipboard.copied")))
|
|
|
|
// TODO: watchElements + general mount function that takes a factory...
|
|
// + a toggle function (optionally)
|
|
|
|
const app$ = merge(
|
|
|
|
/* Content */
|
|
...getElements("[data-md-component=content]")
|
|
.map(child => mountContent(child, { target$, viewport$, print$ })),
|
|
|
|
/* Dialog */
|
|
...getElements("[data-md-component=dialog]")
|
|
.map(child => mountDialog(child, { message$ })),
|
|
|
|
/* Header */
|
|
...getElements("[data-md-component=header]")
|
|
.map(child => mountHeader(child, { viewport$, header$, main$ })),
|
|
|
|
/* Header title */
|
|
...getElements("[data-md-component=header-title]")
|
|
.map(child => mountHeaderTitle(child, { viewport$, header$ })),
|
|
|
|
/* Search */
|
|
...getElements("[data-md-component=search]")
|
|
.map(child => mountSearch(child)),
|
|
|
|
/* Sidebar */
|
|
...getElements("[data-md-component=sidebar]")
|
|
.map(child => child.getAttribute("data-md-type") === "navigation"
|
|
? at(screen$, () => mountSidebar(child, { viewport$, header$, main$ }))
|
|
: at(tablet$, () => mountSidebar(child, { viewport$, header$, main$ }))
|
|
),
|
|
|
|
/* Repository information */
|
|
...getElements("[data-md-component=source]")
|
|
.map(child => mountSource(child as HTMLAnchorElement)),
|
|
|
|
/* Navigation tabs */
|
|
...getElements("[data-md-component=tabs]")
|
|
.map(child => mountTabs(child, { viewport$, header$ })),
|
|
|
|
/* Table of contents */
|
|
...getElements("[data-md-component=toc]")
|
|
.map(child => mountTableOfContents(child, { viewport$, header$ })),
|
|
)
|
|
|
|
app$.subscribe(console.log)
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
// put this somewhere else
|
|
function at<T>(
|
|
toggle$: Observable<boolean>, factory: () => Observable<T>
|
|
) {
|
|
return toggle$
|
|
.pipe(
|
|
switchMap(active => active ? factory() : NEVER),
|
|
)
|
|
}
|