-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #269 from egirard/master
Create "lite" version (js only, without CSS)
- Loading branch information
Showing
9 changed files
with
132 additions
and
68 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
import { initPolyfill } from "./init-polyfill.js" | ||
|
||
initPolyfill(); |
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,69 @@ | ||
// Copyright 2019 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
import { | ||
ScrollTimeline, | ||
ViewTimeline, | ||
} from "./scroll-timeline-base"; | ||
import { | ||
animate, | ||
elementGetAnimations, | ||
documentGetAnimations, | ||
ProxyAnimation | ||
} from "./proxy-animation.js"; | ||
|
||
import { initCSSPolyfill } from "./scroll-timeline-css" | ||
|
||
export function initPolyfill() { | ||
// Don't load if browser claims support | ||
if (window.ViewTimeline !== undefined) { | ||
return true; | ||
} | ||
|
||
if ( | ||
!Reflect.defineProperty(window, 'ScrollTimeline', { value: ScrollTimeline }) | ||
) { | ||
throw Error( | ||
'Error installing ScrollTimeline polyfill: could not attach ScrollTimeline to window' | ||
); | ||
} | ||
if ( | ||
!Reflect.defineProperty(window, 'ViewTimeline', { value: ViewTimeline }) | ||
) { | ||
throw Error( | ||
'Error installing ViewTimeline polyfill: could not attach ViewTimeline to window' | ||
); | ||
} | ||
|
||
if ( | ||
!Reflect.defineProperty(Element.prototype, 'animate', { value: animate }) | ||
) { | ||
throw Error( | ||
"Error installing ScrollTimeline polyfill: could not attach WAAPI's animate to DOM Element" | ||
); | ||
} | ||
if (!Reflect.defineProperty(window, 'Animation', { value: ProxyAnimation })) { | ||
throw Error('Error installing Animation constructor.'); | ||
} | ||
if (!Reflect.defineProperty(Element.prototype, "getAnimations", { value: elementGetAnimations })) { | ||
throw Error( | ||
"Error installing ScrollTimeline polyfill: could not attach WAAPI's getAnimations to DOM Element" | ||
); | ||
} | ||
if (!Reflect.defineProperty(document, "getAnimations", { value: documentGetAnimations })) { | ||
throw Error( | ||
"Error installing ScrollTimeline polyfill: could not attach WAAPI's getAnimations to document" | ||
); | ||
} | ||
} |
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,28 @@ | ||
export function buildConfig(source, filename) { | ||
return { | ||
build: { | ||
sourcemap: true, | ||
emptyOutDir: false, | ||
lib: { | ||
// Could also be a dictionary or array of multiple entry points | ||
entry: source, | ||
name: 'ScrollTimeline', | ||
// the proper extensions will be added | ||
fileName: (format, entryAlias) => `${filename}${format=='iife'?'':'-' + format}.js`, | ||
formats: ['iife'], | ||
}, | ||
minify: 'terser', | ||
terserOptions: { | ||
keep_classnames: /^((View|Scroll)Timeline)|CSS.*$/ | ||
}, | ||
rollupOptions: { | ||
output: { | ||
// Provide global variables to use in the UMD build | ||
// for externalized deps | ||
globals: { | ||
}, | ||
}, | ||
} | ||
} | ||
}; | ||
} |
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 |
---|---|---|
@@ -1,28 +1,5 @@ | ||
import { resolve } from 'path' | ||
import { defineConfig } from 'vite' | ||
import { buildConfig } from './vite.config.common' | ||
|
||
export default defineConfig({ | ||
build: { | ||
sourcemap: true, | ||
lib: { | ||
// Could also be a dictionary or array of multiple entry points | ||
entry: resolve(__dirname, 'src/index.js'), | ||
name: 'ScrollTimeline', | ||
// the proper extensions will be added | ||
fileName: (format, entryAlias) => `scroll-timeline${format=='iife'?'':'-' + format}.js`, | ||
formats: ['iife'], | ||
}, | ||
minify: 'terser', | ||
terserOptions: { | ||
keep_classnames: /^((View|Scroll)Timeline)|CSS.*$/ | ||
}, | ||
rollupOptions: { | ||
output: { | ||
// Provide global variables to use in the UMD build | ||
// for externalized deps | ||
globals: { | ||
}, | ||
}, | ||
} | ||
}, | ||
}) | ||
export default defineConfig(buildConfig(resolve(__dirname, 'src/index.js'), 'scroll-timeline')); |
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,5 @@ | ||
import { resolve } from 'path' | ||
import { defineConfig } from 'vite' | ||
import { buildConfig } from './vite.config.common' | ||
|
||
export default defineConfig(buildConfig(resolve(__dirname, 'src/index-lite.js'), 'scroll-timeline-lite')); |