tOOlmaRR / web-slideshow

a web application to display custom slideshows in a browser for locally-stored photos
0 stars 0 forks source link

Make File Path for Current Slide Accessible #63

Closed tOOlmaRR closed 1 year ago

tOOlmaRR commented 2 years ago

Description: I would like to have the ability to copy the file path of the current slide from the page and paste it into Windows Explorer to find the source file.

Requirements:

Design:

  1. For the DB-Driven Slideshow:

    • "FullFilePath" is already available in the slides array returned from the loadSlides service
    • The renderSlide service needs to be updated to allow me to copy it; I'm thinking maybe a button next to file path (Copy Path) if it'll fit, or another text box if it doesn't.
  2. For the File-System-Based Slideshow:

    • In WebSlideshow.buildSlidesHtml, try displaying the path in the slide footer. It should be available in the $photosToDisplay array. It may be too large to show well. If it is, consider making the footer two lines: the first can be the image path with filename and the second can be the dimensions blurb

Test Plan:

Implementation Notes:

tOOlmaRR commented 2 years ago

Make File Path for Current Slide Accessible