EDH Swipe

A Tinder-style interface for discovering Magic: The Gathering commanders

EDH Swipe card interface.

EDH Swipe

A simple Tinder-style interface for discovering Magic: The Gathering commanders. Click yes to save commanders you like, click no to see the next one, and view your saved collection in a separate tab.

View on GitHub Try Live Demo

Overview

I created this project to make finding commanders for new EDH decks less overwhelming. Instead of scrolling through endless lists, you’re presented with one card at a time and make a quick decision. You can than look at this list later to help you figure out what commander you want to build out next

Tech Stack

Frontend

Key Features

Card-by-Card Discovery

Saved Collection

Development Journey

This was a focused project to practice working with external APIs and managing simple state. Also practiced using gsap animations for the card swiping feature. The main challenges were:

What I Learned

Working with External APIs

I learned how to read API documentation, handle JSON responses, and structure my code to work with external data sources. Including the importance of having fallbacks for when external api does not include what you expected.

GSAP Animations

I learned how to interact with the gsap framwork to add animations to the site while using their draggable abstraction in order to implement the card swiping feature. Using GSAP saved alot of time to finish up the project.

Simple State Management

Managing which cards have been seen and which are saved taught me practical state management patterns. Local storage provided a straightforward way to persist data without needing a backend.

Future Enhancements