trumbitta / playroom

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add new app "Guess the story"

trumbitta opened this issue Β· comments

Features

  • you see 3 emojis and guess what story they represent
  • you can reveal the right answer

Example data:

stories: [
  {
    id: 123,
    hint: 'πŸ‘§πŸ»πŸΊπŸ‘΅',
    title: 'Little Red Riding Hood',
    imageUrl?: 'https://foo-bar.com/abc.jpeg',
    url?: 'https://point-to-imdb-for-movies
  }
]

Issues

Images: difficult to redistribute (copyright), unethical to hot-link. Start by taking care into providing a imageUrl when the licensing is right, or a url whenever applicable. The right solution will come in time.

MVP

Mobile only

  • Wordle it's a thing: keep everything in the frontend app. We don't care about cheaters: the joke's on them.
  • Nice-to-have: keep data in a json file that would be easy to live-update (ahah just joking: what's easy about cache invalidation?)
  • Shuffle array at start
  • Keep track of items already played (maybe in sessionStorage) so that they don't return per play session
  • Swipe left to load to a new one (in case you know the answer or you just don't want to play it)
  • Tap to see the answer (nice card with title, image, and url) (maybe long press to avoid accidental spoilers)