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

semantic-table

v1.0.2

Published

SemanticTable React Components

Downloads

56

Readme

Semantic Table

NEW! React 18 Support

DataTable made with styled components from React Semantic UI.

Installation:

npm i semantic-table

Dependencies: This component depends on the following packages

Basic Example


const data = [
    {
        id: 9888,
        name: "Hartmann, Runolfsson and Stroman Inc",
        email: "[email protected]"
    },
    {
        id: 28451,
        name: "Jacobson Inc Inc",
        email: "[email protected]"
    },
    {
        id: 72265,
        name: "Bahringer, Padberg and Upton Inc",
        email: "[email protected]"
    },
]

<PaginatedTable
    title="Example"
    onCancel={true}
    rows={data}
    rowLimit={15}
    actionsActive={false}
    columns={[
        {
            width: 250,
            Header: 'Code',
            accessor: 'id',
        },
        {
            width: 225,
            Header: 'Name',
            accessor: 'name',
        },
        {
            width: 225,
            Header: 'Email',
            accessor: 'email',
        },
    ]}
/>

Props


| Prop | Type | Description | | -------------------------- | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | title | string | The title used for exporting table data to CSV | | rows | array | Array of objects to be displayed in the table | | columns | array | Array of colums to be displayed, each column will access to the corresponding attribute from each row data (see structure here) it can control whether the column can be filtered, ordered and edited | | rowLimit | numeric | The number of rows to be displayed per page | | loading | boolean | Controls whether the table will show a "loading" message to indicate that data is being loaded into the table | | actionsActive | boolean | Whether each row will have a set of actions (see structure here) | | actionsWidth | numeric | Width in pixels of the first column that will display the actions buttons | | onSave | function | Function to execute to save changes on rows | | enableExternalSave | boolean | Controls whether table should save via external manipulation | | onAdd | function | Function to execute if the user wants to create a new item with an external component (form or modal form) | | onAddRow | boolean / function | If set to true, it will create a new row on click, if a function is given, it will expect an object with custom data to match the given rows structure | | onSelect | function | Function to execute if the user clicks on the "pencil" icon button on a specific row it as access to the selected row | | onDelete | boolean / function | If set to true, it will display a button to remove the selected row ("trash" icon button), if a function is given, it will allow a custom function to be executed after the deletion has been made, the function has access to the remaining rows, if the function returns a false boolean, then it will not trigger the inner deletion | | onCancel | boolean / function | If set to true, it will cancel all changes made on the table, if a function is given, it will allow a custom function to be executed after the cancelation has been made | | onEditCell | function | Function to execute after a cell has been edited, it will execute on blur, if the function returns a false boolean, then it will not trigger the inner edition | | onInnerUpdate | function | Function to execute after any table rows change | | enableExportToCSV | boolean | If set to true, it will display a button that will export all displayed data in the table (ignoring pagination, it will only export data that hasn't been filtered) in a Comma Separated Values (CSV) format, it uses the "title" prop and a timestamp to name the exported file | | height | numeric | The table height, max varies depending on screen size | | additionalActionButtons | array | Additional buttons to be displayed on each row, each button will have a custom action and icon to give it the desired look and functionality (see structure here) | | additionalHeaderButtons | array | Additional buttons to be displayed on the header section, each button will have a custom action and icon to give it the desired look and functionality (see structure here) | | saveButtonText | string | Custom text for save button | | cancelButtonText | string | Custom text for cancel button | | newRowButtonText | string | Custom text for newRow button | | addButtonText | string | Custom text for add button | | removeFiltersButtonText | string | Custom text for removeFilters button | | hideRemoveFiltersButton | boolean | Control whether the removeFiltersButton will appear or not | | editRowButtonText | string | Custom text for editRow ave button | | deleteRowButtonText | string | Custom text for deleteRow button | | exportToCSVButtonText | string | Custom text for exportToCSV button | | actionsHeaderText | string | Custom text for actions header | | numberOfRecordsText | string | Custom text for total records label | | showRecords | boolean | Control whether the table will show total of records | | numberOfRecordsPerPageText | string | Custom text for total records per page label | | showRecordsPerPage | boolean | Controls whether the table will show total of records per page | | paginated | boolean | Controls whether the table is paginated or not, defaults to true |

Loading


const data = [
    {
        id: 9888,
        name: "Hartmann, Runolfsson and Stroman Inc",
        email: "[email protected]"
    },
    {
        id: 28451,
        name: "Jacobson Inc Inc",
        email: "[email protected]"
    },
    {
        id: 72265,
        name: "Bahringer, Padberg and Upton Inc",
        email: "[email protected]"
    },
]

const [isLoading, setIsLoading] = useState(false)

useEffect(() => {
    setIsLoading(true)
    setTimeout(() => {
        setIsLoading(false)
    }, 1500)
}, [])


<PaginatedTable
    loading={isLoading}
    title="Example"
    onCancel={true}
    rows={data}
    rowLimit={15}
    actionsActive={false}
    columns={[
        {
            width: 250,
            Header: 'Code',
            accessor: 'id',
        },
        {
            width: 225,
            Header: 'Name',
            accessor: 'name',
        },
        {
            width: 225,
            Header: 'Email',
            accessor: 'email',
        },
    ]}
/>

Header Actions


| Prop | Type | Description | | ----------------- | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | onSave | function | Function to execute to save changes on rows | | onAdd | function | Function to execute if the user wants to create a new item with an external component (form or modal form) | | onAddRow | boolean / function | If set to true, it will create a new row on click, if a function is given, it will expect an object with custom data to match the given rows structure | | onCancel | boolean / function | If set to true, it will cancel all changes made on the table, if a function is given, it will allow a custom function to be executed after the cancelation has been made | | onEditCell | function | Function to execute after a cell has been edited, it will execute on blur | | enableExportToCSV | boolean | If set to true, it will display a button that will export all displayed data in the table (ignoring pagination, it will only export data that hasn't been filtered) in a Comma Separated Values (CSV) format, it uses the "title" prop and a timestamp to name the exported file |

Example

const data = [
    {
        id: 9888,
        name: "Hartmann, Runolfsson and Stroman Inc",
        email: "[email protected]"
    },
    {
        id: 28451,
        name: "Jacobson Inc Inc",
        email: "[email protected]"
    },
    {
        id: 72265,
        name: "Bahringer, Padberg and Upton Inc",
        email: "[email protected]"
    },
]


<PaginatedTable
    title="Example"
    onCancel={true}
    rows={data}
    rowLimit={15}
    actionsActive={false}
    onSave={({ deleteItems, updateItems, createItems, rows }) => {
        console.log(deleteItems)
        console.log(updateItems)
        console.log(createItems)
        console.log(rows)
    }}
    onAdd={() => {
        console.log('This can be used to display an external form or modal form! Control the rendered rows externally')
    }}
    onAddRow={(id) => {
        return {
            id: id,
            name: "Daugherty Inc LLC"
            email: "[email protected]"
        }
    }}
    onCancel={true}
    onEditCell={(editedRow) => {
        console.log('This is the new data: ')
        console.log(editedRow)
    }}
    enableExportToCSV={true}
    columns={[
        {
            width: 250,
            Header: 'Code',
            accessor: 'id',
        },
        {
            width: 225,
            Header: 'Name',
            accessor: 'name',
        },
        {
            width: 225,
            Header: 'Email',
            accessor: 'email',
        },
    ]}
/>

Row Actions


| Prop | Type | Description | | ----------------------- | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | actionsActive | boolean | Whether each row will have a set of actions (see structure here) | | actionsWidth | numeric | Width in pixels of the first column that will display the actions buttons | | onSelect | function | Function to execute if the user clicks on the "pencil" icon button on a specific row it as access to the selected row | | onDelete | boolean / function | If set to true, it will display a button to remove the selected row ("trash" icon button), if a function is given, it will allow a custom function to be executed after the deletion has been made, the function has access to the remaining rows | | additionalActionButtons | array | Additional buttons to be displayed on each row, each button will have a custom action and icon to give it the desired look and functionality, icons here |

Example

const data = [
    {
        id: 9888,
        name: "Hartmann, Runolfsson and Stroman Inc",
        email: "[email protected]"
    },
    {
        id: 28451,
        name: "Jacobson Inc Inc",
        email: "[email protected]"
    },
    {
        id: 72265,
        name: "Bahringer, Padberg and Upton Inc",
        email: "[email protected]"
    },
]

const additionalActionButtons = [
    {
        name: 'View',
        icon: 'eye',
        action: (row) => {
            console.log(row)
        }
    },
     {
        name: 'Email',
        icon: 'mail',
        action: (row) => {
            console.log('Mail sent to ' + row.email)
        }
    }
]

<PaginatedTable
    title="Example"
    onCancel={true}
    rows={data}
    rowLimit={15}
    actionsActive={true}
    actionsWidth={125}
    onSelect={(selectedRow) => {
        console.log(selectedRow)
    }}
    onDelete={(remainingRows) => {
        console.log(remainingRows)
    }}
    additionalActionButtons={additionalActionButtons}
    columns={[
        {
            width: 250,
            Header: 'Code',
            accessor: 'id',
        },
        {
            width: 225,
            Header: 'Name',
            accessor: 'name',
        },
        {
            width: 225,
            Header: 'Email',
            accessor: 'email',
        },
    ]}
/>

Columns

Each column will have the following structure:

| Prop | Type | Description | | --------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------- | | width | numeric | The column's width, data exceeding this width will trigger an horizontal scrollbar | | Header | string | The column's title to be displayed on the table header | | accessor | string | The name of the row attribute that holds the value to be displayed | | type | string | Format and input type that the column will have, can be one of: text, currency, boolean, select, textarea, number, color, date | | options | array | If the type is select, then an options array has to be provided (see the structure below) | | editable | boolean | Whether the column can be edited or not | | filterable | boolean | Whether the column can be filtered or not | | permanentRender | boolean | Whether the column cell input will always be visible and not render the default label |

Column Options

| Prop | Type | Description | | ----- | ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | key | string | The unique key identifier | | text | string | The option text to display | | value | any | The actual value of each option | | color | string / function | The column color, if a string is given, it will have that static color for every cell in the column, if a function is given, it will have access to the current row and condittionaly format an specific cell |

Additional Header Actions


Each additional header button will have the following structure:

| Prop | Type | Description | | -------- | -------- | ---------------------------------------- | | label | string | The text content of the button | | icon | string | The button icon to be displayed | | action | function | Action to be executed on click of button | | disabled | boolean | Whether the button is disabled or not |

Example

const data = [
    {
        id: 9888,
        name: "Hartmann, Runolfsson and Stroman Inc",
        email: "[email protected]"
    },
    {
        id: 28451,
        name: "Jacobson Inc Inc",
        email: "[email protected]"
    },
    {
        id: 72265,
        name: "Bahringer, Padberg and Upton Inc",
        email: "[email protected]"
    },
]

<PaginatedTable
    title="Example"
    onCancel={true}
    rows={data}
    rowLimit={15}
    actionsActive={true}
    actionsWidth={125}
    onSelect={(selectedRow) => {
        console.log(selectedRow)
    }}
    onDelete={(remainingRows) => {
        console.log(remainingRows)
    }}
    additionalHeaderButtons={
            [
                {
                    label: 'Prueba',
                    icon: 'search',
                    action: (rows) => {
                        console.log(rows)
                    },
                },
            ]
        }
    columns={[
        {
            width: 250,
            Header: 'Code',
            accessor: 'id',
        },
        {
            width: 225,
            Header: 'Name',
            accessor: 'name',
        },
        {
            width: 225,
            Header: 'Email',
            accessor: 'email',
        },
    ]}
/>