-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
3,914 additions
and
3,353 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 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
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
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,56 +1,148 @@ | ||
import defineProvider from "@babel/helper-define-polyfill-provider"; | ||
import { join } from "node:path"; | ||
import paths from "../paths.cjs"; | ||
|
||
const POLYFILL_DIR = join(paths.polymer_dir, "homeassistant-frontend/src/resources/polyfills"); | ||
|
||
// List of polyfill keys with supported browser targets for the functionality | ||
const PolyfillSupport = { | ||
fetch: { | ||
android: 42, | ||
chrome: 42, | ||
edge: 14, | ||
firefox: 39, | ||
const polyfillSupport = { | ||
// Note states and shadowRoot properties should be supported. | ||
"element-internals": { | ||
android: 90, | ||
chrome: 90, | ||
edge: 90, | ||
firefox: 126, | ||
ios: 17.4, | ||
opera: 76, | ||
opera_mobile: 64, | ||
safari: 17.4, | ||
samsung: 15.0, | ||
}, | ||
"element-getattributenames": { | ||
android: 61, | ||
chrome: 61, | ||
edge: 18, | ||
firefox: 45, | ||
ios: 10.3, | ||
opera: 29, | ||
opera_mobile: 29, | ||
opera: 48, | ||
opera_mobile: 45, | ||
safari: 10.1, | ||
samsung: 4.0, | ||
}, | ||
proxy: { | ||
android: 49, | ||
chrome: 49, | ||
edge: 12, | ||
firefox: 18, | ||
ios: 10.0, | ||
opera: 36, | ||
opera_mobile: 36, | ||
safari: 10.0, | ||
samsung: 5.0, | ||
samsung: 8.0, | ||
}, | ||
"element-toggleattribute": { | ||
android: 69, | ||
chrome: 69, | ||
edge: 18, | ||
firefox: 63, | ||
ios: 12.0, | ||
opera: 56, | ||
opera_mobile: 48, | ||
safari: 12.0, | ||
samsung: 10.0, | ||
}, | ||
// FormatJS polyfill detects fix for https://bugs.chromium.org/p/v8/issues/detail?id=10682, | ||
// so adjusted to several months after that was marked fixed | ||
"intl-getcanonicallocales": { | ||
android: 90, | ||
chrome: 90, | ||
edge: 90, | ||
firefox: 48, | ||
ios: 10.3, | ||
opera: 76, | ||
opera_mobile: 64, | ||
safari: 10.1, | ||
samsung: 15.0, | ||
}, | ||
"intl-locale": { | ||
android: 74, | ||
chrome: 74, | ||
edge: 79, | ||
firefox: 75, | ||
ios: 14.0, | ||
opera: 62, | ||
opera_mobile: 53, | ||
safari: 14.0, | ||
samsung: 11.0, | ||
}, | ||
"intl-other": { | ||
// Not specified (i.e. always try polyfill) since compatibility depends on supported locales | ||
}, | ||
"resize-observer": { | ||
android: 64, | ||
chrome: 64, | ||
edge: 79, | ||
firefox: 69, | ||
ios: 13.4, | ||
opera: 51, | ||
opera_mobile: 47, | ||
safari: 13.1, | ||
samsung: 9.0, | ||
}, | ||
}; | ||
|
||
// Map of global variables and/or instance and static properties to the | ||
// corresponding polyfill key and actual module to import | ||
const polyfillMap = { | ||
global: { | ||
Proxy: { key: "proxy", module: "proxy-polyfill" }, | ||
fetch: { key: "fetch", module: "unfetch/polyfill" }, | ||
ResizeObserver: { | ||
key: "resize-observer", | ||
module: join(POLYFILL_DIR, "resize-observer.ts"), | ||
}, | ||
}, | ||
instance: { | ||
attachInternals: { | ||
key: "element-internals", | ||
module: "element-internals-polyfill", | ||
}, | ||
...Object.fromEntries( | ||
["getAttributeNames", "toggleAttribute"].map((prop) => { | ||
const key = `element-${prop.toLowerCase()}`; | ||
return [prop, { key, module: join(POLYFILL_DIR, `${key}.ts`) }]; | ||
}), | ||
), | ||
}, | ||
static: { | ||
Intl: { | ||
getCanonicalLocales: { | ||
key: "intl-getcanonicallocales", | ||
module: join(POLYFILL_DIR, "intl-polyfill.ts"), | ||
}, | ||
Locale: { | ||
key: "intl-locale", | ||
module: join(POLYFILL_DIR, "intl-polyfill.ts"), | ||
}, | ||
...Object.fromEntries( | ||
[ | ||
"DateTimeFormat", | ||
"DurationFormat", | ||
"DisplayNames", | ||
"ListFormat", | ||
"NumberFormat", | ||
"PluralRules", | ||
"RelativeTimeFormat", | ||
].map((obj) => [ | ||
obj, | ||
{ key: "intl-other", module: join(POLYFILL_DIR, "intl-polyfill.ts") }, | ||
]), | ||
), | ||
}, | ||
}, | ||
instance: {}, | ||
static: {}, | ||
}; | ||
|
||
// Create plugin using the same factory as for CoreJS | ||
export default defineProvider( | ||
({ createMetaResolver, debug, shouldInjectPolyfill }) => { | ||
const resolvePolyfill = createMetaResolver(polyfillMap); | ||
return { | ||
name: "HA Custom", | ||
polyfills: PolyfillSupport, | ||
usageGlobal(meta, utils) { | ||
const polyfill = resolvePolyfill(meta); | ||
if (polyfill && shouldInjectPolyfill(polyfill.desc.key)) { | ||
debug(polyfill.desc.key); | ||
utils.injectGlobalImport(polyfill.desc.module); | ||
} | ||
}, | ||
}; | ||
} | ||
); | ||
export default defineProvider(({ createMetaResolver, debug, shouldInjectPolyfill }) => { | ||
const resolvePolyfill = createMetaResolver(polyfillMap); | ||
return { | ||
name: "custom-polyfill", | ||
polyfills: polyfillSupport, | ||
usageGlobal(meta, utils) { | ||
const polyfill = resolvePolyfill(meta); | ||
if (polyfill && shouldInjectPolyfill(polyfill.desc.key)) { | ||
debug(polyfill.desc.key); | ||
utils.injectGlobalImport(polyfill.desc.module); | ||
return true; | ||
} | ||
return false; | ||
}, | ||
}; | ||
}); |
Oops, something went wrong.