Flow: [BUG] FlowJS throws error when attempting to import SVG as ReactComponent

Created on 30 Oct 2018  ยท  3Comments  ยท  Source: facebook/flow

module resolution react

Most helpful comment

I have not tested this, but it should be something like:
.flowconfig
[options]
module.name_mapper.extension='svg' -> '/SVGModule.js.flow'


SVGModule.js.flow:
declare export default { ReactComponent: React$Node }

All 3 comments

I have not tested this, but it should be something like:
.flowconfig
[options]
module.name_mapper.extension='svg' -> '/SVGModule.js.flow'


SVGModule.js.flow:
declare export default { ReactComponent: React$Node }

The above was resulting in imports being typed any for me, I was able to get the following to work:

// @flow
declare export var ReactComponent: React$Node;

Unfortunately it did not work for me...

I have this configuration:

[options]
module.name_mapper.extension='svg' -> '<PROJECT_ROOT>/flow-typed/custom/ReactComponent.js.flow'

and module file:

declare export var ReactComponent: React$Node;

After the Flow execution I got this error:

Error โ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆ src/modules/Layout/LogoVertical.js:5:10

Cannot import ReactComponent because there is no ReactComponent export in ../../assets/images/logo_vertical.svg. Did you
mean import ReactComponent from "..."? [missing-export]

     2โ”‚ import React, { type Element } from 'react';
     3โ”‚ import type { ClassNamePropType } from '../../types';
     4โ”‚ import { MEDIA_QUERY_BREAKPOINTS } from './constants';
     5โ”‚ import { ReactComponent as LogoVerticalSvg } from '../../assets/images/logo_vertical.svg';

So, I tried change the module.system=haste and got this one:

Error โ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆโ”ˆ src/modules/Layout/LogoVertical.js:5:51

Cannot resolve module /Users/hurvajs/Sites/private/agm-platform/Client/flow-typed/custom/ReactComponent.js.flow.
[cannot-resolve-module]
Was this page helpful?
0 / 5 - 0 ratings

Related issues

Beingbook picture Beingbook  ยท  3Comments

tp picture tp  ยท  3Comments

marcelbeumer picture marcelbeumer  ยท  3Comments

pelotom picture pelotom  ยท  3Comments

cubika picture cubika  ยท  3Comments