recipeDetails.ejs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <div id="recipeDetails">
  2. <div class="sidebarIconButtons">
  3. <button class="iconButton tooltipContainer" onclick="controller.closeSidebar()">
  4. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  5. <line x1="5" y1="12" x2="19" y2="12"></line>
  6. <polyline points="12 5 19 12 12 19"></polyline>
  7. </svg>
  8. <span class="tooltip">CLOSE</span>
  9. </button>
  10. <button id="showRecipeBtn" class="iconButton tooltipContainer" style="display:none">
  11. <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  12. <path d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"></path>
  13. <line x1="1" y1="1" x2="23" y2="23"></line>
  14. </svg>
  15. <span class="tooltip">SHOW</span>
  16. </button>
  17. <button id="hideRecipeBtn" class="iconButton tooltipContainer">
  18. <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  19. <path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
  20. <circle cx="12" cy="12" r="3"></circle>
  21. </svg>
  22. <span class="tooltip">HIDE</span>
  23. </button>
  24. <button id="editRecipeBtn" class="iconButton tooltipContainer">
  25. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  26. <path d="M12 20h9"></path>
  27. <path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"></path>
  28. </svg>
  29. <span class="tooltip">EDIT</span>
  30. </button>
  31. <button id="removeRecipeBtn" class="iconButton tooltipContainer">
  32. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  33. <polyline points="3 6 5 6 21 6"></polyline>
  34. <path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>
  35. </svg>
  36. <span class="tooltip">DELETE</span>
  37. </button>
  38. </div>
  39. <h1 id="recipeName"></h1>
  40. <h4 id="recipeCategory"></h4>
  41. <div id="recipeIngredientList"></div>
  42. <div class="lineBorder"></div>
  43. <div id="recipePrice">
  44. <h3>PRICE</h3>
  45. <p></p>
  46. </div>
  47. <template id="recipeIngredient">
  48. <div class="choosable">
  49. <p></p>
  50. <p></p>
  51. </div>
  52. </template>
  53. </div>