npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@beisen-cmps/italent-at-others

v1.1.24

Published

npm i @beisen-cmps/italent-create-summary -S

Readme

安装

npm i @beisen-cmps/italent-create-summary -S

前提

使用

import * as React from 'react';
import AtOther,{AtOtherPreview} from '../../src';

interface IUserInfo{
  Id:number
}

interface Props{

}

const Demo:React.FC<Props> = props=>{
  let wrapArea = React.useRef<HTMLDivElement>(null);
  let [width,setWidth] = React.useState<number>(100)
  const [otherUsers,setOtherUsers] = React.useState<IUserInfo[]>([]);//@Ta人可见

  function changeWidth(){
    //窗口拖拽,重新计算宽度
    setWidth(100)
  }

  const onDeleteUser = React.useCallback((id:number)=>{
    let index = otherUsers.findIndex(ou=>ou.Id === id)
    setOtherUsers([
      ...otherUsers.slice(0,index),
      ...otherUsers.slice(index+1)
    ])
  },[otherUsers])

  const selectOther = React.useCallback((users:IUserInfo[])=>{//添加
    let nextUsers = otherUsers.concat(users);
    let res:IUserInfo[] = [], obj = {};
    //去重
    nextUsers.forEach(u=>{
      if(!obj[u.Id]){
        obj[u.Id] = true;
        res.push(u);
      }
    })
    setOtherUsers(res)
  },[otherUsers])

  return <div ref={wrapArea}>
    <AtOther changeWidth={changeWidth} width={width} selectedUser={otherUsers} 
    onDeleteUser={onDeleteUser} selectOther={selectOther}/>
    <AtOtherPreview width={width} viewPersonNum={200} selectedUser={otherUsers} />
  </div>
}

export default Demo;

参数

  lateSubmit:'晚于每周五 17:00 为延迟提交',//最晚提交提示
  title:'2019年5月第四周',//创建标题
  weekRange:'05/20 - 05/26',//创建副标题
  simplePlaceHolder:'快来记录你的工作成果吧,不断的总结成为更优秀的自己~',//简单模式下的placeHolder
  isCreate:true,//是否是创建
  createTitle:['本周工作总结','下周安排计划'],//标题文本
  summary:'',//总计
  plan:'',//计划
  uploadFileUrl:'',//附件上传地址
  atachments:[],//附件
  viewScope:[{ value:'0', label: '公开', isSelected:true },
    { value:'1', label: '指定部门可见', isSelected:false },
    { value:'2', label: '仅自己可见', isSelected:false }],//可见范围
  others:[],//at谁可见
  hideDraft:false,//显示保存草稿按钮
  hideCancel:false,//显示取消按钮
  onCancel:()=>{console.log('cancel')},//取消
  onDraft:()=>{console.log('saveDraft')},//保存草稿
  onSubmit:()=>{console.log('submit')},//提交

描述

仅支持react16。