0.0.8 • Published 8 months ago

@ray-js/aes-image v0.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

English | 简体中文

@ray-js/aes-image

Installation

$ npm install @ray-js/aes-image
# or
$ yarn add @ray-js/aes-image

Props

This component use Image which from @ray-js/component as image container, so all of Image props except 'src' can be used.

import { ImageProps } from '@ray-js/components/lib/Image/props';
export interface AESImageProps extends Omit<ImageProps, 'src'> {
  /**
   * @description.en AES key
   * @description.zh AES 密码
   */
   encryptKey: string
  /**
   * @description.en Encryption image url
   * @description.zh 加密图片 url
   */
   imagePath?: string

   /**
    * @description.en Base64 encrypt data
    * @description.zh base64 加密数据
    */
   base64Data?: string

   /**
    * @description.en Loading component
    * @description.zh 加载中组件
    */
   loading: React.ComponentType
   
   /**
    * @description.en Placeholder component
    * @description.zh 占位组件
    */
   placeHolder: React.ComponentType
   
   /**
    * @description.en Error component
    * @description.zh 错误组件
    */
   renderError: React.ComponentType<{error: Error}>

    /**
      * @description.en Error callback
      * @description.zh 错误回调
      */
    onError?: (event: GenericEvent) => any;
}

Usage

    import { AESImage, decryptImage  } from '@ray/aes-image';

    decryptImage(imagePath, encryptKey).then((result) => {
        //todo: result is decrypted base64 string
        }).catch(error => {
        //todo: decrypt fail
        })
    <AESImage
        imagePath="https://domain/path/to/crypto_image.jpeg" // encrypted image url
        encryptKey="90ac52259387534f" // encrypt key
        style={{ width: 160, height: 160, backgroundColor: 'white' }}
      />
    <AESImage
        encryptKey="OQMpT3obElFmXzBMBGgoPw=="
        base64Data={base64Data}
        style={{ width: '300px', height: '200px' }}
    />
0.0.8-beta-1

8 months ago

0.0.8-beta-2

8 months ago

0.0.8

8 months ago

0.0.6-beta-7

11 months ago

0.0.6-beta-6

11 months ago

0.0.6-beta-5

11 months ago

0.0.6-beta-4

11 months ago

0.0.6-beta-3

11 months ago

0.0.6-beta-2

11 months ago

0.0.7-beta-1

10 months ago

0.0.6-beta-1

11 months ago

0.0.7

10 months ago

0.0.6

11 months ago

0.0.5

1 year ago

0.0.5-beta-1

1 year ago