lookbook 0.9.3 → 1.0.0.beta.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (207) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +43 -867
  3. data/app/assets/lookbook/css/lookbook.css +55 -0
  4. data/app/assets/lookbook/css/themes/blue.css +42 -0
  5. data/app/assets/lookbook/css/themes/indigo.css +42 -0
  6. data/app/assets/lookbook/css/themes/zinc.css +42 -0
  7. data/app/assets/lookbook/css/{tooltip_theme.css → tooltip.css} +14 -8
  8. data/app/assets/lookbook/js/app.js +64 -63
  9. data/app/assets/lookbook/js/components/clipboard.js +47 -0
  10. data/app/assets/lookbook/js/components/tooltip.js +30 -0
  11. data/app/assets/lookbook/js/config.js +7 -4
  12. data/app/assets/lookbook/js/helpers/build.js +22 -0
  13. data/app/assets/lookbook/js/helpers/dom.js +45 -0
  14. data/app/assets/lookbook/js/helpers/layout.js +21 -0
  15. data/app/assets/lookbook/js/helpers/request.js +16 -0
  16. data/app/assets/lookbook/js/helpers/string.js +11 -0
  17. data/app/assets/lookbook/js/lib/socket.js +4 -3
  18. data/app/assets/lookbook/js/lib/tippy.js +8 -0
  19. data/app/assets/lookbook/js/lookbook.js +61 -0
  20. data/app/assets/lookbook/js/plugins/logger.js +39 -0
  21. data/app/assets/lookbook/js/stores/filter.js +2 -2
  22. data/app/assets/lookbook/js/stores/inspector.js +22 -16
  23. data/app/assets/lookbook/js/stores/layout.js +101 -5
  24. data/app/assets/lookbook/js/stores/nav.js +17 -16
  25. data/app/assets/lookbook/js/stores/pages.js +4 -2
  26. data/app/assets/lookbook/js/stores/settings.js +7 -0
  27. data/app/assets/lookbook/js/stores/workbench.js +29 -0
  28. data/app/components/lookbook/button/component.html.erb +28 -0
  29. data/app/components/lookbook/button/component.js +55 -0
  30. data/app/components/lookbook/button/component.rb +39 -0
  31. data/app/components/lookbook/button_group/component.html.erb +3 -0
  32. data/app/components/lookbook/button_group/component.rb +18 -0
  33. data/app/components/lookbook/code/component.css +57 -0
  34. data/app/components/lookbook/code/component.html.erb +10 -0
  35. data/app/components/lookbook/code/component.js +3 -0
  36. data/app/components/lookbook/code/component.rb +56 -0
  37. data/app/components/lookbook/code/highlight_github_light.css +217 -0
  38. data/app/components/lookbook/component.rb +41 -0
  39. data/app/components/lookbook/copy_button/component.html.erb +11 -0
  40. data/app/components/lookbook/copy_button/component.js +16 -0
  41. data/app/components/lookbook/copy_button/component.rb +23 -0
  42. data/app/components/lookbook/dimensions_display/component.html.erb +10 -0
  43. data/app/components/lookbook/dimensions_display/component.js +30 -0
  44. data/app/components/lookbook/dimensions_display/component.rb +18 -0
  45. data/app/components/lookbook/embed/component.html.erb +50 -0
  46. data/app/components/lookbook/embed/component.js +39 -0
  47. data/app/components/lookbook/embed/component.rb +22 -0
  48. data/app/components/lookbook/filter/component.html.erb +17 -0
  49. data/app/components/lookbook/filter/component.js +21 -0
  50. data/app/components/lookbook/filter/component.rb +15 -0
  51. data/app/components/lookbook/header/component.html.erb +79 -0
  52. data/app/components/lookbook/header/component.rb +9 -0
  53. data/app/components/lookbook/icon/component.css +11 -0
  54. data/app/components/lookbook/icon/component.html.erb +5 -0
  55. data/app/components/lookbook/icon/component.js +5 -0
  56. data/app/components/lookbook/icon/component.rb +23 -0
  57. data/app/components/lookbook/nav/component.html.erb +33 -0
  58. data/app/components/lookbook/nav/component.js +52 -0
  59. data/app/components/lookbook/nav/component.rb +37 -0
  60. data/app/components/lookbook/nav/item/component.html.erb +23 -0
  61. data/app/components/lookbook/nav/item/component.js +66 -0
  62. data/app/components/lookbook/nav/item/component.rb +84 -0
  63. data/app/components/lookbook/params_editor/component.html.erb +3 -0
  64. data/app/components/lookbook/params_editor/component.js +12 -0
  65. data/app/components/lookbook/params_editor/component.rb +11 -0
  66. data/app/components/lookbook/params_editor/field/component.html.erb +50 -0
  67. data/app/components/lookbook/params_editor/field/component.js +36 -0
  68. data/app/components/lookbook/params_editor/field/component.rb +41 -0
  69. data/app/components/lookbook/prose/component.css +12 -0
  70. data/app/components/lookbook/prose/component.html.erb +3 -0
  71. data/app/components/lookbook/prose/component.rb +26 -0
  72. data/app/components/lookbook/split_layout/component.html.erb +13 -0
  73. data/app/components/lookbook/split_layout/component.js +151 -0
  74. data/app/components/lookbook/split_layout/component.rb +11 -0
  75. data/app/components/lookbook/tabbed_content/component.html.erb +5 -0
  76. data/app/components/lookbook/tabbed_content/component.js +21 -0
  77. data/app/components/lookbook/tabbed_content/component.rb +20 -0
  78. data/app/components/lookbook/tabbed_content/section/component.html.erb +8 -0
  79. data/app/components/lookbook/tabbed_content/section/component.rb +9 -0
  80. data/app/components/lookbook/tabs/component.css +8 -0
  81. data/app/components/lookbook/tabs/component.html.erb +14 -0
  82. data/app/components/lookbook/tabs/component.js +107 -0
  83. data/app/components/lookbook/tabs/component.rb +30 -0
  84. data/app/components/lookbook/tabs/dropdown_tab/component.html.erb +14 -0
  85. data/app/components/lookbook/tabs/dropdown_tab/component.rb +16 -0
  86. data/app/components/lookbook/tabs/tab/component.html.erb +18 -0
  87. data/app/components/lookbook/tabs/tab/component.rb +16 -0
  88. data/app/components/lookbook/tag_component.rb +29 -0
  89. data/app/components/lookbook/toolbar/component.css +16 -0
  90. data/app/components/lookbook/toolbar/component.html.erb +5 -0
  91. data/app/components/lookbook/toolbar/component.rb +26 -0
  92. data/app/components/lookbook/viewport/component.css +11 -0
  93. data/app/components/lookbook/viewport/component.html.erb +57 -0
  94. data/app/{assets/lookbook/js/components/preview-window.js → components/lookbook/viewport/component.js} +57 -14
  95. data/app/components/lookbook/viewport/component.rb +21 -0
  96. data/app/controllers/lookbook/application_controller.rb +16 -5
  97. data/app/controllers/lookbook/pages_controller.rb +18 -10
  98. data/app/controllers/lookbook/previews_controller.rb +62 -25
  99. data/app/helpers/lookbook/application_helper.rb +7 -3
  100. data/app/helpers/lookbook/component_helper.rb +22 -10
  101. data/app/helpers/lookbook/output_helper.rb +8 -4
  102. data/app/helpers/lookbook/page_helper.rb +13 -21
  103. data/app/views/layouts/lookbook/application.html.erb +76 -28
  104. data/app/views/layouts/lookbook/inspector.html.erb +7 -0
  105. data/app/views/layouts/lookbook/page.html.erb +53 -0
  106. data/app/views/layouts/lookbook/shell.html.erb +64 -0
  107. data/app/views/layouts/lookbook/skeleton.html.erb +27 -10
  108. data/app/views/layouts/lookbook/standalone.html.erb +5 -0
  109. data/app/views/lookbook/404.html.erb +15 -0
  110. data/app/views/lookbook/error.html.erb +34 -34
  111. data/app/views/lookbook/index.html.erb +11 -6
  112. data/app/views/lookbook/pages/show.html.erb +29 -93
  113. data/app/views/{layouts/lookbook → lookbook}/preview.html.erb +3 -5
  114. data/app/views/lookbook/previews/panels/_notes.html.erb +19 -25
  115. data/app/views/lookbook/previews/panels/_output.html.erb +7 -18
  116. data/app/views/lookbook/previews/panels/_params.html.erb +13 -15
  117. data/app/views/lookbook/previews/panels/_preview.html.erb +6 -52
  118. data/app/views/lookbook/previews/panels/_source.html.erb +7 -16
  119. data/app/views/lookbook/previews/show.html.erb +130 -24
  120. data/config/routes.rb +7 -7
  121. data/lib/lookbook/code_formatter.rb +37 -13
  122. data/lib/lookbook/collection.rb +19 -16
  123. data/lib/lookbook/config.rb +125 -0
  124. data/lib/lookbook/engine.rb +69 -67
  125. data/lib/lookbook/entity.rb +47 -0
  126. data/lib/lookbook/error.rb +1 -2
  127. data/lib/lookbook/features.rb +1 -1
  128. data/lib/lookbook/markdown.rb +3 -5
  129. data/lib/lookbook/page.rb +26 -43
  130. data/lib/lookbook/page_collection.rb +8 -0
  131. data/lib/lookbook/params.rb +14 -3
  132. data/lib/lookbook/parser.rb +4 -0
  133. data/lib/lookbook/preview.rb +16 -7
  134. data/lib/lookbook/preview_collection.rb +8 -0
  135. data/lib/lookbook/preview_controller.rb +6 -2
  136. data/lib/lookbook/preview_example.rb +5 -6
  137. data/lib/lookbook/preview_group.rb +4 -9
  138. data/lib/lookbook/{code_inspector.rb → source_inspector.rb} +2 -2
  139. data/lib/lookbook/theme.rb +22 -0
  140. data/lib/lookbook/utils.rb +11 -3
  141. data/lib/lookbook/version.rb +1 -1
  142. data/lib/lookbook.rb +4 -1
  143. data/lib/tasks/lookbook_tasks.rake +13 -1
  144. data/public/lookbook-assets/css/app.css +2340 -1
  145. data/public/lookbook-assets/css/app.css.map +11 -1
  146. data/public/lookbook-assets/css/lookbook.css +3040 -0
  147. data/public/lookbook-assets/css/lookbook.css.map +1 -0
  148. data/public/lookbook-assets/css/themes/blue.css +44 -0
  149. data/public/lookbook-assets/css/themes/blue.css.map +1 -0
  150. data/public/lookbook-assets/css/themes/indigo.css +44 -0
  151. data/public/lookbook-assets/css/themes/indigo.css.map +1 -0
  152. data/public/lookbook-assets/css/themes/zinc.css +44 -0
  153. data/public/lookbook-assets/css/themes/zinc.css.map +1 -0
  154. data/public/lookbook-assets/js/app.js +10861 -1
  155. data/public/lookbook-assets/js/app.js.map +2571 -1
  156. data/public/lookbook-assets/js/embed.js +895 -1
  157. data/public/lookbook-assets/js/embed.js.map +1 -1
  158. data/public/lookbook-assets/js/lookbook.js +13529 -0
  159. data/public/lookbook-assets/js/lookbook.js.map +1 -0
  160. metadata +128 -116
  161. data/app/assets/lookbook/css/app.css +0 -161
  162. data/app/assets/lookbook/css/code_theme.css +0 -214
  163. data/app/assets/lookbook/js/components/app.js +0 -55
  164. data/app/assets/lookbook/js/components/code.js +0 -5
  165. data/app/assets/lookbook/js/components/copy.js +0 -20
  166. data/app/assets/lookbook/js/components/embed.js +0 -89
  167. data/app/assets/lookbook/js/components/filter.js +0 -35
  168. data/app/assets/lookbook/js/components/inspector.js +0 -66
  169. data/app/assets/lookbook/js/components/nav-group.js +0 -47
  170. data/app/assets/lookbook/js/components/nav-item.js +0 -29
  171. data/app/assets/lookbook/js/components/nav.js +0 -28
  172. data/app/assets/lookbook/js/components/page-tabs.js +0 -9
  173. data/app/assets/lookbook/js/components/page.js +0 -25
  174. data/app/assets/lookbook/js/components/param.js +0 -34
  175. data/app/assets/lookbook/js/components/sidebar.js +0 -18
  176. data/app/assets/lookbook/js/components/sizes.js +0 -16
  177. data/app/assets/lookbook/js/components/splitter.js +0 -25
  178. data/app/assets/lookbook/js/components/tabs.js +0 -52
  179. data/app/assets/lookbook/js/lib/split.js +0 -15
  180. data/app/assets/lookbook/js/stores/sidebar.js +0 -26
  181. data/app/views/layouts/lookbook/basic.html.erb +0 -7
  182. data/app/views/lookbook/components/_branding.html.erb +0 -8
  183. data/app/views/lookbook/components/_code.html.erb +0 -17
  184. data/app/views/lookbook/components/_copy_button.html.erb +0 -11
  185. data/app/views/lookbook/components/_drawer.html.erb +0 -112
  186. data/app/views/lookbook/components/_embed.html.erb +0 -39
  187. data/app/views/lookbook/components/_errors.html.erb +0 -13
  188. data/app/views/lookbook/components/_filter.html.erb +0 -18
  189. data/app/views/lookbook/components/_header.html.erb +0 -6
  190. data/app/views/lookbook/components/_icon.html.erb +0 -5
  191. data/app/views/lookbook/components/_nav.html.erb +0 -16
  192. data/app/views/lookbook/components/_nav_collection.html.erb +0 -5
  193. data/app/views/lookbook/components/_nav_group.html.erb +0 -14
  194. data/app/views/lookbook/components/_nav_item.html.erb +0 -24
  195. data/app/views/lookbook/components/_nav_page.html.erb +0 -22
  196. data/app/views/lookbook/components/_nav_preview.html.erb +0 -13
  197. data/app/views/lookbook/components/_not_found.html.erb +0 -11
  198. data/app/views/lookbook/components/_param.html.erb +0 -21
  199. data/app/views/lookbook/components/_preview.html.erb +0 -77
  200. data/app/views/lookbook/components/_sidebar.html.erb +0 -69
  201. data/app/views/lookbook/pages/not_found.html.erb +0 -15
  202. data/app/views/lookbook/previews/error.html.erb +0 -1
  203. data/app/views/lookbook/previews/inputs/_select.html.erb +0 -7
  204. data/app/views/lookbook/previews/inputs/_text.html.erb +0 -8
  205. data/app/views/lookbook/previews/inputs/_textarea.html.erb +0 -8
  206. data/app/views/lookbook/previews/inputs/_toggle.html.erb +0 -13
  207. data/app/views/lookbook/previews/not_found.html.erb +0 -23
@@ -1,25 +0,0 @@
1
- import Split from "split-grid";
2
-
3
- export default function splitter(direction, props = {}) {
4
- return {
5
- splits: [],
6
- init() {
7
- const type = `${direction === "vertical" ? "column" : "row"}Gutters`;
8
- const element = this.$el;
9
- Split({
10
- [type]: [{ track: 1, element }],
11
- minSize: props.minSize || 0,
12
- writeStyle() {},
13
- onDrag: (dir, track, style) => {
14
- this.splits = style.split(" ").map((num) => parseFloat(num, 10));
15
- },
16
- onDragStart: () => {
17
- this.$store.layout.reflowing = true;
18
- },
19
- onDragEnd: () => {
20
- this.$store.layout.reflowing = false;
21
- },
22
- });
23
- },
24
- };
25
- }
@@ -1,52 +0,0 @@
1
- import tippy from "tippy.js";
2
-
3
- export default function tabs() {
4
- return {
5
- width: 0,
6
- tabsWidth: 0,
7
- init() {
8
- const ro = new ResizeObserver((entries) => {
9
- this.width = Math.round(entries[0].contentRect.width);
10
- });
11
- ro.observe(this.$refs.tabs);
12
- this.dropdown = tippy(this.$refs.toggle, {
13
- allowHTML: true,
14
- interactive: true,
15
- trigger: "click",
16
- placement: "bottom-end",
17
- theme: "menu",
18
- content: this.$refs.dropdown,
19
- });
20
- },
21
- get tabs() {
22
- return Array.from(
23
- this.$refs.tabs ? this.$refs.tabs.querySelectorAll(":scope > a") : []
24
- );
25
- },
26
- get visibleTabCount() {
27
- let cumulativeWidth = 0;
28
- for (let i = 0; i < this.tabs.length; i++) {
29
- const el = this.tabs[i];
30
- const margin = parseInt(
31
- window
32
- .getComputedStyle(el)
33
- .getPropertyValue("margin-left")
34
- .replace("px", ""),
35
- 10
36
- );
37
- cumulativeWidth += el.clientWidth + margin;
38
- if (cumulativeWidth > this.width) {
39
- this.tabsWidth = cumulativeWidth - el.clientWidth;
40
- return i;
41
- }
42
- }
43
- return this.tabs.length;
44
- },
45
- get hiddenTabs() {
46
- return this.tabs.slice(this.visibleTabCount, -1);
47
- },
48
- hideDropdown() {
49
- this.dropdown.hide();
50
- },
51
- };
52
- }
@@ -1,15 +0,0 @@
1
- import Split from "split-grid";
2
-
3
- export default function (element, props) {
4
- Split({
5
- [`${props.direction === "vertical" ? "row" : "column"}Gutters`]: [
6
- { track: 1, element },
7
- ],
8
- minSize: props.minSize,
9
- writeStyle() {},
10
- onDrag(dir, track, style) {
11
- const splits = style.split(" ").map((num) => parseInt(num));
12
- props.onDrag(splits);
13
- },
14
- });
15
- }
@@ -1,26 +0,0 @@
1
- import config from "../config";
2
-
3
- export default function createSidebarStore(Alpine) {
4
- const { defaultWidth, minWidth, maxWidth } = config.sidebar;
5
- return {
6
- openDesktop: Alpine.$persist(true).as("sidebar-open-desktop"),
7
- openMobile: Alpine.$persist(false).as("sidebar-open-mobile"),
8
- width: Alpine.$persist(defaultWidth).as("sidebar-width"),
9
- panelSplits: Alpine.$persist([1.0, 1.0]).as(`sidebar-panel-splits`),
10
- minWidth,
11
- maxWidth,
12
- get open() {
13
- return Alpine.store("sidebar")[
14
- Alpine.store("layout").desktop ? "openDesktop" : "openMobile"
15
- ];
16
- },
17
- toggle() {
18
- const sidebar = Alpine.store("sidebar");
19
- if (Alpine.store("layout").desktop) {
20
- sidebar.openDesktop = !sidebar.openDesktop;
21
- } else {
22
- sidebar.openMobile = !sidebar.openMobile;
23
- }
24
- },
25
- };
26
- }
@@ -1,7 +0,0 @@
1
- <%= content_for :body do %>
2
- <div id="app" x-data="app" @popstate.window="update">
3
- <%= yield %>
4
- </div>
5
- <% end %>
6
-
7
- <%= render template: "layouts/lookbook/skeleton" %>
@@ -1,8 +0,0 @@
1
- <% if config.project_name %>
2
- <a
3
- href="<%= landing_path %>"
4
- class="text-xs truncate uppercase font-black tracking-wide pr-2"
5
- @click="setLocation">
6
- <%= config.project_name %>
7
- </a>
8
- <% end %>
@@ -1,17 +0,0 @@
1
- <%
2
- language ||= "html"
3
- wrap ||= nil;
4
- %>
5
- <% code ||= capture do %><%= yield %><% end %>
6
- <% output = highlight(code, language, {
7
- strip: defined?(strip) ? strip : true,
8
- line_numbers: line_numbers ||= false,
9
- highlight_lines: highlight_lines ||= [],
10
- start_line: start_line ||= 0
11
- }) %>
12
- <div class="code not-prose <%= "numbered" if line_numbers %> <%= classes ||= "" %> <%= "focussed" if highlight_lines.any? %>"
13
- x-data="code"
14
- :class="{'wrapped': wrap}"
15
- <% if wrap.present? %>x-effect="wrap = <%= wrap %>"<% end %>>
16
- <pre><code class="highlight"><%= output %></code></pre>
17
- </div>
@@ -1,11 +0,0 @@
1
- <%= tag.button disabled: disabled ||= false,
2
- "x-data": "copy",
3
- "x-tooltip.theme.lookbook": "done ? 'copied!' : '#{tooltip ||= "copy to clipboard"}'",
4
- "@click": "save",
5
- ":class": "{ '!text-green-600 hover:text-green-600': done, 'hover:text-indigo-500': !done}",
6
- "x-cloak": true,
7
- class: "text-gray-400 transition",
8
- data: { target: target },
9
- **(attrs ||= {}) do %>
10
- <%= icon "${done ? 'check' : '#{icon ||= "clipboard"}'}", size: 4 %>
11
- <% end %>
@@ -1,112 +0,0 @@
1
- <div id="drawer" class="bg-white w-full h-full flex flex-col min-w-0">
2
- <div class="pl-4 border-b border-gray-300 select-none flex-none" x-show="!drawerHidden">
3
- <div class="flex cursor-auto relative">
4
- <div
5
- id="inspector-tabs-<%= example.id %>"
6
- x-data="tabs"
7
- class="min-w-0 -mb-px"
8
- x-effect="$store.inspector.drawer.visibleTabCount = visibleTabCount"
9
- >
10
- <nav x-ref="tabs" class="flex h-10 space-x-8 flex-grow pr-8">
11
- <% panels.each.with_index(1) do |(key,props),i| %>
12
- <a
13
- id="inspector-tab-<%= key %>-<%= example.id %>"
14
- href="#inspector-panel-<%= key %>"
15
- class="whitespace-nowrap pt-2.5 pb-1.5 px-1 border-b-2 cursor-pointer <%= "!text-gray-300" if props[:disabled] %>"
16
- :class="{
17
- 'border-indigo-400': isActiveDrawerPanel('<%= key %>'),
18
- 'border-transparent text-gray-500 hover:text-gray-700': !isActiveDrawerPanel('<%= key %>'),
19
- 'invisible': (<%= i %> > visibleTabCount)
20
- }"
21
- @click.stop.prevent="switchDrawerPanel('<%= key %>')"
22
- <% if props[:hotkey] %>data-hotkey="<%= props[:hotkey] %>"<% end %>
23
- >
24
- <%== props[:label] %>
25
- </a>
26
- <% end %>
27
- <div
28
- x-ref="toggle"
29
- x-show="visibleTabCount !== tabs.length"
30
- class="flex-none absolute top-[9px]"
31
- :style="`left: ${tabsWidth - 48}px`"
32
- >
33
- <button class="py-1 px-2 text-gray-500 hover:text-indigo-800">
34
- <%= icon "chevrons-right", size: 3.5 %>
35
- </button>
36
- </div>
37
- </nav>
38
- <nav class="hidden">
39
- <div x-ref="dropdown" class="min-w-[120px]">
40
- <% panels.each.with_index(1) do |(key,props),i| %>
41
- <template id="inspector-dropdown-tab-<%= key %>-<%= example.id %>" x-if="<%= i %> > $store.inspector.drawer.visibleTabCount">
42
- <div :class="{'border-t border-gray-300': (<%= i %> > $store.inspector.drawer.visibleTabCount + 1)}">
43
- <a
44
- href="#inspector-panel-<%= key %>"
45
- class="block whitespace-nowrap py-2 px-4 border-l-2 cursor-pointer <%= "!text-gray-300" if props[:disabled] %>"
46
- :class="{
47
- 'border-indigo-400': $store.inspector.drawer.panel === '<%= key %>',
48
- 'border-transparent text-gray-500 hover:text-gray-700': $store.inspector.drawer.panel !== '<%= key %>',
49
- }"
50
- @click.stop.prevent=" hideDropdown(); switchDrawerPanel('<%= key %>')"
51
- >
52
- <%== props[:label] %>
53
- </a>
54
- </div>
55
- </template>
56
- <% end %>
57
- </div>
58
- </nav>
59
- </div>
60
- <div class="flex items-center bg-white border-l border-gray-200 ml-auto space-x-3 px-3">
61
- <div>
62
- <% panels.each do |key, props| %>
63
- <div
64
- ref="<%= "inspector-panel-#{example.id}-#{key}-copy" %>"
65
- class="flex items-center"
66
- :class="{'pointer-events-none opacity-30': <%= !props[:copy].present? %>}"
67
- x-show="isActiveDrawerPanel('<%= key %>')"
68
- x-cloak>
69
- <%= component "copy-button",
70
- target: "inspector-panel-#{example.id}-#{key}-clipboard",
71
- disabled: !props[:copy].present? %>
72
- </div>
73
- <% end %>
74
- </div>
75
- <button
76
- x-tooltip.theme.lookbook="`${horizontal ? 'pin drawer on right' : 'pin drawer on bottom'}`"
77
- @click="toggleOrientation"
78
- :class="{'pointer-events-none opacity-30': !canBeVertical}"
79
- >
80
- <%= icon "${horizontal ? 'sidebar' : 'credit-card'}",
81
- size: 4,
82
- class: "scale-[-1] text-gray-400 hover:text-indigo-800" %>
83
- </button>
84
- <button
85
- x-tooltip.theme.lookbook="`hide drawer`"
86
- @click="toggleDrawer"
87
- >
88
- <%= icon "x-circle",
89
- size: 4,
90
- class: "text-gray-400 hover:text-indigo-800" %>
91
- </button>
92
- </div>
93
- </div>
94
- </div>
95
- <div class="bg-white relative flex-grow">
96
- <% panels.each do |key, props| %>
97
- <div
98
- class="h-full w-full absolute inset-0"
99
- x-show="isActiveDrawerPanel('<%= key %>')"
100
- x-cloak
101
- >
102
- <div id="inspector-panel-<%= example.id %>-<%= key %>" class="h-full">
103
- <%= render props[:template],
104
- key: key,
105
- examples: examples,
106
- clipboard_id: "inspector-panel-#{example.id}-#{key}-clipboard",
107
- **props %>
108
- </div>
109
- </div>
110
- <% end %>
111
- </div>
112
- </div>
@@ -1,39 +0,0 @@
1
- <div id="<%= id %>" x-data="embed" class="not-prose embed border border-gray-300 rounded-md overflow-hidden" @page:morphed.window="recaclulateIframeHeight" @tab-switch.window="recaclulateIframeHeight">
2
- <header class="px-3 py-2 flex items-center text-xs text-gray-400 bg-white border-b border-gray-300">
3
- <div class="text-gray-500">
4
- <%= example.preview.label %> (<%= example.label %>)
5
- </div>
6
- <div class="ml-auto flex items-center space-x-3">
7
- <a href="<%= lookbook_inspect_path(example.path, params) %>" class="" x-tooltip.theme.lookbook="`View in Inspector`">
8
- <%= icon "eye", size: 4, class: "hover:text-indigo-800" %>
9
- </a>
10
- <a
11
- href="<%= lookbook_preview_path(example.path, params) %>"
12
- target="_blank"
13
- class="-top-px relative"
14
- x-tooltip.theme.lookbook="`Open in new window`">
15
- <%= icon "external-link", size: 4, class: "hover:text-indigo-800" %>
16
- </a>
17
- </div>
18
- </header>
19
- <div class="checked-bg overflow-hidden">
20
- <div x-ref="resizer" class="grid bg-white relative grid-cols-[1fr_17px] w-full" :style="`max-width: ${maxWidth}; height: ${height ? `${height}px` : 'auto'}`">
21
- <iframe seamless
22
- id="<%= id %>-iframe"
23
- x-ref="iframe"
24
- src="<%= lookbook_preview_path(example.path, params.merge(lookbook_embed: true)) %>"
25
- class="min-w-full h-full w-px"
26
- :class="{ 'pointer-events-none': reflowing }"
27
- @load="recaclulateIframeHeight">
28
- </iframe>
29
- <div
30
- class="resize-handle border-r border-l cursor-[col-resize] relative -right-px"
31
- @pointerdown="onResizeWidthStart"
32
- @dblclick="toggleFullWidth">
33
- <svg class="h-4 w-4 pointer-events-none" fill="currentColor" viewBox="0 0 24 24">
34
- <path d="M8 5h2v14H8zM14 5h2v14h-2z"></path>
35
- </svg>
36
- </div>
37
- </div>
38
- </div>
39
- </div>
@@ -1,13 +0,0 @@
1
- <div class="bg-red-50 w-full overflow-auto h-full">
2
- <ul class="text-sm divide-y divide-red-200">
3
- <% errors.each do |error| %>
4
- <% error = error.is_a?(Lookbook::Error) ? error : Lookbook::Error.new(error) %>
5
- <li class="px-4 py-3">
6
- <h4 class="break-all leading-tight">
7
- <%= error.file_name %><%= ":#{error.line_number}" if error.line_number %>
8
- </h4>
9
- <pre class="text-red-800 text-xs mt-2 whitespace-pre-wrap opacity-80 font-mono"><%= error.message %></pre>
10
- </li>
11
- <% end %>
12
- </ul>
13
- </div>
@@ -1,18 +0,0 @@
1
- <div x-data="filter" class="bg-white rounded-md border border-gray-200 " :class="{'!border-gray-300': focussed}">
2
- <input
3
- type="text"
4
- class="text-sm pl-3 pr-8 w-full border-0 bg-transparent focus:outline-none outline-none focus:ring-0 text-gray-500 placeholder:italic placeholder:text-gray-500"
5
- placeholder="Filter by name&hellip;"
6
- x-ref="input"
7
- x-model="$store.filter.raw"
8
- x-effect="if (!$store.layout.desktop && $store.sidebar.open) focus()"
9
- @keyup.stop="checkEsc"
10
- @keyup.f.document="focus"
11
- @filter:clear.document="clear"
12
- @filter:focus.document="focus"
13
- @focus.stop="focussed = true"
14
- @blur.stop="focussed = false">
15
- <button class="text-gray-400 hover:text-indigo-500 focus:ring-0 focus:outline-none absolute top-1/2 right-5 -translate-y-1/2" @click="clear" :class="{hidden: !$store.filter.active}">
16
- <%= icon "x", size: 3, class: "hover:text-indigo-500" %>
17
- </button>
18
- </div>
@@ -1,6 +0,0 @@
1
- <header class="pl-4 w-full flex-none bg-white border-b border-gray-300 flex items-center h-10 select-none min-w-0">
2
- <button class="flex-none mr-6" x-show="!$store.sidebar.open" @click="$store.sidebar.toggle">
3
- <%= icon "menu", size: 4, class: "text-gray-400 hover:text-indigo-500 transition" %>
4
- </button>
5
- <%= yield %>
6
- </header>
@@ -1,5 +0,0 @@
1
- <i class="transition block flex-none leading-none w-<%= size %> h-<%= size %> <%= classes ||= "" %>">
2
- <svg class="feather w-full h-full">
3
- <use :href="`/lookbook-assets/feather-sprite.svg#<%= name.to_s %>`" x-cloak />
4
- </svg>
5
- </i>
@@ -1,16 +0,0 @@
1
- <nav id="nav-<%= items.class.describe_as %>" x-data="nav(<%= filterable %>)">
2
- <% if items.any? %>
3
- <ul x-ref="items" id="nav-<%= items.class.describe_as %>-items">
4
- <% items.each do |item| %>
5
- <%= component "nav_#{item.type}", node: item %>
6
- <% end %>
7
- </ul>
8
- <div class="p-4 text-center" x-show="empty" x-cloak>
9
- <em class="text-gray-400 italic">No matching <%= items.class.describe_as %> found.</em>
10
- </div>
11
- <% else %>
12
- <div class="p-4 text-center">
13
- <h4 class="text-gray-400 italic">No <%= items.class.describe_as %> found.</h4>
14
- </div>
15
- <% end %>
16
- </nav>
@@ -1,5 +0,0 @@
1
- <%= component "nav_group", node: node do %>
2
- <% node.items.each do |item| %>
3
- <%= component "nav_#{item.type}", node: item %>
4
- <% end %>
5
- <% end %>
@@ -1,14 +0,0 @@
1
- <li key="nav-group-<%= node.id %>-item" class="<%= classes %>">
2
- <div id="nav-group-<%= node.id %>" x-data="navGroup" :class="{hidden}" x-cloak>
3
- <div @click="toggle" class="nav-toggle py-[5px]" style="padding-left: calc((<%= node.hierarchy_depth - 1 %> * 12px) + 0.5rem);">
4
- <%= icon "${open ? 'chevron-down' : 'chevron-right'}", size: 3, class: "mr-1 text-gray-500" %>
5
- <%= icon node.type == :preview ? "layers" : "folder", size: 3.5, class: "mr-1.5 text-indigo-500" %>
6
- <div class="nav-label <%= "font-bold" if node.type == :preview %>" <% if node.type == :preview %> @click.stop="toggle(); navigateToFirstChild()"<% end %>>
7
- <%= node.label %>
8
- </div>
9
- </div>
10
- <ul x-ref="items" x-show="open" x-cloak>
11
- <%= yield %>
12
- </ul>
13
- </div>
14
- </li>
@@ -1,24 +0,0 @@
1
- <%
2
- path = lookbook_inspect_path(item.lookup_path)
3
- display ||= :item
4
- label ||= item.label
5
- item_icon = display == :node ? "layers" : "eye"
6
- %>
7
- <li key="nav-item-<%= item.id %>-item">
8
- <div id="nav-item-<%= item.id %>" x-data="navItem(<%= item.matchers.to_json %>)" :class="{hidden}" data-path="<%= path %>" x-cloak>
9
- <a href="<%= path %>"
10
- class="nav-link pr-3 py-[5px] flex items-center w-full group transition hover:bg-gray-200 hover:bg-opacity-50"
11
- style="padding-left: calc((<%= depth - 1 %> * 12px) + 0.5rem);"
12
- x-ref="link"
13
- :class="{'!bg-indigo-100':active}"
14
- @click.stop.prevent="navigate"
15
- >
16
- <div class="relative w-3.5 h-3.5 mr-1.5 <%= "ml-[3px]" if display == :node %> " :class="active ? 'text-gray-900' : 'text-indigo-500'">
17
- <%= icon item_icon, size: 3.5, class: "group-hover:text-indigo-800" %>
18
- </div>
19
- <div class="truncate whitespace-nowrap select-none <%= "font-bold" if display == :node %>">
20
- <%= label %>
21
- </div>
22
- </a>
23
- </div>
24
- </li>
@@ -1,22 +0,0 @@
1
- <%
2
- path = lookbook_page_path(node.lookup_path)
3
- depth = node.hierarchy_depth + 1
4
- %>
5
- <li key="nav-page-<%= node.id %>-item">
6
- <div id="nav-page-<%= node.id %>" x-data="navItem(<%= node.matchers.to_json %>)" :class="{hidden}" data-path="<%= path %>" x-cloak>
7
- <a href="<%= path %>"
8
- class="nav-link pr-3 py-[5px] flex items-center w-full group transition hover:bg-gray-200 hover:bg-opacity-50"
9
- style="padding-left: calc((<%= depth - 1 %> * 12px) + 0.5rem);"
10
- x-ref="link"
11
- :class="{'!bg-indigo-100':active}"
12
- @click.stop.prevent="navigate"
13
- >
14
- <div class="relative w-3.5 h-3.5 mr-1.5 ml-[3px]" :class="active ? 'text-gray-900' : 'text-indigo-500'">
15
- <%= icon "file", size: 3.5, class: "group-hover:text-indigo-800" %>
16
- </div>
17
- <div class="truncate whitespace-nowrap select-none">
18
- <%= node.label %>
19
- </div>
20
- </a>
21
- </div>
22
- </li>
@@ -1,13 +0,0 @@
1
- <% examples = node.examples.reject(&:hidden?) %>
2
- <% if examples.many? %>
3
- <%= component "nav_group", node: node, path: lookbook_inspect_path(examples.first.path) do %>
4
- <% examples.each do |example| %>
5
- <%= component "nav_item", item: example, depth: example.hierarchy_depth + 1 %>
6
- <% end %>
7
- <% end %>
8
- <% else %>
9
- <% if examples.any? %>
10
- <% example = examples.first %>
11
- <%= component "nav_item", item: example, depth: example.hierarchy_depth, label: node.label, display: :node %>
12
- <% end %>
13
- <% end %>
@@ -1,11 +0,0 @@
1
- <div class="bg-white flex flex-col items-center justify-center border-2 border-dashed border-gray-200 p-6 rounded-md not-prose">
2
- <div class="px-4 text-center">
3
- <%= icon "alert-triangle", size: 6, class: "text-red-300 mx-auto" %>
4
- <div class="mt-2 text-gray-700 max-w-xs">
5
- <h5 class="text-base"><%= title %></h5>
6
- <p class="mt-1 text-gray-400 text-sm">
7
- <%== text %>
8
- </p>
9
- </div>
10
- </div>
11
- </div>
@@ -1,21 +0,0 @@
1
- <%
2
- value = params.key?(param[:name]) ? params[param[:name]] : param[:default]
3
- %>
4
- <div
5
- ref="<%= @example.id %>-param-<%= param[:name] %>-input"
6
- class="px-4 py-3"
7
- >
8
- <div class="flex items-start max-w-[800px]">
9
- <div class="flex-none py-2" :style="`width: ${horizontal ? '200' : '120' }px`">
10
- <label for="param-<%= param[:name] %>" class="font-bold">
11
- <%= param[:name].titleize %>
12
- </label>
13
- </div>
14
- <div class="flex-grow">
15
- <%= render "lookbook/previews/inputs/#{param[:input]}",
16
- **param,
17
- value: value
18
- %>
19
- </div>
20
- </div>
21
- </div>
@@ -1,77 +0,0 @@
1
- <div id="preview" class="grid grid-rows-[40px_1fr]">
2
- <%= component "header" do %>
3
- <div
4
- id="preview-tabs-<%= @example.id %>" class="min-w-0 -mb-px">
5
- <nav class="flex h-10 space-x-8 flex-grow pr-8">
6
- <% panels.each do |key, props| %>
7
- <a
8
- id="preview-tab-<%= key %>-<%= @example.id %>"
9
- href="#preview-panel-<%= key %>"
10
- class="whitespace-nowrap pt-2.5 pb-1.5 px-1 border-b-2 cursor-pointer"
11
- :class="{
12
- 'border-indigo-400': isActivePreviewPanel('<%= key %>'),
13
- 'border-transparent text-gray-500 hover:text-gray-700': !isActivePreviewPanel('<%= key %>'),
14
- }"
15
- @click.stop.prevent="switchPreviewPanel('<%= key %>')"
16
- <% if props[:hotkey] %>data-hotkey="<%= props[:hotkey] %>"<% end %>
17
- >
18
- <%== props[:label] %>
19
- </a>
20
- <% end %>
21
- </nav>
22
- </div>
23
- <div class="flex items-stretch h-full ml-auto space-x-3">
24
- <div
25
- class="flex items-center text-xs font-mono text-gray-700 space-x-1 opacity-50 hover:opacity-100 transition"
26
- :class="{'opacity-100': $store.inspector.preview.resizing}"
27
- x-show="isActivePreviewPanel('preview')">
28
- <span x-text="`${preview.width}px`"></span>
29
- <span class="text-gray-500">x</span>
30
- <span x-text="`${preview.height}px`"></span>
31
- </div>
32
- <div class="flex items-center bg-white border-l border-gray-200 space-x-3 text-gray-400 divide-x divide-gray-300 px-3">
33
- <div class="flex items-center space-x-3">
34
- <% if feature_enabled? :pages %>
35
- <%= component "copy-button",
36
- icon: :code,
37
- target: "pages-embed-code",
38
- tooltip: "Copy page embed code" %>
39
- <div id="pages-embed-code" class="hidden">
40
- &lt;%= embed <%= @preview.preview_class %>, :<%= @example.name %>, params: <%= request.query_parameters.deep_symbolize_keys.to_s %> %&gt;
41
- </div>
42
- <% end %>
43
- <button
44
- x-tooltip.theme.lookbook="`Refresh preview`"
45
- @click.prevent.stop="refresh"
46
- data-hotkey="r">
47
- <%= icon "refresh-cw", size: 3.5, class: "hover:text-indigo-800" %>
48
- </button>
49
- <a
50
- href="<%= lookbook_preview_path %>"
51
- target="_blank"
52
- x-tooltip.theme.lookbook="`Open in new window`"
53
- data-hotkey="w">
54
- <%= icon "external-link", size: 4, class: "hover:text-indigo-800" %>
55
- </a>
56
- <button
57
- x-tooltip.theme.lookbook="`${drawerHidden ? 'show' : 'hide'} drawer`"
58
- @click="toggleDrawer"
59
- x-show="drawerHidden"
60
- data-hotkey="i">
61
- <%= icon "${horizontal ? 'credit-card' : 'sidebar'}", size: 4, class: "hover:text-indigo-800 scale-[-1]" %>
62
- </button>
63
- </div>
64
-
65
- </div>
66
- </div>
67
- <% end %>
68
- <div class="bg-white relative flex-grow">
69
- <% panels.each do |key, props| %>
70
- <div class="h-full w-full absolute inset-0" x-show="isActivePreviewPanel('<%= key %>')" x-cloak>
71
- <div id="preview-panel-<%= example.id %>-<%= key %>" class="h-full">
72
- <%= render props[:template], key: key, examples: examples, **props %>
73
- </div>
74
- </div>
75
- <% end %>
76
- </div>
77
- </div>