quill: Quill + Typescript+ Webpack 4 doesn't work
“Uncaught TypeError: o.Quill is not a constructor”
Steps for Reproduction
- Load Quill:
import {Quill} from "quill"; - Attempt to initialize Quill
this.quill = new Quill(this.editor, {
modules: {
toolbar: [
[{'header': [1, 2, 3, 4, 5, 6, false]}],
['bold', 'italic', 'underline', 'strike'],
['link', 'image', 'video'],
['blockquote', 'code-block'],
[{'list': 'ordered'}, {'list': 'bullet'}],
[{'script': 'sub'}, {'script': 'super'}], // superscript/subscript
[{'indent': '-1'}, {'indent': '+1'}], // outdent/indent
[{'direction': 'rtl'}], // text direction
[{'color': []}, {'background': []}], // dropdown with defaults from theme
[{'font': []}],
[{'align': []}],
['clean'] // remove formatting button
]
},
placeholder: 'Empty document...',
theme: 'snow' // or 'bubble'
});
- Observe error.
Expected behavior: Works normally
Actual behavior: Doesn’t work
Platforms: Typescript
Include browser, operating system and respective versions Latest Quill, Webpack and Typescript
Version: 1.3.6
Note: I did try some other hacky solutions mentioned in different issues but eventually ran into a parchment blot error that I couldn’t get past. My project originally was not Typescript and worked and I did a straight conversion from JS to TS. This appears to be a Typescript specific problem.
Note 2: It does with with import Quill from 'quill'; and es2015 module but I can’t access the Delta class.
Note 3: Got delta working with const Delta = Quill.import('delta');. This is a really terrible solution and needs fixed. I wasted a ton of time, this is extremely hacky.
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Comments: 15 (2 by maintainers)
Does anyone know how to use Quill with Typescript?
I’ve tried about 10 different combinations of
importandnewand none of them have worked so far.Angular 7, Webpack 4, Typescript 3, “quill”: “1.3.6”, “@types/quill”: “1.3.10”
You should just be able to say…
However this does not work (TypeError: Quill__WEBPACK_IMPORTED_MODULE_8__.Quill is not a constructor).
-UPDATE-
Oh there’s a default export, so the following works 😄
Does this work?
Ref to the lib import
Note if using ts you will need to also download @types/quill
Adding ref the CSS
Adding the JS code to make it work
Special note, I am using react, where _rtfRef.current is of type HTMLDivElement which extends Element
hopes this helps someone out here!
Indeed, the given typings in
@typings/quillare made forquill/quill.js, but in the distributed package you get from npm thequill/package.jsonrefers asmainthe dist filedist/quill.js, which has a entirely different API.So the issue is that Typescript/node imports
dist/quill.jsforimport * as q from 'quill';but the typings for that import path given from@typings/quilldescribe a different API.You can work around that using
which is obviously a terrible hack. I’m not sure why Quill developers provide official typings for the development version of Quill, and not the linked distributed one, which every module resolver uses, but that is obviously wrong. So either link in main the one for the given typings, e.g.
"main": "quill.js",or adjust thedist/quill.jsso the typings fit.Try this:
Once again, if you were to reference my previous comment or the documentation, you would see that if using a build system of your own, you should probably be building from source using the
quill/coreorquill/quillentry.An example from our code base https://github.com/vanilla/vanilla/blob/release/2.8.dev.4/plugins/rich-editor/src/scripts/quill/Formatter.ts#L7
I have had the same problem…
Use this way, the Quill is undefined.
I changed the way.
versions:
It’s working~. Project address: https://github.com/xpioneer/react-typescript Hope can help you.