Skip to content
Snippets Groups Projects
Commit 95cd566a authored by Stefano Cerelli's avatar Stefano Cerelli
Browse files

Merge branch 'NOISSUE-img-circular-dep' into 'main'

fix(bricks): circular dependency in image component

See merge request app/holi-frontends!3118
parents 25765e66 8e63d8b9
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ import { Image as ExpoImage } from 'expo-image'
//import { WithLocalSvg } from 'react-native-svg/css'
import { accessibilityProps } from 'holi-bricks/accessibility'
import type { ImageProps } from 'holi-bricks/components/image/type'
import { setScalingParams } from 'holi-bricks/components/image/helpers'
import { isRemoteSource, setScalingParams } from 'holi-bricks/components/image/helpers'
const isLocalSvg = (source: number) => {
try {
......@@ -18,10 +18,6 @@ const isLocalSvg = (source: number) => {
}
}
export const isRemoteSource = (source: string | number): source is string => {
return typeof source === 'string'
}
export const Image: React.FC<ImageProps> = ({
source,
width,
......
......@@ -3,11 +3,7 @@ import type React from 'react'
import { useState } from 'react'
import NextImage from 'next/image'
import { accessibilityProps } from 'holi-bricks/accessibility'
import { setScalingParams } from 'holi-bricks/components/image/helpers'
export const isRemoteSource = (source: string): source is string => {
return /^(https?:)?\/\//i.test(source)
}
import { isRemoteSource, setScalingParams } from 'holi-bricks/components/image/helpers'
export const Image: React.FC<ImageProps> = ({
source,
......
......@@ -2,12 +2,19 @@
import { PixelRatio, Platform } from 'react-native'
import { isProduction } from '@holi/core/helpers/environment'
import { isSSR } from '@holi/core/helpers/isSSR'
import { isRemoteSource } from 'holi-bricks/components/image/Image'
// meant for dev: you see the dimension that would be loaded as a black image
// useful when determining whether the correct srcSet is loaded
const debugMode = false
export const isRemoteSource = (source: string | number): source is string => {
if (Platform.OS === 'web') {
return /^(https?:)?\/\//i.test(source as string)
}
return typeof source === 'string'
}
/** @description It handles the correct pixel density for native host platforms.
* It returns the same input value for the web. Different sizes in the web can
* also be regulated by the `srcSet` attribute. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment