@wwog/react 1.2.16 → 1.2.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -199,10 +199,7 @@ function Example() {
199
199
  <Clamp
200
200
  text="This is a long text that will be truncated with ellipsis..."
201
201
  maxLine={2}
202
- lineHeight={20}
203
- ellipsis={true}
204
202
  extraContent={<button>See more</button>}
205
- bgColor="#fff"
206
203
  />
207
204
  );
208
205
  }
@@ -210,12 +207,8 @@ function Example() {
210
207
 
211
208
  - `text`: The text content to be displayed.
212
209
  - `maxLine`: Maximum number of lines, defaults to 1.
213
- - `lineHeight`: Line height in pixels, defaults to 20.
214
- - `ellipsis`: Whether to display ellipsis, defaults to false.
215
- - `ellipsisContent`: Custom ellipsis content, defaults to `<span>...</span>`.
216
210
  - `extraContent`: Extra content to display at the end of the text, such as a "See more" button.
217
211
  - `extraHeight`: Height of the extra content, defaults to 20.
218
- - `bgColor`: Background color, defaults to white ('#fff').
219
212
  - `wrapperStyle`: Style for the wrapper container.
220
213
 
221
214
  #### `<Pipe>` (v1.1.7+)
package/dist/index.d.mts CHANGED
@@ -373,10 +373,6 @@ interface ToggleProps<T = boolean> {
373
373
  declare const Toggle: <T>(props: ToggleProps<T>) => React$1.ReactNode;
374
374
 
375
375
  interface ClampProps {
376
- /**
377
- * @default 20
378
- */
379
- lineHeight?: number;
380
376
  /**
381
377
  * @description 最大行数
382
378
  * @description_en maximum number of lines
@@ -390,28 +386,11 @@ interface ClampProps {
390
386
  * @default 20
391
387
  */
392
388
  extraHeight?: number;
393
- /**
394
- * @description 是否显示省略号
395
- * @description_en whether to display ellipsis
396
- */
397
- ellipsis?: boolean;
398
- /**
399
- * @description 替换省略号内容
400
- * @description_en replace ellipsis content
401
- * @default '<span>...</span>'
402
- */
403
- ellipsisContent?: React$1.ReactNode;
404
389
  /**
405
390
  * @description 显示的文本
406
391
  * @description_en text to be displayed
407
392
  */
408
393
  text: string;
409
- /**
410
- * @description 背景颜色,请不要使用`wrapperStyle`覆盖此设置,因纯兼容性的css方式实现。默认白色
411
- * @description_en background color, please do not use `wrapperStyle` to override this setting, because it is implemented in a pure compatible css way. Default white
412
- * @default '#fff'
413
- */
414
- bgColor?: string;
415
394
  wrapperStyle?: React$1.CSSProperties;
416
395
  }
417
396
  /**
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import r,{useMemo as h,Children as J,Fragment as S,isValidElement as _,cloneElement as R,useEffect as W,useState as T,useCallback as B}from"react";function k(t,n){if(t===void 0)return;let e=0;if(Array.isArray(t)){for(const l of t)if(n(l,e++)===!1)break}else n(t,e)}const V=(t,n)=>t===n,E=t=>r.createElement(r.Fragment,null,t.children);E.displayName="Switch_Case";const w=t=>r.createElement(r.Fragment,null,t.children);w.displayName="Switch_Default";const y=t=>{const{value:n,compare:e=V,children:l,strict:a=!1}=t,o=new Set;let i=null,s=null,u=!1;return k(l,(c,d)=>{if(!r.isValidElement(c))throw new Error(`Switch Children only accepts valid React elements at index ${d}`);const m=c.type;if(m.displayName===E.displayName){const f=c.props;if(o.has(f.value))throw new Error(`Switch found duplicate Case value at index ${d}: ${JSON.stringify(f.value)}${a?" (detected in strict mode)":""}`);if(o.add(f.value),!i&&e(n,f.value)&&(i=f.children,a===!1))return!1}else if(m.displayName===w.displayName){if(u)throw new Error(`Switch can only have one Default child at index ${d}`);if(u=!0,s=c.props.children,!a&&i)return!1}else throw new Error(`Switch Children only accepts 'Case' or 'Default' elements, found: ${String(m.displayName||m.name||m)} at index ${d}`)}),r.createElement(r.Fragment,null,i??s)};y.displayName="Switch",y.Case=E,y.Default=w,y.createTyped=function(){return{Switch:y,Case:E,Default:w}};const v=t=>r.createElement(r.Fragment,null,t.children),N=({children:t})=>r.createElement(r.Fragment,null,t),b=t=>r.createElement(r.Fragment,null,t.children);v.displayName="If_Then",N.displayName="If_Else",b.displayName="If_ElseIf";const p=({condition:t,children:n})=>{let e=null,l=null;const a=[];if(r.Children.forEach(n,o=>{if(!r.isValidElement(o))throw new Error("If component only accepts valid React elements");const i=o.type;if(i.displayName===v.displayName){if(e)throw new Error("If component can only have one Then child");e=o}else if(i.displayName===b.displayName)a.push(o);else if(i.displayName===N.displayName){if(l)throw new Error("If component can only have one Else child");l=o}else throw new Error(`If component only accepts 'Then', 'ElseIf', or 'Else' elements as children, found: ${String(i.displayName||i.name||i)}`)}),t)return e?r.createElement(r.Fragment,null,e.props.children):null;for(const o of a)if(o.props.condition)return r.createElement(r.Fragment,null,o.props.children);return l?r.createElement(r.Fragment,null,l.props.children):null};p.displayName="If",p.Then=v,p.ElseIf=b,p.Else=N,p.createTyped=function(){return{If:p,Then:v,ElseIf:b,Else:N}};const M=({condition:t,children:n})=>t?r.createElement(r.Fragment,null,n):null,Z=({condition:t,children:n})=>t===!1?r.createElement(r.Fragment,null,n):null,L=({all:t,any:n,none:e,children:l,fallback:a})=>h(()=>(t&&(n||e)&&console.warn('When: Multiple condition types (all, any, none) provided; "all" takes precedence.'),!!(t&&t.length>0&&t.every(Boolean)||n&&n.length>0&&n.some(Boolean)||e&&e.length>0&&e.every(o=>!o))),[t,n,e])?r.createElement(r.Fragment,null,l):r.createElement(r.Fragment,null,a||null),z=({data:t,transform:n,render:e,fallback:l})=>{const a=h(()=>n.reduce((o,i)=>i(o),t),[t,n]);return a==null?r.createElement(r.Fragment,null,l||null):r.createElement(r.Fragment,null,e(a))},G=t=>{const{children:n,h:e,w:l,size:a,height:o,width:i,className:s}=t;return r.createElement("div",{style:{width:a||l||i,height:a||e||o,flexShrink:0},className:s},n)},$=({let:t,props:n,children:e,fallback:l})=>{const a=h(()=>typeof t=="function"?t(n):t,[t,n]);return!e||!Object.keys(a).length?r.createElement(r.Fragment,null,l||null):r.createElement(r.Fragment,null,e(a))};function F(...t){const n=new Set;for(const e of t)if(e){if(typeof e=="string")n.add(e);else if(Array.isArray(e))e.forEach(l=>n.add(l));else if(typeof e=="object")for(const[l,a]of Object.entries(e))a&&n.add(l)}return Array.from(n).join(" ")}const q=t=>typeof t=="object"&&!!t,x=({className:t,children:n,asWrapper:e=!1})=>{if(!n)return null;if(J.count(n)>1)return console.error("<Styles>: children has more than one child. Please check your code."),r.createElement(S,null,n);if(!t)return r.createElement(S,null,n);const l=typeof t=="string"?t:F(...Object.values(t));if(e)return r.createElement(e===!0?"div":e,{className:l},n);if(_(n)){const a=n;let o=a?.props?.className;return a?.type?.displayName===x.displayName&&q(o)&&(o=F(...Object.values(o))),R(n,{className:F(l,o)})}return console.error("<Styles>: children is not a valid React element. Please check your code."),r.createElement(S,null,n)};x.displayName="W/Styles";const K=t=>{const{index:n=0,options:e,next:l,render:a}=t;W(()=>{if(e.length<n+1)throw new Error(`Index ${n} is out of bounds for options array of length ${e.length}. Defaulting to first option.`)},[n,e]);const[o,i]=T(n),s=()=>{i(u=>e.length?l?l(u,e):(u+1)%e.length:u)};return a(e[o],s)},Q=t=>{const{lineHeight:n=20,maxLine:e=1,text:l,extraHeight:a=20,extraContent:o,bgColor:i="#fff",ellipsis:s=!1,ellipsisContent:u=r.createElement("span",null,"\u2026"),wrapperStyle:c}=t,d=h(()=>!(l==null||l===""),[l]);return r.createElement(M,{condition:d},r.createElement("div",{style:{display:"flex",overflow:"hidden",position:"relative",background:i,...c}},r.createElement("div",{style:{lineHeight:`${n}px`,maxHeight:`${n*e}px`,overflow:"hidden",wordBreak:"break-all"}},r.createElement("div",{style:{float:"right",height:`calc(100% - ${a-2}px)`}}),r.createElement("div",{style:{float:"right",clear:"both",height:a}},r.createElement(M,{condition:s},u),o),l,r.createElement("div",{style:{display:"inline-block",width:"100%",height:"100%",position:"absolute",background:i}}))))};function U(t){const{items:n,renderItem:e,filter:l}=t;return n?r.createElement(S,null,n.map((a,o)=>l&&!l(a)?null:e(a,o))):(console.error("ArrayRender: items is null"),null)}function X({source:t,format:n,children:e}){const l=h(()=>{if(t instanceof Date)return t;if(typeof t=="string"||typeof t=="number"){const o=new Date(t);return isNaN(o.getTime())?null:o}return null},[t]),a=h(()=>l?n?n(l):l.toLocaleString():null,[l,n]);return!a||!e?null:r.createElement(r.Fragment,null,e(a))}const ee="onChange",te="value";function ne(t){const{defaultValue:n,onBeforeChange:e,trigger:l=ee,valuePropName:a=te,props:o}=t,i=Object.prototype.hasOwnProperty.call(o,a),[s,u]=T(n),c=i?o[a]:s,d=h(()=>o[l],[o,l]),m=B(f=>{const g=typeof f=="function"?f(c):f;e&&e(g,c)===!1||(i||u(g),d&&d(g))},[i,e,c,d]);return[c,m]}function re(t,...n){try{const e=t(...n);return e instanceof Promise?e:Promise.resolve(e)}catch(e){return Promise.reject(e)}}const I=typeof Promise.try=="function"?Promise.try.bind(Promise):re;function le(t,n){let e=typeof t=="function"?t():t;const l=[],a=()=>e,o=s=>{const u=e;e=typeof s=="function"?s():s,l.forEach(c=>c(e)),n&&I(n,e,u).catch(c=>{console.error("Error in external state side effect, Please do it within side effects:",c)})},i=()=>{const[s,u]=r.useState(e);return r.useEffect(()=>(l.push(u),()=>{const c=l.indexOf(u);c>-1&&l.splice(c,1)}),[]),[s,o]};return{get:a,set:o,use:i,useGetter:()=>{const[s]=i();return s},__listeners:l}}function ae(t,n){const e=n||new Date,l=e.getFullYear(),a=e.getMonth()+1,o=e.getDate(),i=e.getHours(),s=e.getMinutes(),u=e.getSeconds(),c=e.getMilliseconds(),d=e.getDay(),m=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],f=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],g=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],A=["January","February","March","April","May","June","July","August","September","October","November","December"],P=f[d],D=m[d],C=a-1,Y=A[C],O=g[C],j={YY:l.toString().slice(2),YYYY:l.toString(),M:a.toString(),MM:a.toString().padStart(2,"0"),MMM:O,MMMM:Y,D:o.toString(),DD:o.toString().padStart(2,"0"),d:d.toString(),dd:D,ddd:D,dddd:P,H:i.toString(),HH:i.toString().padStart(2,"0"),h:(i%12).toString(),hh:(i%12).toString().padStart(2,"0"),m:s.toString(),mm:s.toString().padStart(2,"0"),s:u.toString(),ss:u.toString().padStart(2,"0"),SSS:c.toString().padStart(3,"0"),Z:"+08:00",ZZ:"+0800",A:i<12?"AM":"PM",a:i<12?"am":"pm"};return t.replace(/YYYY|YY|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|m{1,2}|s{1,2}|SSS|Z{1,2}|A|a/g,H=>j[H])}class oe{count=0;next(){return this.count++}}export{U as ArrayRender,Q as Clamp,oe as Counter,X as DateRender,Z as False,p as If,z as Pipe,$ as Scope,G as SizeBox,x as Styles,y as Switch,K as Toggle,M as True,L as When,k as childrenLoop,le as createExternalState,F as cx,ae as formatDate,I as safePromiseTry,ne as useControlled};
1
+ import r,{useMemo as h,Children as B,Fragment as S,isValidElement as W,cloneElement as J,useEffect as _,useState as M,useRef as H,useLayoutEffect as L,useCallback as V}from"react";function T(t,n){if(t===void 0)return;let e=0;if(Array.isArray(t)){for(const l of t)if(n(l,e++)===!1)break}else n(t,e)}const Z=(t,n)=>t===n,E=t=>r.createElement(r.Fragment,null,t.children);E.displayName="Switch_Case";const w=t=>r.createElement(r.Fragment,null,t.children);w.displayName="Switch_Default";const y=t=>{const{value:n,compare:e=Z,children:l,strict:o=!1}=t,a=new Set;let i=null,c=null,d=!1;return T(l,(u,s)=>{if(!r.isValidElement(u))throw new Error(`Switch Children only accepts valid React elements at index ${s}`);const f=u.type;if(f.displayName===E.displayName){const m=u.props;if(a.has(m.value))throw new Error(`Switch found duplicate Case value at index ${s}: ${JSON.stringify(m.value)}${o?" (detected in strict mode)":""}`);if(a.add(m.value),!i&&e(n,m.value)&&(i=m.children,o===!1))return!1}else if(f.displayName===w.displayName){if(d)throw new Error(`Switch can only have one Default child at index ${s}`);if(d=!0,c=u.props.children,!o&&i)return!1}else throw new Error(`Switch Children only accepts 'Case' or 'Default' elements, found: ${String(f.displayName||f.name||f)} at index ${s}`)}),r.createElement(r.Fragment,null,i??c)};y.displayName="Switch",y.Case=E,y.Default=w,y.createTyped=function(){return{Switch:y,Case:E,Default:w}};const v=t=>r.createElement(r.Fragment,null,t.children),N=({children:t})=>r.createElement(r.Fragment,null,t),b=t=>r.createElement(r.Fragment,null,t.children);v.displayName="If_Then",N.displayName="If_Else",b.displayName="If_ElseIf";const p=({condition:t,children:n})=>{let e=null,l=null;const o=[];if(r.Children.forEach(n,a=>{if(!r.isValidElement(a))throw new Error("If component only accepts valid React elements");const i=a.type;if(i.displayName===v.displayName){if(e)throw new Error("If component can only have one Then child");e=a}else if(i.displayName===b.displayName)o.push(a);else if(i.displayName===N.displayName){if(l)throw new Error("If component can only have one Else child");l=a}else throw new Error(`If component only accepts 'Then', 'ElseIf', or 'Else' elements as children, found: ${String(i.displayName||i.name||i)}`)}),t)return e?r.createElement(r.Fragment,null,e.props.children):null;for(const a of o)if(a.props.condition)return r.createElement(r.Fragment,null,a.props.children);return l?r.createElement(r.Fragment,null,l.props.children):null};p.displayName="If",p.Then=v,p.ElseIf=b,p.Else=N,p.createTyped=function(){return{If:p,Then:v,ElseIf:b,Else:N}};const C=({condition:t,children:n})=>t?r.createElement(r.Fragment,null,n):null,z=({condition:t,children:n})=>t===!1?r.createElement(r.Fragment,null,n):null,G=({all:t,any:n,none:e,children:l,fallback:o})=>h(()=>(t&&(n||e)&&console.warn('When: Multiple condition types (all, any, none) provided; "all" takes precedence.'),!!(t&&t.length>0&&t.every(Boolean)||n&&n.length>0&&n.some(Boolean)||e&&e.length>0&&e.every(a=>!a))),[t,n,e])?r.createElement(r.Fragment,null,l):r.createElement(r.Fragment,null,o||null),q=({data:t,transform:n,render:e,fallback:l})=>{const o=h(()=>n.reduce((a,i)=>i(a),t),[t,n]);return o==null?r.createElement(r.Fragment,null,l||null):r.createElement(r.Fragment,null,e(o))},K=t=>{const{children:n,h:e,w:l,size:o,height:a,width:i,className:c}=t;return r.createElement("div",{style:{width:o||l||i,height:o||e||a,flexShrink:0},className:c},n)},Q=({let:t,props:n,children:e,fallback:l})=>{const o=h(()=>typeof t=="function"?t(n):t,[t,n]);return!e||!Object.keys(o).length?r.createElement(r.Fragment,null,l||null):r.createElement(r.Fragment,null,e(o))};function F(...t){const n=new Set;for(const e of t)if(e){if(typeof e=="string")n.add(e);else if(Array.isArray(e))e.forEach(l=>n.add(l));else if(typeof e=="object")for(const[l,o]of Object.entries(e))o&&n.add(l)}return Array.from(n).join(" ")}const U=t=>typeof t=="object"&&!!t,x=({className:t,children:n,asWrapper:e=!1})=>{if(!n)return null;if(B.count(n)>1)return console.error("<Styles>: children has more than one child. Please check your code."),r.createElement(S,null,n);if(!t)return r.createElement(S,null,n);const l=typeof t=="string"?t:F(...Object.values(t));if(e)return r.createElement(e===!0?"div":e,{className:l},n);if(W(n)){const o=n;let a=o?.props?.className;return o?.type?.displayName===x.displayName&&U(a)&&(a=F(...Object.values(a))),J(n,{className:F(l,a)})}return console.error("<Styles>: children is not a valid React element. Please check your code."),r.createElement(S,null,n)};x.displayName="W/Styles";const X=t=>{const{index:n=0,options:e,next:l,render:o}=t;_(()=>{if(e.length<n+1)throw new Error(`Index ${n} is out of bounds for options array of length ${e.length}. Defaulting to first option.`)},[n,e]);const[a,i]=M(n),c=()=>{i(d=>e.length?l?l(d,e):(d+1)%e.length:d)};return o(e[a],c)},$=t=>{const{maxLine:n=1,text:e,extraHeight:l=22,extraContent:o,wrapperStyle:a}=t,i=H(null),[c,d]=M(!1),u=h(()=>!(e==null||e===""),[e]);return L(()=>{if(!i.current)return;const s=document.createElement("div");s.textContent=e,s.style.position="absolute",s.style.width="100%",s.style.wordBreak="break-all",s.style.top="100%",i.current.appendChild(s);const f=document.createRange();f.setStart(s.firstChild,0),f.setEnd(s.firstChild,e.length),f.getClientRects().length>n?d(!0):d(!1),i.current.removeChild(s)},[n,e]),r.createElement(C,{condition:u},r.createElement("div",{ref:i,style:{overflow:"hidden",position:"relative",width:"100%",display:"flex",...a}},r.createElement("div",{style:{display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:n,overflow:"hidden",wordBreak:"break-all"}},r.createElement(C,{condition:c},r.createElement("div",{style:{float:"right",height:"100%",marginBottom:-l}}),r.createElement("div",{style:{float:"right",clear:"both",height:l}},o)),e)))};function ee(t){const{items:n,renderItem:e,filter:l}=t;return n?r.createElement(S,null,n.map((o,a)=>l&&!l(o)?null:e(o,a))):(console.error("ArrayRender: items is null"),null)}function te({source:t,format:n,children:e}){const l=h(()=>{if(t instanceof Date)return t;if(typeof t=="string"||typeof t=="number"){const a=new Date(t);return isNaN(a.getTime())?null:a}return null},[t]),o=h(()=>l?n?n(l):l.toLocaleString():null,[l,n]);return!o||!e?null:r.createElement(r.Fragment,null,e(o))}const ne="onChange",re="value";function le(t){const{defaultValue:n,onBeforeChange:e,trigger:l=ne,valuePropName:o=re,props:a}=t,i=Object.prototype.hasOwnProperty.call(a,o),[c,d]=M(n),u=i?a[o]:c,s=h(()=>a[l],[a,l]),f=V(m=>{const g=typeof m=="function"?m(u):m;e&&e(g,u)===!1||(i||d(g),s&&s(g))},[i,e,u,s]);return[u,f]}function ae(t,...n){try{const e=t(...n);return e instanceof Promise?e:Promise.resolve(e)}catch(e){return Promise.reject(e)}}const I=typeof Promise.try=="function"?Promise.try.bind(Promise):ae;function oe(t,n){let e=typeof t=="function"?t():t;const l=[],o=()=>e,a=c=>{const d=e;e=typeof c=="function"?c():c,l.forEach(u=>u(e)),n&&I(n,e,d).catch(u=>{console.error("Error in external state side effect, Please do it within side effects:",u)})},i=()=>{const[c,d]=r.useState(e);return r.useEffect(()=>(l.push(d),()=>{const u=l.indexOf(d);u>-1&&l.splice(u,1)}),[]),[c,a]};return{get:o,set:a,use:i,useGetter:()=>{const[c]=i();return c},__listeners:l}}function ie(t,n){const e=n||new Date,l=e.getFullYear(),o=e.getMonth()+1,a=e.getDate(),i=e.getHours(),c=e.getMinutes(),d=e.getSeconds(),u=e.getMilliseconds(),s=e.getDay(),f=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],m=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],g=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],A=["January","February","March","April","May","June","July","August","September","October","November","December"],P=m[s],D=f[s],k=o-1,Y=A[k],O=g[k],j={YY:l.toString().slice(2),YYYY:l.toString(),M:o.toString(),MM:o.toString().padStart(2,"0"),MMM:O,MMMM:Y,D:a.toString(),DD:a.toString().padStart(2,"0"),d:s.toString(),dd:D,ddd:D,dddd:P,H:i.toString(),HH:i.toString().padStart(2,"0"),h:(i%12).toString(),hh:(i%12).toString().padStart(2,"0"),m:c.toString(),mm:c.toString().padStart(2,"0"),s:d.toString(),ss:d.toString().padStart(2,"0"),SSS:u.toString().padStart(3,"0"),Z:"+08:00",ZZ:"+0800",A:i<12?"AM":"PM",a:i<12?"am":"pm"};return t.replace(/YYYY|YY|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|m{1,2}|s{1,2}|SSS|Z{1,2}|A|a/g,R=>j[R])}class se{count=0;next(){return this.count++}}export{ee as ArrayRender,$ as Clamp,se as Counter,te as DateRender,z as False,p as If,q as Pipe,Q as Scope,K as SizeBox,x as Styles,y as Switch,X as Toggle,C as True,G as When,T as childrenLoop,oe as createExternalState,F as cx,ie as formatDate,I as safePromiseTry,le as useControlled};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wwog/react",
3
- "version": "1.2.16",
3
+ "version": "1.2.18",
4
4
  "description": "A practical React component library providing declarative flow control and common UI utility components to make your React code more concise and readable.",
5
5
  "keywords": [
6
6
  "react",
@@ -1,11 +1,7 @@
1
- import React, { FC, useMemo } from "react";
1
+ import React, { FC, useLayoutEffect, useMemo, useRef, useState } from "react";
2
2
  import { True } from "../ProcessControl/If";
3
3
 
4
4
  export interface ClampProps {
5
- /**
6
- * @default 20
7
- */
8
- lineHeight?: number;
9
5
  /**
10
6
  * @description 最大行数
11
7
  * @description_en maximum number of lines
@@ -19,28 +15,11 @@ export interface ClampProps {
19
15
  * @default 20
20
16
  */
21
17
  extraHeight?: number;
22
- /**
23
- * @description 是否显示省略号
24
- * @description_en whether to display ellipsis
25
- */
26
- ellipsis?: boolean;
27
- /**
28
- * @description 替换省略号内容
29
- * @description_en replace ellipsis content
30
- * @default '<span>...</span>'
31
- */
32
- ellipsisContent?: React.ReactNode;
33
18
  /**
34
19
  * @description 显示的文本
35
20
  * @description_en text to be displayed
36
21
  */
37
22
  text: string;
38
- /**
39
- * @description 背景颜色,请不要使用`wrapperStyle`覆盖此设置,因纯兼容性的css方式实现。默认白色
40
- * @description_en background color, please do not use `wrapperStyle` to override this setting, because it is implemented in a pure compatible css way. Default white
41
- * @default '#fff'
42
- */
43
- bgColor?: string;
44
23
  wrapperStyle?: React.CSSProperties;
45
24
  }
46
25
 
@@ -52,65 +31,83 @@ export interface ClampProps {
52
31
  */
53
32
  export const Clamp: FC<ClampProps> = (props) => {
54
33
  const {
55
- lineHeight = 20,
56
34
  maxLine = 1,
57
35
  text,
58
- extraHeight = 20,
36
+ extraHeight = 22,
59
37
  extraContent,
60
- bgColor = "#fff",
61
- ellipsis = false,
62
- ellipsisContent = <span>&hellip;</span>,
63
38
  wrapperStyle,
64
39
  } = props;
40
+ const wrapperRef = useRef<HTMLDivElement>(null);
41
+ const [showExtra, setShowExtra] = useState(false);
65
42
  const isValidText = useMemo(() => {
66
43
  if (text === undefined || text === null || text === "") return false;
67
44
  return true;
68
45
  }, [text]);
46
+
47
+ useLayoutEffect(() => {
48
+ if (!wrapperRef.current) {
49
+ return;
50
+ }
51
+ const measureWrapper = document.createElement("div");
52
+ measureWrapper.textContent = text;
53
+ measureWrapper.style.position = "absolute";
54
+ measureWrapper.style.width = "100%";
55
+ measureWrapper.style.wordBreak = "break-all";
56
+ measureWrapper.style.top = "100%";
57
+
58
+ wrapperRef.current.appendChild(measureWrapper);
59
+ const range = document.createRange();
60
+ range.setStart(measureWrapper.firstChild!, 0);
61
+ range.setEnd(measureWrapper.firstChild!, text.length);
62
+ const rects = range.getClientRects();
63
+ if (rects.length > maxLine) {
64
+ setShowExtra(true);
65
+ } else {
66
+ setShowExtra(false);
67
+ }
68
+
69
+ wrapperRef.current.removeChild(measureWrapper);
70
+ }, [maxLine, text]);
69
71
  return (
70
72
  <True condition={isValidText}>
71
73
  <div
74
+ ref={wrapperRef}
72
75
  style={{
73
- display: "flex",
74
76
  overflow: "hidden",
75
77
  position: "relative",
76
- background: bgColor,
78
+ width: "100%",
79
+ display: "flex",
77
80
  ...wrapperStyle,
78
81
  }}
79
82
  >
80
83
  <div
81
84
  style={{
82
- lineHeight: `${lineHeight}px`,
83
- maxHeight: `${lineHeight * maxLine}px`,
85
+ display: "-webkit-box",
86
+ WebkitBoxOrient: "vertical",
87
+ WebkitLineClamp: maxLine,
84
88
  overflow: "hidden",
85
89
  wordBreak: "break-all",
86
90
  }}
87
91
  >
88
- <div
89
- style={{
90
- float: "right",
91
- height: `calc(100% - ${extraHeight - 2}px)`,
92
- }}
93
- ></div>
94
- <div
95
- style={{
96
- float: "right",
97
- clear: "both",
98
- height: extraHeight,
99
- }}
100
- >
101
- <True condition={ellipsis}>{ellipsisContent}</True>
102
- {extraContent}
103
- </div>
92
+ <True condition={showExtra}>
93
+ <div
94
+ style={{
95
+ float: "right",
96
+ height: "100%",
97
+ marginBottom: -extraHeight,
98
+ }}
99
+ ></div>
100
+ <div
101
+ style={{
102
+ float: "right",
103
+ clear: "both",
104
+ height: extraHeight,
105
+ }}
106
+ >
107
+ {extraContent}
108
+ </div>
109
+ </True>
104
110
  {text}
105
- <div
106
- style={{
107
- display: "inline-block",
108
- width: "100%",
109
- height: "100%",
110
- position: "absolute",
111
- background: bgColor,
112
- }}
113
- ></div>
114
111
  </div>
115
112
  </div>
116
113
  </True>