Last active
October 13, 2024 16:00
-
-
Save janherich/92747e730b2e115bcbe145114d024e66 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{meta {:name "Collectibles" | |
:description "Demonstration of collectible command" | |
:documentation ""} | |
views/preview | |
(let [{{{symbol :symbol token :token tx-hash :tx-hash} :params} :content outgoing :outgoing timestamp-str :timestamp-str} @properties] | |
(let [collectible-token (query [:get-collectible-token symbol token])] | |
[view {:flex-direction :column | |
:align-items :flex-start} | |
[nft-token collectible-token] | |
[view {:color (if outgoing "#707caf" "#939ba1") | |
:margin-top 6 | |
:font-size 12 | |
:flex-direction :row} | |
[text {} "Sent at "] [text {} timestamp-str]] | |
[send-status tx-hash outgoing]])) | |
views/short-preview | |
(let [{{{symbol :symbol} :params} :content outgoing :outgoing} @properties] | |
[view {:flex-direction :row | |
:align-items :flex-start} | |
[text {} (if outgoing "Sent " "Received ")] | |
[text {} symbol]]) | |
hooks/commands.collectible | |
{:description "Collectible" | |
:scope #{:personal-chats :public-chats} | |
:preview @views/preview | |
:short-preview @views/short-preview | |
:on-send transfer-nft-token | |
:parameters [{:id :symbol | |
:type :text | |
:placeholder "Collectible symbol" | |
:suggestions asset-selector} | |
{:id :token | |
:type :number | |
:placeholder "Collectible token" | |
:suggestions token-selector}]}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment