Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intl.DateTimeFormat#formatToParts() is not defined in older browsers — please manually polyfill it, example below #158

Closed
TracerBuilt opened this issue Nov 17, 2020 · 9 comments

Comments

@TracerBuilt
Copy link

In older browsers (I've tried IE 9.0, 10, and 11 as well as Firefox 52 and 56), attempting to load the cart produces:

TypeError: a.formatToParts is not a function

Thoughts on a potential polyfill?

@TracerBuilt
Copy link
Author

I'm given to understand that this is also the case for iOS devices running Safari 12 or earlier.

@andria-dev
Copy link
Collaborator

Yeah you should be able to find a polyfill for Intl.DateTimeFormat. We probably won't be polyfilling that in this library because not everyone will want the polyfill. However, I can look up a polyfill real quick for you to use in your project.

@andria-dev
Copy link
Collaborator

This seems to be the most recent DateTimeFormat polyfill: https://formatjs.io/docs/polyfills/intl-datetimeformat/

@TracerBuilt
Copy link
Author

Just in case anyone winds up here looking for a solution to the same problem I had, I created a fork using this polyfill which enables this package to work in older browsers. It can be found hereand installed with: npm install @tracerbuilt/use-shopping-cart

@andria-dev
Copy link
Collaborator

@TracerBuilt you shouldn't need to fork the package to use a polyfill. May I ask why you did?

In order to keep your installation of use-shopping-cart up-to-date, I would suggest just installing the polyfill and then importing it before using use-shopping-cart. If you only want it to polyfill when necessary, you can use dynamic imports, and once your polyfills are loaded you can then render your application.

@TracerBuilt
Copy link
Author

Ah! I'm a bit new to all this and it was the only way I could think of to inject code into a pre-existing project.

Do you have any recommendations on where I could read up and learn how to do what you're talking about?

@andria-dev
Copy link
Collaborator

I'll send you an example of how I've done it in the past in my projects.

@andria-dev
Copy link
Collaborator

andria-dev commented Nov 21, 2020

Here is a link to my project that utilizes an optional polyfill loading pattern:

https://github.com/ChrisBrownie55/notably/blob/dabe00a22c8db1d18cc7f49fd7ef866138b4ecdc/src/index.tsx#L50-L59

The idea is that you can create some asynchronous functions that see if a polyfill is needed for a feature and then will load each polyfill and assign them to their respective names on the window. Once you have these, you can run them all and use Promise.all() to wait for all of them.

Once all of the asynchronous functions have ended, you can then import your App.js file dynamically and render it. The reason why we wait to import App.js is that if we try to use one of those features — used in the module's global scope, not in a component/function — that need to be polyfilled within our app before it is polyfilled, then our app will crash.

async function loadXyz() {
	if (!window.xyz) {
		window.xyz = (await import('xyz-polyfill')).default
	}
}

async function loadAbc() { /* ... */ }

Promise.all([loadXyz(), loadAbc()])
	.then(() => import('./App.js'))
	.then(({ default: App }) => {
		// render
		ReactDOM.render(<App />, document.getElementById('root'));
	})

@TracerBuilt
Copy link
Author

Thank you so much. This is extremely helpful.

@andria-dev andria-dev changed the title TypeError in older browsers Intl.DateTimeFormat#formatToParts() is not defined in older browsers — please manually polyfill it, example below Feb 13, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants