0.1.3 • Published 1 month ago

@crcong/wc-waterfall v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

fork: The gap parameter is separated. gap => gap-x, gap-y

wc-waterfall

The wc-waterfall is a high performance waterfall component written using web-component

It can support running in various frameworks, such as React Vue SolidJs

image

🌈 Demo

⚙️ Installation

  • npm

npm i wc-waterfall
  • scripts

<script src="https://cdn.jsdelivr.net/npm/wc-waterfall/dist/index.iife.js"></script>

🦄 Example

🚀 Use in VanillaJS

import 'wc-waterfall'
<wc-waterfall gap-x="10" gap-y="10" cols="3">
  <div>01</div>
  <div>02</div>
  <div>03</div>
  <div>04</div>
  <div>05</div>
  <div>06</div>
</wc-waterfall>

🚀 Use in React

// App.tsx
import 'wc-waterfall'

export default function MyApp() {
  return (
    <wc-waterfall gap-x={10} gap-y={10} cols={3}>
      <div>01</div>
      <div>02</div>
      <div>03</div>
      <div>04</div>
      <div>05</div>
      <div>06</div>
    </wc-waterfall>
  )
}

TypeScript support (JSX/TSX)

// shims.d.ts
declare namespace JSX {
  interface IntrinsicElements {
    'wc-waterfall': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
      gap-x?: number;
      gap-x?: number;
      cols?: number;
    }, HTMLElement>;
  }
}

🚀 Use in Vue

// main.ts
import 'wc-waterfall'
<!-- App.vue -->
<template>
  <wc-waterfall :gap="10" :cols="3">
    <div>01</div>
    <div>02</div>
    <div>03</div>
    <div>04</div>
    <div>05</div>
    <div>06</div>
  </wc-waterfall>
</template>
// vite.config.ts
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'

export default defineConfig({
  plugins: [
    vue({
      template: {
        compilerOptions: { isCustomElement: (tag) => tag.startsWith('wc-') }
      },
    })
  ],
})

🚀 Use in SSR

- import 'wc-waterfall'
+ if (typeof document != 'undefined') import('wc-waterfall')

📄 Props

NameTypeDefaultDescription
colsnumber2Number of columns
gap-xnumber4Interval between cells in row
gap-ynumber4Interval between cells in column

⭐️ Show Your Support

Please give a ⭐️ if this project helped you!

👏 Contributing

If you have any questions or requests or want to contribute, please write the issue or give me a Pull Request freely.

0.1.3

1 month ago

0.1.2

1 month ago

0.1.1

1 month ago