-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for instant navigation progress indicator
- Loading branch information
Showing
28 changed files
with
323 additions
and
93 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
material/overrides/assets/javascripts/custom.9458f965.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
...ts/javascripts/custom.a4bbca43.min.js.map → ...ts/javascripts/custom.9458f965.min.js.map
Large diffs are not rendered by default.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
material/overrides/assets/javascripts/custom.a4bbca43.min.js
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 0 additions & 29 deletions
29
material/templates/assets/javascripts/bundle.697ed5af.min.js
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
material/templates/assets/javascripts/bundle.697ed5af.min.js.map
This file was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
material/templates/assets/javascripts/bundle.6eac0284.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
material/templates/assets/javascripts/bundle.6eac0284.min.js.map
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
material/templates/assets/stylesheets/main.1dbc8ddf.min.css.map
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
material/templates/assets/stylesheets/main.79e020e9.min.css.map
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{#- | ||
This file was automatically generated - do not edit | ||
-#} | ||
<div class="md-progress" data-md-component="progress" role="progressbar"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
87 changes: 87 additions & 0 deletions
87
src/templates/assets/javascripts/components/progress/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
* Copyright (c) 2016-2023 Martin Donath <[email protected]> | ||
* | ||
* 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 { | ||
Observable, | ||
Subject, | ||
defer, | ||
finalize, | ||
map, | ||
tap | ||
} from "rxjs" | ||
|
||
import { Component } from "../_" | ||
|
||
/* ---------------------------------------------------------------------------- | ||
* Types | ||
* ------------------------------------------------------------------------- */ | ||
|
||
/** | ||
* Progress indicator | ||
*/ | ||
export interface Progress { | ||
value: number // Progress value | ||
} | ||
|
||
/* ---------------------------------------------------------------------------- | ||
* Helper types | ||
* ------------------------------------------------------------------------- */ | ||
|
||
/** | ||
* Mount options | ||
*/ | ||
interface MountOptions { | ||
progress$: Subject<number> // Progress subject | ||
} | ||
|
||
/* ---------------------------------------------------------------------------- | ||
* Functions | ||
* ------------------------------------------------------------------------- */ | ||
|
||
/** | ||
* Mount progress indicator | ||
* | ||
* @param el - Progress indicator element | ||
* @param options - Options | ||
* | ||
* @returns Progress indicator component observable | ||
*/ | ||
export function mountProgress( | ||
el: HTMLElement, { progress$ }: MountOptions | ||
): Observable<Component<Progress>> { | ||
|
||
// Mount component on subscription | ||
return defer(() => { | ||
const push$ = new Subject<Progress>() | ||
push$.subscribe(({ value }) => { | ||
el.style.setProperty("--md-progress-value", `${value}`) | ||
}) | ||
|
||
// Create and return component | ||
return progress$ | ||
.pipe( | ||
tap(value => push$.next({ value })), | ||
finalize(() => push$.complete()), | ||
map(value => ({ ref: el, value })) | ||
) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.