Menu.svelte 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <script lang="ts">
  2. import { DropdownMenu } from 'bits-ui';
  3. import { flyAndScale } from '$lib/utils/transitions';
  4. import Dropdown from '$lib/components/common/Dropdown.svelte';
  5. import GarbageBin from '$lib/components/icons/GarbageBin.svelte';
  6. import Pencil from '$lib/components/icons/Pencil.svelte';
  7. import Tooltip from '$lib/components/common/Tooltip.svelte';
  8. import { showSettings } from '$lib/stores';
  9. import Tags from '$lib/components/common/Tags.svelte';
  10. export let shareEnabled: boolean = false;
  11. export let shareHandler: Function;
  12. // export let tagHandler: Function;
  13. export let tags;
  14. export let deleteTag: Function;
  15. export let addTag: Function;
  16. export let onClose: Function = () => {};
  17. </script>
  18. <Dropdown
  19. on:change={(e) => {
  20. if (e.detail === false) {
  21. onClose();
  22. }
  23. }}
  24. >
  25. <slot />
  26. <div slot="content">
  27. <DropdownMenu.Content
  28. class="w-full max-w-[150px] rounded-lg px-1 py-1.5 border border-gray-300/30 dark:border-gray-700/50 z-50 bg-white dark:bg-gray-850 dark:text-white shadow"
  29. sideOffset={8}
  30. side="bottom"
  31. align="end"
  32. transition={flyAndScale}
  33. >
  34. <DropdownMenu.Item
  35. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer"
  36. on:click={async () => {
  37. await showSettings.set(!$showSettings);
  38. }}
  39. >
  40. <svg
  41. xmlns="http://www.w3.org/2000/svg"
  42. fill="none"
  43. viewBox="0 0 24 24"
  44. stroke-width="1.5"
  45. stroke="currentColor"
  46. class="w-5 h-5"
  47. >
  48. <path
  49. stroke-linecap="round"
  50. stroke-linejoin="round"
  51. d="M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.325.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.241-.438.613-.43.992a7.723 7.723 0 0 1 0 .255c-.008.378.137.75.43.991l1.004.827c.424.35.534.955.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.47 6.47 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.281c-.09.543-.56.94-1.11.94h-2.594c-.55 0-1.019-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.991a6.932 6.932 0 0 1 0-.255c.007-.38-.138-.751-.43-.992l-1.004-.827a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.086.22-.128.332-.183.582-.495.644-.869l.214-1.28Z"
  52. />
  53. <path
  54. stroke-linecap="round"
  55. stroke-linejoin="round"
  56. d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
  57. />
  58. </svg>
  59. <div class="flex items-center">Settings</div>
  60. </DropdownMenu.Item>
  61. {#if shareEnabled}
  62. <DropdownMenu.Item
  63. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer"
  64. on:click={() => {
  65. shareHandler();
  66. }}
  67. >
  68. <svg
  69. xmlns="http://www.w3.org/2000/svg"
  70. viewBox="0 0 24 24"
  71. fill="currentColor"
  72. class="size-4"
  73. >
  74. <path
  75. fill-rule="evenodd"
  76. d="M15.75 4.5a3 3 0 1 1 .825 2.066l-8.421 4.679a3.002 3.002 0 0 1 0 1.51l8.421 4.679a3 3 0 1 1-.729 1.31l-8.421-4.678a3 3 0 1 1 0-4.132l8.421-4.679a3 3 0 0 1-.096-.755Z"
  77. clip-rule="evenodd"
  78. />
  79. </svg>
  80. <div class="flex items-center">Share</div>
  81. </DropdownMenu.Item>
  82. <hr class="border-gray-100 dark:border-gray-800 my-1" />
  83. <div class="flex p-1">
  84. <Tags {tags} {deleteTag} {addTag} />
  85. </div>
  86. <!-- <DropdownMenu.Item
  87. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer"
  88. on:click={() => {
  89. tagHandler();
  90. }}
  91. >
  92. <svg
  93. xmlns="http://www.w3.org/2000/svg"
  94. fill="none"
  95. viewBox="0 0 24 24"
  96. stroke-width="2"
  97. stroke="currentColor"
  98. class="size-4"
  99. >
  100. <path
  101. stroke-linecap="round"
  102. stroke-linejoin="round"
  103. d="M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 0 0 5.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 0 0 9.568 3Z"
  104. />
  105. <path stroke-linecap="round" stroke-linejoin="round" d="M6 6h.008v.008H6V6Z" />
  106. </svg>
  107. <div class="flex items-center">Tag</div>
  108. </DropdownMenu.Item> -->
  109. {/if}
  110. </DropdownMenu.Content>
  111. </div>
  112. </Dropdown>