Giter VIP home page Giter VIP logo

Comments (3)

dmk99 avatar dmk99 commented on July 29, 2024 1

Hi,

Unfortunately this is not supported in the current version of the library.
One way that you could mimic something similar would be to have the final row in the data array be the "total" row.

You could then have a flag on the data to indicate that it should be rendered as a "total" row. From there you could override what is returned in getContent on the DataTableCell component.

e.g.

<DataTableCell style={pdfStyles.dataTableRow} weighting={0.6} getContent={(r) => {
   if(r.isTotal) {
     return <Text style={{fontWeight: "bold"}}>Total</Text>
   }

   return r.Title;
}}/>

The above code is just for illustrative purposes and may not work out of the box.
You MUST return a valid react-pdf component when rendering a DataTableCell. e.g. Text, View etc.

from react-pdf-table.

deividkamui avatar deividkamui commented on July 29, 2024

Thank you for your reply, I was thinking on implementing a solution similar to the one that you describe.

I also tried to derived a class from TableHeader and Change the Table class for something like this, but I'm not sure if It would work it is just an idea:

export class Table extends React.PureComponent<TableProps> {
    render() {
        let tableHeader: JSX.Element = null;
        let tableBody: JSX.Element = null;
        let tableFooter: JSX.Element = null;

        React.Children.forEach(this.props.children, (c: any) => {
            if (c.type === TableHeader) {
                tableHeader = c;
            } else if (c.type === TableBody) {
                tableBody = React.cloneElement(c, {
                    data: c.props.data ?? this.props.data ?? []
                });
            } else if (c.Type === TableFooter) {
                tableFooter = c;
            }
        });

        return (
            <View
                style={{
                    width: "100%",
                }}
            >
                {tableHeader}
                {tableBody}
                {tableFooter}
            </View>
        );
    }
}

from react-pdf-table.

dmk99 avatar dmk99 commented on July 29, 2024

I think that definitely is something that can be implemented. It would be similar to TableBody except the data passed through would be all the items in the table.

I will create a task to create the TableFooter. Thank you for your feedback.

from react-pdf-table.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.