Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flowser: Interact Screen + Blocto & FlowFan's collections integration + UI & Technical updates #150

Open
monikaxh opened this issue Feb 17, 2023 · 19 comments
Assignees
Labels

Comments

@monikaxh
Copy link

monikaxh commented Feb 17, 2023

Flowser: Interact Screen + Blocto & FlowFan's collections integration + UI & Technical updates

Grant category

Please select one:

  • Developer tools / services

1. Milestones & Tasks

1.1. Interact Screen

Problem: During (Flow) blockchain development, you often need to switch between multiple programs (your IDE, Flow CLI, Flowser,..), which can negatively impact your developing flow and productivity.

For example, you may edit the contract source code (in your IDE), redeploy this code (Flow CLI super commands will automatically handle this), test it out by executing some transaction/script (in Flow CLI), and review blockchain state (in Flowser).

This mental context switching is expensive, so ideally, you’d want to use as few tools as possible - your IDE for code writing, Flow CLI for managing the development flow, and Flowser for viewing and interacting with the blockchain.

This is also very similar to the traditional web2 development workflow (e.g., for client-side applications), where you use your IDE to edit code, a CLI tool (like [create-react-app,](https://create-react-app.dev/) [vite](https://vitejs.dev/),..) for managing development flow (rebuilding website source code,..) and your browser for reviewing the changes.

Solution: We want to build a brand-new screen for performing blockchain interactions (executing transactions or scripts). This could replace or enhance some Flow CLI commands like flow transactions send and flow scripts execute with an easier-to-use and more powerful GUI.

Main features:

  • Automatically detect the type of interaction (either script or transaction) and show appropriate info after execution.
    • For transactions, we plan to show (all) the “effects” of the transaction, e.g., events emitted, errors (if any), storage state change (in the future), and other helpful info.
    • For scripts, we plan to show the script output in a nice programmer-readable UI (e.g., JSON viewer) and other info if applicable (e.g., errors)
  • Automatically detect the transaction/script arguments and provide a smart UI for inputting values (e.g., if the argument is an account address, automatically provide a dropdown input with a list of accounts on the network)
  • Better Cadence code editor (e.g. using [Monaco editor & Cadence language server](https://github.com/onflow/cadence/tree/master/npm-packages/monaco-languageclient-cadence))
  • UI for viewing the non-linear history of interactions and state changes (similar to the output of git log --graph command)
  • Perform actions on past interactions (e.g., revert to the previous state, duplicate interaction,…). This is closely connected with the snapshot management feature we implemented in the previous grant. We also plan to improve the overall reliability of this feature in this grant.
  • Implement the possibility of adding templates for the most common transactions. This can be possible with community resources. This feature would be linked with milestone 2: Community to Community, Transaction Metadata.

Tasks:

  • Parse transaction/script source code to generate a list of required inputs with their respective data types
  • Build a smart account (Address) input, where the user can select an existing account from a dropdown-like UI (similar to how this is done in Flow Playground).
  • Pre-generate a list of accounts that can be used during the development. Provide a way for a developer to generate additional accounts if needed.
    • Optionally store these accounts settings in a separate flow.json configuration (e.g. flow.flowser.json)
  • UI Design:
    • Implement interact screen UI elements:
      • Past interactions,
      • State chart,
      • Interaction info,
      • Smart script/transaction inputs,
      • Transaction Status
      • Common transaction templates import
    • Smart History view design:
      Design a UI for viewing the non-linear history of interactions.
    • Support all the technical features
      (e.g., smart account inputs, generation of additional accounts…)
    • Action Status
      • In the case of Scripts, the data will be displayed in the same way we are displaying storage inspection
      • In the case of a Transaction, the result must be displayed

1.2 Community to Community

a. Transaction Metadata (Flowser & Blocto)

We will integrate [Blocto’s collection of audited Flow transactions](https://github.com/portto/flow-transactions) into Flowser. This will enable better support and documentation for some of the more standard/popular transactions.

With this integration, we will be able to define a list of common transaction templates. The data will then be used in the History view on the Interaction screen (see Milestone 1), as well as in the transaction table.

Tasks:

b. Token metadata (Flowser & FlowFans)

Integrate [FlowFan’s collection of Flow token metadata](https://github.com/FlowFans/flow-token-list) into Flowser.

Token metadata will allow us to recognize more standard/popular Flow tokens and show their metadata in Flowser UI (e.g., links to documentation, symbol, logo,…).

Tasks:

  • Show supported token icons where applicable (e.g., in token transfer info, event rows,…)
  • Show metadata on the contract details page.
  • Optionally submit a PR on https://github.com/FlowFans/flow-token-list that adds links to token documentation pages

1.3 UI Updates

a. Account address abstraction

Account addresses are not human-friendly, but we show them pretty much everywhere now. We want to provide a better abstraction on top of raw account addresses - account icons or names. Ideally, we’d want to use the same naming convention used in other Flow tools (e.g., flow dev super command).

Tasks:

  • We will update the design all over the tool (Accounts table, account details, transaction table, transaction details,…) and present the addresses more visually.
  • Autogenerate custom address avatars (or use the ones from fcl-dev-wallet) and show them next to account addresses, making it easier for users to identify accounts.
  • Treat account addresses as an implementation detail.
    • Pre-generate a list of accounts that can be used during the development. The addresses of these accounts could change on every project startup, so we wanna show names that will always stay the same.

b. Improve transaction transfers info

Flowser is a graphical user interface, and we would like to focus on presenting the data more visually in this grant. With this idea, we would like to improve the transaction token transfer info, enabling users to make more sense of what the transaction is doing.

Tasks:

c. Transaction overview in table

Transactions do different things like:

  • transferring tokens
  • adding contracts to accounts
  • executing other application logic

If you look at the transactions table now, you are not able to see what each executed transaction did without examining the source code:

Screenshot 2023-01-25 at 12 36 23

The idea is to display this information differently from other data, so you can quickly see the effect of a particular transaction.

Tasks:

d. Show uncollapsed view of transaction arguments

We show a collapsed view of transaction arguments (for complex data types like arrays or dictionaries):

Design today:

Screenshot 2023-01-16 at 09 19 51

We should show a full data view, but there won’t be enough space to fit that data in a single line like we used to do (e.g., if the array has 5 elements). We will break that info into multiple lines when the data type is array or dictionary.

Example of how we could present the data:

Screenshot 2023-01-16 at 09 23 12

e. Cleanup of the current UI

  • Less clutter on tables

We will eliminate unnecessary information, update the address view, and add a better overview of what the transaction did (in the Transaction Table).

  • Display non-clickable tabs differently and move "buttons" into tabs

Showing non-clickable tabs is confusing.

We will update the design of all details pages (account, blocks, and transactions) whew we will:

  • Redesign “buttons” into tabs
  • Present data with no additional details view (e.g., Collection in Blocs table) differently

Screenshot 2022-11-23 at 18 17 34

f. Global search design

Global search will enable users to search for any kind of:

  • transaction
  • address
  • account
  • history item
  • transaction template
  • tag
  • etc

We will design a modal for a global search.

Global search will be implemented in the future, but we will prepare the design in the scope of this grant.

g. Tags

Tags are a way to attach labels to different objects on the Flow blockchain. We are planning to implement tags for accounts, transactions, and events.

Tasks:

  • Implement account tags:
    • service account - to indicate if the account is a service account defined in flow.json file
  • Implement transaction tags:
    • Fungible token transfer
    • NFT transfer
    • … others, if applicable
  • Event tags

1.4 Technical Improvements

a. Remove the need for manual transaction authorization

As of now, you need manually authorize every transaction that you want to execute using the fcl-dev-wallet modal. This is not ideal behavior for our upcoming interaction screen because it presents an unnecessary distraction.

Tasks:

b. Improve snapshot management

The current implementation of snapshot management is not as reliable as we’d like. Because this feature will be used in the upcoming [interact screen feature](https://www.notion.so/Documentation-01d7fc2f7fab4c30b5d59c85d16ceb88), it should behave reliably.

That’s why we proposed some changes to the snapshot management API in Flow CLI, which have now been implemented in the PR below.

onflow/flow-emulator#241

onflow/flow-emulator#228

The next step is to integrate these API improvements to Flowser. We also want to create snapshots automatically on a per-block basis.

1.5 Continued support, Maintenance & PR

Resolve (or provide support) any GitHub issues: https://github.com/onflowser/flowser/issues

We will support all active users and resolve any GitHub issues: https://github.com/onflowser/flowser/issues, maintain the tool with regular updates and continue with communication on Twitter.

2. Milestones & Tasks

Milestone Deliverables Timeline Risks Flow Tokens Suggested
(4) Technical Improvements • The need for manual transaction authorization is removed
• Snapshots are created automatically on a per-block basis
2 weeks   6,000
(1) Interactive Screen Implementation Interact Screen for performing blockchain interactions (executing transactions or scripts) with all functionalities is designed and developed. 6 weeks   36,000
(2) Community 2 community • Blocto’s collection of audited Flow transactions integration into Flowser
• FlowFan’s collection of Flow token metadata integration into Flowser.
3 weeks   7,000
(3) UI Updates • Account address abstraction
• Improved transaction transfers design
• Display the human-readable description of the transaction
• Uncollapsed view of transaction arguments is shown
• Tables are updated and contain less clutter
• “Buttons” on the detail page are redesigned into tabs
• Non-clickable tabs on the details page are redesigned
• Design for a global search is created
• Tags are designed and implemented
3 weeks - 20,000
(5) Continued support, Maintenance & PR Provide support for all active users, maintain the tool with regular updates, and continue with communication on Twitter. 4 months* - 36,000 (9,000 monthly)

*Milestone 5 will start on day one and will be ongoing work for 4 months. It will be done simultaneously with all other milestones.

Total suggested USD amount: $52,500

Team

Github Name Role Bio Email
@bartolomej Bartolomej Kozorog Full stack developer Passionate developer and CS student. Currently building Flowser tool and working at kazm.xyz - building a Web3 CRM platform [email protected]
@monikaxh Monika Hriberšek UX/UI Design + Graphic design Proprietor @ Monikart; UX/UI Designer @ Flowser since Sep 2021; Designing: mobile apps, websites, social media content, NFTs. Additional experience: Product Manager @ Renault&Nissan Financing (~ 4y). [email protected]
@alxflw
Copy link
Contributor

alxflw commented Mar 24, 2023

thanks for the submission @monikaxh. @fotescodev will reach out to you to discuss this further

@alxflw alxflw assigned fotescodev and unassigned chrisackermann Mar 24, 2023
@monikaxh
Copy link
Author

Awesome, thank you!

@monikaxh
Copy link
Author

Hi @alxflw and @fotescodev! 👋
I just wanted to check if there are any updates. Is there any more info @bartolomej and I should provide?

@alxflw
Copy link
Contributor

alxflw commented Apr 11, 2023

thanks for the ping @monikaxh. we're still gathering reviews. the spring break is delaying some of these. sorry!

@monikaxh
Copy link
Author

Sure, no problem @alxflw! Thank you for a quick feedback! ✌️

@fotescodev
Copy link

Automated Snapshots is a great addition as well. Let's sync on Monday after we have reviewed this with @alxflw.

@bartolomej
Copy link

bartolomej commented Apr 30, 2023

Automated Snapshots is a great addition as well. Let's sync on Monday after we have reviewed this with @alxflw.

@fotescodev Yeah, indeed! Maybe we didn't state that explicitly, but the automated snapshots feature is actually a prerequisite to the interact screen feature. That's because one essential idea behind the interact screen is the ability to revert to any previous interaction/transaction (read "block").

For this to work, we need a reliable mechanism to create snapshots for every new block. I believe we could do that at the (flowser) application layer, but I don't think will work reliably enough in all cases (e.g. if the block interval is very short we could miss some blocks).

So I believe we will need to work together on this and possibly other features in this grant if they require some work on the Flow tooling side.

@bluesign
Copy link

bluesign commented May 1, 2023

@bartolomej we have roll back to height now on emulator, so no need to take snapshot every block anymore. onflow/flow-emulator#309

But having a UI for this is great for UX.

@fotescodev
Copy link

@JeffreyDoyle I was wondering if this would work well with FLIX as well?

@fotescodev
Copy link

Let's gooooo! Very excited to see Flowser be taken to a new level setting the standard for the rest of the Flow Dev tooling 🚀

@bartolomej
Copy link

@fotescodev That's great news! We are starting our work right away. 🚀

@monikaxh
Copy link
Author

We've successfully achieved our second milestone: Interact Screen. This marks a significant enhancement to Flowser, transforming it not just into a GUI, but also an integrated development environment (IDE) 🛠️

Key Highlights from this Milestone:

Introduction of the interactive screen, empowering users to:

  • write Cadence interactions (transactions or scripts)
  • provide arguments to interactions
  • view results (error or success) of interactions
  • reuse (project or custom) Cadence templates (aka. snippets)
  • inspect and roll back to historic blockchain states
  • view execution logs (from log() calls in Cadence)

The main components on the Interactive screen are:

  • History: Browse and revert to historic blockchain states seamlessly.
  • Templates:
    • You can write Cadence interactions (transactions or scripts) and save them or use templates.
    • Flowser also reads scripts/transactions sourced from project files and presents them in a template section. You can easily edit them right on the interactive screen.

1

  • Editor: Create transactions and scripts, or edit them from the template list.

  • Arguments

    • You can quickly add and manage arguments
      2
  • Execution result view

    • Access comprehensive execution details instantly, organized into separate tabs.
    • Added help banners with links to relevant learning resources throughout the app.

3
4
5

Watch the Interactive Screen in action: Video Demo 📺

milestone_progress_graphics

@sideninja
Copy link

Reviewed the (1) Interactive Screen Implementation milestone. Really nice work!

I approve the milestone as being completed. 🎉

During the review and usage of the tool, I found some minor things that would be good to address before the grant is finished:

  • On the script execution if the script fails the error should be clearly written the same way as it is for transactions, but for a script, we now get the API error
  • When you open a template by double-clicking on it in the list on the left, and then opening another template, but then want to switch back to that first template by again double-clicking on it in the list it doesn't open it, it requires clicking on tabs. This is NIT but if it can be fixed it would be an improvement if not too much work
  • Not related to this milestone but something I want you to note: switching between different views (blocks, txs, events) is not clear what the view shows, and there's no title for those screens, I believe you might already have this in your plan, just wanted to make sure there's either a title somewhere or at least hover label when you click on the icon saying what the screen shows.
  • The new import schema is not working, related to issue you've already opened
  • The overview and error screens should have a slider or be made responsive

@bartolomej
Copy link

@sideninja

On the script execution if the script fails the error should be clearly written the same way as it is for transactions, but for a script, we now get the API error

I think this issue in FCL is blocking that: onflow/fcl-js#1762

Agreed with other points you made, most of those are already a WIP!

@monikaxh
Copy link
Author

monikaxh commented Oct 1, 2023

Hello @sideninja @gregsantos @SeanRobb 👋

We've successfully reached a significant milestone with our latest updates to Flowser's user interface (UI).

UI updates (first pass)
UI updates
UI polish
Interaction polish

Let's dive into the exciting changes:

Enhanced UI: We put in the hard work to make Flowser's UI more intuitive and visually appealing. Notable improvements include the representation of addresses with icons and the repositioning of the main menu to the left side, simplifying navigation 🗺 We've also decluttered the interface, creating a cleaner and more user-friendly experience ✨

side.menu.walkthrough.mov

Table and Details Page Redesign: We've revamped our tables and details pages, replacing buttons with tabs for easier data access and browsing. This refreshed design has also been extended to our Interactive screen.

details.page_tabs.mov

Global Search: The design of global search was scheduled for this milestone, but the implementation was originally slated for the future. During the process, we recognized the importance of a global search feature and have decided to include it in upcoming milestones. 🔥

Screenshot 2023-09-30 at 13 58 17

Screenshot 2023-09-30 at 13 58 41

Tags: We've introduced tags such as #service, tailored for service accounts, and #default tag, which is used if the account was created automatically by the emulator.

Screenshot 2023-09-30 at 14 06 50

Helpful Tooltips: To assist users, we've added useful tooltips throughout Flowser.

Screenshot 2023-09-30 at 14 09 05

Improved Events Data display: We've enhanced the "events data" logic, moving away from a single cluttered table to a more organized structure with a dedicated events table and a detailed view.

Events.data.mov

We have introduced a temporary solution to showcase user-friendly names for commonly used transactions within Flow CLI. This solution will remain in place until we finalize the "Community to Community" milestone.

In our commitment to assist new developers on Flow, we have chosen to provide a range of helpful tips within the tool:

Screenshot 2023-10-01 at 17 36 18

All of these updates (and more) can be found in Flowser version 3.0, which is now live 🚀
It combines the Interactive screen from our previous milestone with all the UI enhancements achieved in this release. Check it out here, and experience the future of Flowser!

Check out our Flowser demo 📺, see our updated website & follow us on Twitter or jump on our Discord

Other:

@SeanRobb
Copy link
Collaborator

SeanRobb commented Nov 8, 2023

Reviewed the (3) UI improvements milestone. Awesome stuff and I approve the milestone as being completed. 🎉

@monikaxh
Copy link
Author

monikaxh commented Dec 18, 2023

Hello there @SeanRobb!

We've wrapped up two (last 🙀) milestones as part of the grant:

  1. Milestone 2: Community to Community
  2. Milestone 5: Maintenance

Community to Community

A key achievement was the integration of FLIX, enabling seamless browsing and utilization of templates. Our FLIX info UI displays verification status (with users empowered to propose new FLIX templates), existing audits, and inline argument documentation.

We also integrated with FlowFans token metadata collection - displaying token info and prompting the creation of new metadata.

Additionally, we are transitioning Blocto’s verified transactions collection to the FLIX standard and submitted various proposals to the official FLIX repo. Some of these are already experimentally implemented on our own FLIX fork, while others are still in draft.

flix status
FLIX argument descriptions-

Maintenance

Our ongoing maintenance work, initiated since day one, has also reached a completion.

This included various bug fixes, improvements, and overall software maintenance work. But some of the most notable changes include Linux support 🐧 for our desktop app and a large internal codebase restructure to support future extensions 🤙 (like the one hinted below).

In the realm of communication and marketing 🎯 we crafted a compelling Flowser demo 📺 for the interactive screen and enhanced our Twitter communication strategy 🐥 Over the past 91 days, our efforts have yielded an impressive 1.8K impressions per day 📈This marks a substantial leap from the pre-grant period (March 1st - May 31st), where we only garnered 8 impressions per day. Additionally, we witnessed a remarkable 1550% increase in the absolute number of replies and a notable 1.5 percentage point rise in overall engagement.

Next up

🔥 Exciting developments on the horizon for Q1:

  • Web version of Flowser featuring support for testnet and mainnet 🙀
  • Advanced global search 🚀
  • Native support for account linking
  • Further contributions to FLIX tooling, standardization, and adoption
  • FLIX web app (to be discussed)?
  • Work with the community on standardizing contract metadata ([context](https://x.com/onflowser/status/1724772820675117194?s=20))?

As we reflect on this journey, navigating through a bearish market 🐻 we're immensely grateful for the unwavering support 🫶

@SeanRobb
Copy link
Collaborator

@monikaxh Approved 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

8 participants