Ant Design Table in the SPFx

This article provide steps to implement the Ant Design Table in the SharePoint Framework (SPFx), generally Ant Design is the design system for enterprise-level products. Create an efficient and enjoyable work experience.

Create a new web part project

Open power shell and run following comment to create a new web part by running the Yeoman SharePoint Generator

yo @microsoft/sharepoint

When prompted:

Enter the webpart name as your solution name, and then select Enter.
Select Create a subfolder with solution name for where to place the files.
Select Y to allow the solution to be deployed to all sites immediately.
Select N on the question if solution contains unique permissions.
Select WebPart as the client-side component type to be created.

The next set of prompts ask for specific information about your web part:

Enter your web part name, and then select Enter.
Enter your web part description, and then select Enter.
Select React framework as the framework you would like to use, and then select Enter.

Start Visual Studio Code (or your favorite code editor) within the context of the newly created project folder.

cd .\web part name\
code .

Install the library and required dependencies

npm install @pnp/sp --save
npm install antd@3.26.1 --save

Import the library into your application, update constructor, and access the root sp object in render for PnPjs libraries.

sp.setup({spfxContext: this.props.spcontect});

You need to update the render method of the client-side web part to create a properly configured instance of the React component for rendering. The following code shows the updated method definition.

  public render(): void {
    const element: React.ReactElement<ISpfxAntTableProps> = React.createElement(
      SpfxAntTable,
      {
        description: this.properties.description,
        context:this.context
      }
    );
    ReactDom.render(element, this.domElement);
  }

Update the tsx file under the components. First, add some import statements to import the types you defined earlier. Notice the import for I<web part name>Props and I<web part name>State. There are also some imports for the PnP components used to render the UI of the PnP React component and pnp sp imports.

import * as React from 'react';
import { ISpfxAntTableProps } from './ISpfxAntTableProps';
import { Table, Button } from 'antd';
import { sp } from "@pnp/sp";
import "@pnp/sp/webs";
import "@pnp/sp/lists";
import "@pnp/sp/items";
import 'antd/dist/antd.css';

Replace this render function with the following code.

  public render(): React.ReactElement<ISpfxAntTableProps> {
    let { sortedInfo, filteredInfo } = this.state;
    sortedInfo = sortedInfo || {};
    filteredInfo = filteredInfo || {};

    let titlearr: any[] = [];
    let numberarr: any[] = [];

    this.state.data.forEach(function (dept, i) {
      titlearr.push({ text: dept.Title, value: dept.Title });
      numberarr.push({ text: dept.NumberOfPeople, value: dept.NumberOfPeople });
    });

    titlearr = this.unique(titlearr, "text")
    numberarr = this.unique(numberarr, "text")

    const columns = [
      {
        title: 'Title',
        dataIndex: 'Title',
        key: 'Title',
        filters: titlearr,
        filteredValue: filteredInfo.Title || null,
        onFilter: (value, record) => record.Title.includes(value),
        sorter: (a, b) => a.Title.length - b.Title.length,
        sortOrder: sortedInfo.columnKey === 'Title' && sortedInfo.order,
        ellipsis: true,
      },
      {
        title: 'Number Of People',
        dataIndex: 'NumberOfPeople',
        key: 'NumberOfPeople',
        filteredValue: filteredInfo.NumberOfPeople || null,
        filters: numberarr,
        sorter: (a, b) => a.NumberOfPeople - b.NumberOfPeople,
        sortOrder: sortedInfo.columnKey === 'NumberOfPeople' && sortedInfo.order,
        ellipsis: true,
      },
      {
        title: 'Description',
        dataIndex: 'Description',
        key: 'Description',
        
        onFilter: (value, record) => record.Description.includes(value),
        sorter: (a, b) => a.Description.length - b.Description.length,
        sortOrder: sortedInfo.columnKey === 'Description' && sortedInfo.order,
        ellipsis: true,
      },
    ];
    return (
      <div style={{ padding: '20px' }}>
        <Button onClick={this.clearFilters} style={{margin:'0px 0px 20px 0px'}}>Clear filters</Button>
        <Table columns={columns} dataSource={this.state.data} onChange={this.handleChange} />
      </div>
    );
  }

Update the React component type declaration and add a constructor, as shown in the following example.

export default class SpfxAntTable extends React.Component<ISpfxAntTableProps, {}> {
  constructor(props: ISpfxAntTableProps) {
    super(props)
    sp.setup({ spfxContext: this.props.context });
    this.getvalues();
  }

place the below code inside the react component code, these functions using PnPjs to get files from the SharePoint document library

  getvalues = async () => {
    const allItems: any[] = await sp.web.lists.getByTitle("Departments").items.get();
    this.setState({ data: allItems })
  }

  state = {
    filteredInfo: null,
    sortedInfo: null,
    data: []
  };

Other some events and function

  handleChange = (pagination, filters, sorter) => {
    console.log('Various parameters', pagination, filters, sorter);
    this.setState({
      filteredInfo: filters,
      sortedInfo: sorter,
    });
  };

  clearFilters = () => {
    this.setState({ filteredInfo: null });
  };

Deploy the solution

You’re now ready to build, bundle, package, and deploy the solution.

Run the gulp commands to verify that the solution builds correctly.

gulp build

Use the following command to bundle and package the solution.

gulp bundle --ship
gulp package-solution --ship

Browse to the app catalog of your target tenant and upload the solution package. You can find the solution package under the sharepoint/solution folder of your solution. It is the .sppkg file. After you upload the solution package in the app catalog. you can find and the web part anywhere across the tenant.

3 thoughts on “Ant Design Table in the SPFx

  1. hi there,
    I’m new to spfx and reactjs, I’m unable to understand few steps you have described. any would be great for begginner like me.

    after installing “@pnp/sp” and “antd@3.26.1”,
    It says “Import the library into your application, update constructor, and access the root sp object in render for PnPjs libraries.”
    in which file do I have to import and how do I update constructor

    Like

Comments