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

@kofile/react-order-receipt

v1.25.1

Published

A reusable, configurable React component

Downloads

129

Readme

React Order Receipt

A reusable, configurable React component

Cosmos - Developer Sandbox

Usage:

  • Run cosmos
  • Visit http://localhost:8989/
  • Experiment with different input props by creating or modifying the __fixtures__.
  • Make changes to src/? yarn build to see your changes.
  • Cosmos docs for more details.

Props

Root Level

| Name | Type | Required | Description | |:-----------------------|:----------------------|:--------:|:--------------------------------------------------------| | county | County | ⭕️ | County info | | refundInfo | RefundInfo | ⭕️ | For display above receipt table | | purchasedBy | string | ✅ | Full name of user who requested refund | | orderDate | Date | ✅ | Date order was placed | | orderId | string | ✅ | ID of order | | lineItems | [LineItem] | ✅ | description | | subtotal | number | ✅ | Sum price of each line item | | convenienceFee | number | ✅ | Convenience fee amount | | totalPrice | number | ✅ | Grand total = subtotal + fees | | subtotalRefunded | number | ⭕️ | Sum price of each refunded item (without fees) | | feesRefunded | number | ⭕️ | Sum of all refunded fees | | totalRefundAmount | number | ✅ | Total amount refunded = subtotalRefunded + feesRefunded | | nonInteractive | boolean | ✅ | Are checkboxes and actions available? | | convenienceFeeType | ConvenienceFeeTypes | ✅ | Are fees calculated "per-order" or "per-document" | | showRefundDescription | boolean | ✅ | Should refund description be shown in each line item? | | showSimpleRefundStatus | boolean | ✅ | Should "completed-" prefix be omitted? | | showRefundStatus | boolean | ✅ | Should refund status column be displayed? | | zipLink | ILink | ⭕️ | Download link for zip file |

County

| Name | Type | Required | Description | |:---------------|:-------|:--------:|:----------------------------| | name?: | string | ⭕️ | County name, e.g. "Grayson" | | sealUrl?: | string | ⭕️ | URL for county seal image | | clerkName?: | string | ⭕️ | Full name of clerk | | addressLine1?: | string | ⭕️ | Street Address | | addressLine2?: | string | ⭕️ | [City], [State] [Zip code] |

RefundInfo

| Name | Type | Required | Description | |:------------|:-------|:--------:|:---------------------------------------| | requestedBy | string | ✅ | Full name of user who requested refund | | amount | number | ✅ | Total amount being refunded | | numItems | number | ✅ | Documents being refunded | | description | string | ✅ | Reason for refund |

ILink

| Name | Type | Required | Description | |:----------|:--------|:--------:|:------------------------------------| | error | string | ✅ | description of error | | link | string | ✅ | URI for download | | isLoading | boolean | ✅ | Is this component waiting for data? |

LineItem

| Name | Type | Required | Description | |:---------------------|:-----------------|:--------:|:-----------------------------------------| | id | number | ✅ | Item ID | | instrumentNumber | string | ✅ | Instrument number | | documentType | string | ✅ | Document type, e.g. "FORECLOSURE NOTICE" | | type | string | ✅ | Item type, e.g. "docimage" | | pagesPurchased | string | ✅ | Page range, e.g. "all" or "1-2, 4" | | totalPagesInDocument | number | ✅ | Total number of pages in document | | downloadLink | ILink | ⭕️ | Link to download document | | priceCents | number | ✅ | Price in cents | | refundStatus | RefundStatuses | ⭕️ | The refund status for this item | | refundDescription | string | ⭕️ | Reason refund was requested | | refundRequestedBy | string | ⭕️ | Full name of person requesting refund |

ConvenienceFeeTypes

| Enum | Type | |:---------------|:-------| | "per-order" | string | | "per-document" | string |

RefundStatuses

| Enum | Type | |:---------------------|:-------| | "approved" | string | | "rejected" | string | | "submitted" | string | | "completed-approved" | string | | "completed-rejected" | string | | "none" | string |