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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@gdyfe/table

v1.1.2

Published

``` yarn add @gdyfe/table ```

Downloads

56

Readme

@gdyfe/table

Installation

yarn add @gdyfe/table
npm install --save @gdyfe/table

Usage

import GdyTable from '@gdyfe/table'
import '@gdyfe/table/lib/gdy-table.css'
Vue.use(GdyTable)

Example

g-table

<!-- g-table -->
<g-table
  :config="config" 
  :list="list" 
  :pagination="pageOptions"
  @handleTableChange="handleTableChange"
>
  <template #action="text, record">
    <!-- 自定义。未配置dataIndex则text和record字段均为当前行所有数据,配置dataIndex则text为当前行dataIndex字段数据 -->
  </template>
</g-table>

atnd属性配置可参考antd配置

export default {
  data() {
    // 列表数据项
    list: [
      {
        id: 123,
        name: 'admin',
        status: 1,
        isShow: true,
        content: '内容'
      }
    ],
    config: [
      // 基本配置,列显示当前dataIndex字段信息
      {
        dataIndex: 'id', // antd属性。列数据在数据项中对应的 key
        key: 'id', // antd属性。Vue 需要的 key,已经设置了唯一的 dataIndex,可以忽略这个属性
        title: '序号', // antd属性。列头显示文字
        width: 90 // antd属性。列宽度
      },
      // 最多显示两行,hover显示全信息
      {
        dataIndex: 'content',
        key: 'content',
        title: '举报内容',
        width: 90,
        textHover: true // 自定义属性,添加后当前列最多显示两行,提供hover显示全信息。若为链接则渲染为a标签。若设置customRender则此属性不生效
      },
      // 自定义显示内容,可获取当前设置daraIndex内容
      {
        dataIndex: 'status',
        key: 'status',
        title: '状态',
        customRender: status => { // antd属性
          if (status === 0) {
            // 自定义类。在customRender内添加g-table-text__orange等属性可获得标签样式
            return <span class="g-table-text__orange">{this.statusArr.filter(v => v.value === status)[0].label}</span>
          } else {
            return <span class="g-table-text__green">{this.statusArr.filter(v => v.value === status)[0].label}</span>
          }
        },
        width: 90
      },
      // 自定义配置字段信息,在模板中用插槽定义(下方用action定义customRender内容)
      {
        title: '操作',
        scopedSlots: { customRender: 'action' }, // antd属性
        width: 150
      }
    ],
    // 可参考antd配置
    pageOptions: {
      pageSize: 12,
      total: 0, // 动态
      page: 1, // 动态
      showQuickJumper: true, // 显示前往
      style: { float: 'none', textAlign: 'center' }
    }
  },
  method: {
    // 页数change回调
    handleTableChange(pagination, filters, sorter) {
      // pagination.current为当前页数
    }
  }
}

g-search

<g-search :config="config" @search="search"></g-search>
export default {
  data() {
    const reportTypeArr = [
      {
        label: '全部',
        value: -1
      },
      {
        label: '反动政治',
        value: 1
      },
      {
        label: '色情低俗',
        value: 2
      }
    ]
    // search配置项
    config: [
      {
        type: 'input', // input类型
        field: 'userId', // 对应form userId
        title: '用户id', // 对应label,不配置则不显示
        defaultValue: '', // 默认值
        placeholder: '请输入用户id',
        style: 'width: 144px' // 自定义样式
      },
      {
        type: 'datepicker',
        field: 'time',
        title: '选择时间',
        defaultValue: [],
        placeholder: '时间范围组件',
        style: 'width: 144px'
      },
      {
        type: 'select',
        field: 'reportType',
        title: '举报类型',
        placeholder: '',
        defaultValue: -1,
        selectOptions: reportTypeArr, // 选择项,包含label和value字段
        style: 'width: 144px'
      }
    ],
    form: {
      userId: '',
      time: '',
      reportType: ''
    }
  },
  method: {
    search(form) {
      // 搜索时回调form信息
    }
  }
}