Skip to main content

Independent Ticketing System Frontend

In the previous part of this tutorial, you built the package contract for the Independent ticketing system. Now, you can create the UI. To create the frontend dApp, we use IOTA dApp kit. Apart from the dApp kit, we will also use an external package for client-side routing, which is react-router-dom.

Set Up the Frontend dApp

First, create an initial react app using the following command:

pnpm create @iota/create-dapp

Set Up Network Configuration

Add the following variables in the networkConfig.ts file:

independent_ticketing_system/Frontend/src/networkConfig.ts
loading...

You should retrieve the shared objects from the transaction digest of the published package.

note

To mint a ticket from the UI, ensure that the IOTA wallet account is added to the IOTA CLI. This should be mentioned in the Simple Token Transfer tutorial.

Folder Structure

App.tsx

This component serves as the entry point, containing the navbar and the outlet component for client-side routing.

independent_ticketing_system/Frontend/src/App.tsx
loading...

AvailableTickets.tsx

The AvailableTickets.tsx component displays all NFT tickets available for purchase, including newly minted tickets and tickets listed for resale.

independent_ticketing_system/Frontend/src/components/AvailableTickets.tsx
loading...

BurnTickets.tsx

The BurnTickets.tsx component handles the burning of ticket nfts. It functions as a child component of OwnedTickets.tsx and is rendered only when a ticket listed by the OwnedTickets.tsx component is being burned.

independent_ticketing_system/Frontend/src/components/BurnTickets.tsx
loading...

Form.tsx

The Form.tsx component is an input form used to collect inputs for all operations. It is a versatile component utilized everywhere except in the OwnedTickets.tsx operation.

independent_ticketing_system/Frontend/src/components/Form.tsx
loading...

Home.tsx

The Home.tsx component displays buttons for all operations and a list of owned objects associated with the currently connected account.

independent_ticketing_system/Frontend/src/components/Home.tsx
loading...

Mint.tsx

The Mint.tsx component allows the creator to mint tickets and is exclusively accessible to them.

independent_ticketing_system/Frontend/src/components/Mint.tsx
loading...

NftForm.tsx

The NftForm.tsx is an input form used specifically in the OwnedTickets.tsx operation.

independent_ticketing_system/Frontend/src/components/NftForm.tsx
loading...

Ownedtickets.tsx

The OwnedTickets.tsx component lists all the NFT tickets owned by the connected account. It only displays objects of the TicketNFT type, excluding other types.

independent_ticketing_system/Frontend/src/components/OwnedTickets.tsx
loading...

ResellTickets.tsx

The ResellTickets.tsx component is used for reselling NFTs. It is only utilized when someone resells an NFT listed in the OwnedTickets.tsx component.

independent_ticketing_system/Frontend/src/components/ResellTickets.tsx
loading...

TransferTickets.tsx

The TransferTickets.tsx component is used to transfer the ownership of an NFT to another recipient address. Similar to the BurnTickets.tsx and ResellTickets.tsx components, this component is rendered when someone transfers an NFT from the list of NFTs in the OwnedTickets.tsx component.

independent_ticketing_system/Frontend/src/components/TransferTickets.tsx
loading...

Usage Example

Dashboard

Dashboard

Mint Tokens

  • Click on the mint button located at the top-right corner (ensure that the creator account is connected).

Mint

Mint-Transaction

Whitelist Users

  • Before making the ticket available for purchase, whitelist the users first.

whiteListBuyer

whiteListBuyer-transaction

Enable Ticket to Buy

  • After whitelisting users, you can add the ticket to the AvailableTickets object. Follow the steps below to complete this process.

enableTicketToBuy

enableTicketToBuyTransaction

Buy Ticket

  • To buy a ticket, enter the seat number and your IOTA coin address.

BuyTicket

BuyTicketTransaction

  • Once the ticket is purchased, the NFT will be displayed on the dashboard as shown below:

otherUser

Resell Ticket

  • Resell a ticket by wrapping the NFT into another object (InitiateResale). You can either update the price of the NFT or keep the same price as before.

resellTicket

resellTicketTransaction

Transfer Ticket

  • To transfer a ticket, click on the transfer button on the dashboard page or on the transfer button of the NFT listed under owned tickets, and enter the NFT ID.

transfer

transferTransaction

  • After the transaction, the NFT will appear under the recipient's address, as shown below:

afterTransfer

Conclusion

In this tutorial, we successfully built an independent ticketing system where NFT tickets are created using the IOTA Move language for the contract package. We went through the functionality of the contract step by step and demonstrated how it works within the system. Additionally, we explored the integration of the IOTA dApp kit into the frontend, providing a comprehensive guide for building a fully functional dApp. Each component was explained in detail, from minting and transferring tickets to reselling and burning them, ensuring a clear understanding of the system. By following this tutorial, you should now be well-equipped to develop and deploy your own ticketing application using IOTA's technologies, offering a secure and decentralized solution for ticket management.