Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

446 linhas
17KB

  1. <!--
  2. # @name: base.html
  3. # @version: 0.1
  4. # @creation_date: 2021-10-20
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: Basic layout for all pages
  8. # @acknowledgements:
  9. # https://www.digitalocean.com/community/tutorials/how-to-make-a-web-application-using-flask-in-python-3
  10. # Bootstrap 5.1.3: https://getbootstrap.com/
  11. # Flask-Moment: https://flask-moment.readthedocs.io/en/latest/
  12. # Boostrap select: https://stackoverflow.com/questions/67942546/bootstrap-5-select-dropdown-with-the-multiple-attribute-collapsed
  13. -->
  14. {% macro view_switch() %}
  15. <div class="flex">
  16. <a href="{{ request.base_url }}?view=regular{% for key in request.args %}{% if key != 'view' %}&{{ key }}={{ request.args.get(key) }}{% endif %}{% endfor %}"
  17. class="block link flex p-3 gap-2 {% if view != 'list' %} active {% endif %}">
  18. <div class="w-5 h-5 inline-block">
  19. <svg width="100%" height="100%" viewBox="0 0 46 36" fill="none" xmlns="http://www.w3.org/2000/svg">
  20. <rect width="21" height="36" fill="black" />
  21. <rect x="27" width="19" height="14" fill="black" />
  22. <rect x="27" y="21" width="19" height="15" fill="black" />
  23. </svg>
  24. </div>
  25. Expanded
  26. </a>
  27. <a href="{{ request.base_url }}?view=list{% for key in request.args %}{% if key != 'view' %}&{{ key }}={{ request.args.get(key) }}{% endif %}{% endfor %}"
  28. class="block link flex p-3 gap-2 {% if view == 'list' %} active {% endif %}">
  29. <div class="w-5 h-5 inline-block ">
  30. <svg width="100%" height="100%" viewBox="0 0 38 36" fill="none" xmlns="http://www.w3.org/2000/svg">
  31. <path d="M0 2H38" stroke="black" stroke-width="2.5" />
  32. <path d="M0 13H38" stroke="black" stroke-width="2.5" />
  33. <path d="M0 24H38" stroke="black" stroke-width="2.5" />
  34. <path d="M0 35H38" stroke="black" stroke-width="2.5" />
  35. </svg>
  36. </div>
  37. List
  38. </a>
  39. </div>
  40. {% endmacro %}
  41. {% macro menu(type) %}
  42. <a class="block menuitem w-48 " href="{{ url_for('main.index') }}{% if view == 'list' %}?view=list{% endif %}"
  43. @click="menuOpen = false"><span>Experimental Publishing Compendium <span
  44. class="ml-3 inline-block -rotate-12 italic text-[#f52d2d]"
  45. style="text-shadow: 0 0 0.4rem white">beta</span></span>
  46. </a>
  47. <a href="{{ url_for('tool.get_tools') }}{% if view == 'list' %}?view=list{% endif %}"
  48. class="{{ 'active' if request.path == url_for('tool.get_tools') }} menuitem tool medium-title {% if type=='top' %} hidden lg:block {% else %} block {% endif %}"
  49. @click="menuOpen = false">
  50. Tools
  51. </a>
  52. <a href="{{ url_for('practice.get_practices') }}{% if view == 'list' %}?view=list{% endif %}"
  53. class="{{ 'active' if request.path == url_for('practice.get_practices') }} menuitem practice medium-title {% if type=='top' %} hidden lg:block {% else %} block {% endif %}"
  54. @click="menuOpen = false">
  55. Practices
  56. </a>
  57. <a href="{{ url_for('book.get_books') }}{% if view == 'list' %}?view=list{% endif %}"
  58. class="{{ 'active' if request.path == url_for('book.get_books') }} menuitem medium-title book block {% if type=='top' %} hidden lg:block {% else %} block {% endif %} "
  59. @click="menuOpen = false">
  60. Books
  61. </a>
  62. <a href="{{ url_for('main.about') }}{% if view == 'list' %}?view=list{% endif %}"
  63. class="ml-auto {{ 'active' if request.path == url_for('main.about') }} menuitem {% if type=='top' %} hidden lg:block {% else %} block {% endif %}"
  64. @click="menuOpen = false">
  65. About / <br> Contact
  66. </a>
  67. <!-- <div class="ml-auto mr-2">
  68. {% if current_user.is_authenticated %}
  69. <a href="{{ url_for('create.create_resource') }}" class="block link">
  70. Add resource
  71. </a>
  72. {% endif %}
  73. {% if current_user.is_authenticated %}
  74. <a href="{{ url_for('main.profile') }}" class="block link">
  75. Profile
  76. </a>
  77. {% endif %}
  78. {% if not current_user.is_authenticated %}
  79. <a href="{{ url_for('auth.login') }}" class="block link">
  80. Login
  81. </a>
  82. <a href="{{ url_for('auth.signup') }}" class="block link">
  83. Sign Up
  84. </a>
  85. {% endif %}
  86. {% if current_user.is_authenticated %}
  87. <a href="{{ url_for('auth.logout') }}" class="block link">
  88. Logout
  89. </a>
  90. {% endif %}
  91. </div> -->
  92. <form action="{{ url_for('search.basic_search') }}" class="hidden lg:block">
  93. <input type="text" name="query" class="text-center h-full text-base border-l-2 border-black pl-1"
  94. placeholder="Search" hx-get="{{ url_for('search.basic_search') }}"
  95. hx-trigger="keyup changed delay:500ms, search" hx-target="main" hx-select="main">
  96. <input class="hidden" type="submit" hidden />
  97. </form>
  98. {% endmacro %}
  99. {% macro relationships_links(resource) %}
  100. {% if resource.tools %}
  101. <div class="">
  102. <div class="px-4 mt-16 lg:mt-0">
  103. Tools
  104. </div>
  105. {% for tool in resource.tools %}
  106. <div class="cell">
  107. {{ resource_lead(tool,size=2) }}
  108. </div>
  109. {% endfor %}
  110. </div>
  111. {% endif %}
  112. {% if resource.books %}
  113. <div class="">
  114. <div class="px-4 mt-16 lg:mt-0">
  115. Books
  116. </div>
  117. {% for book in resource.books %}
  118. <div class="cell">
  119. {{ resource_lead(book,size=2) }}
  120. </div>
  121. {% endfor %}
  122. </div>
  123. {% endif %}
  124. {% if resource.practices %}
  125. <div class="">
  126. <div class="px-4 mt-16 lg:mt-0">
  127. Practices
  128. </div>
  129. {% for practice in resource.practices %}
  130. <div class="cell">
  131. {{ resource_lead(practice,size=2) }}
  132. </div>
  133. {% endfor %}
  134. </div>
  135. {% endif %}
  136. {% endmacro %}
  137. {% macro resource_list(resource, loop, show_number=true) %}
  138. <div class="border-b-2 border-black">
  139. <a class="flex gap-6 h-full py-2 hover:opacity-60 transition-opacity cursor-pointer size-{{ size }}" {% if
  140. resource['type']=='book' %} href="{{ url_for('book.show_book', book_id=resource['id']) }}" {% endif %} {% if
  141. resource['type']=='tool' %} href="{{ url_for('tool.show_tool', tool_id=resource['id']) }}" {% endif %} {% if
  142. resource['type']=='practice' %} href="{{ url_for('practice.show_practice', practice_id=resource['id']) }}" {%
  143. endif %} hx-target="#modal-content" hx-select="main" hx-swap="innerHTML" @click="openModal()">
  144. <div class="w-[4.5rem] shrink-0 lg:w-[12rem] text-center ">
  145. {% if show_number %}
  146. {{loop.index}} / {{count}}
  147. {% else %}
  148. <div class="capitalize inline-block min-w-[5rem] px-4 ">{{ resource['type'] }}</div>
  149. {% endif %}
  150. </div>
  151. <div class="">
  152. <span class="{{ resource.type }} lg:text-xl pr-4">
  153. {{ resource.name }}
  154. </span>
  155. {% if resource['year'] %}
  156. <div class="">
  157. {{ resource['year'] }}{% if resource['author'] %}, {{ resource['author'] }}{% endif%}
  158. </div>
  159. {% endif %}
  160. </div>
  161. </a>
  162. </div>
  163. {% endmacro %}
  164. {% macro resource_with_related(resource, loop, show_number=true) %}
  165. <div class="w-full border-b-2 border-black fade-right">
  166. <div class="content w-full py-8 overflow-x-auto">
  167. <div class="grid lg:grid-rows-[auto,auto,auto] grid-flow-col w-fit pr-40 ">
  168. <div class="w-[4.5rem] shrink-0 lg:w-[12rem] text-center px-2 py-4 ">
  169. {% if show_number %}
  170. <p>{{loop.index}} / {{count}}</p>
  171. {% else %}
  172. <p class="capitalize">{{ resource['type'] }}</p>
  173. {% endif %}
  174. </div>
  175. <div class="cell w-[12rem] lg:w-[32rem] row-start-1 lg:row-span-3">
  176. {{ resource_lead(resource) }}
  177. </div>
  178. {% if resource.tools %}
  179. <div class="grid lg:grid-rows-1 grid-flow-col w-fit h-fit ">
  180. <div class="related">
  181. Related<br>Tools
  182. </div>
  183. {% for tool in resource.tools %}
  184. <div class="cell w-[12rem] lg:w-[30rem]">
  185. {{ resource_lead(tool,size=2) }}
  186. </div>
  187. {% endfor %}
  188. </div>
  189. {% endif %}
  190. {% if resource.books %}
  191. <div class="grid grid-rows-1 grid-flow-col w-fit h-fit">
  192. <div class="related">
  193. Related<br>Books
  194. </div>
  195. {% for book in resource.books %}
  196. <div class="cell w-[12rem] lg:w-[35rem]">
  197. {{ resource_lead(book,size=2) }}
  198. </div>
  199. {% endfor %}
  200. </div>
  201. {% endif %}
  202. {% if resource.practices %}
  203. <div class="grid grid-rows-1 grid-flow-col w-fit h-fit">
  204. <div class="related">
  205. Related<br>Practices
  206. </div>
  207. {% for practice in resource.practices %}
  208. <div class="cell w-[12rem] lg:w-[25rem]">
  209. {{ resource_lead(practice,size=2) }}
  210. </div>
  211. {% endfor %}
  212. </div>
  213. {% endif %}
  214. </div>
  215. </div>
  216. </div>
  217. {% endmacro %}
  218. {% macro popup_link(title,url) %}
  219. <a href="{{ url }}" class="nav-link">
  220. {{ title }}
  221. </a>
  222. {% endmacro %}
  223. {% macro resource_lead(resource,size=1) %}
  224. <a class="block lead-inner-link overflow-hidden h-full hover:opacity-60 transition-opacity cursor-pointer size-{{ size }}"
  225. {% if resource['type']=='book' %} href="{{ url_for('book.show_book', book_id=resource['id']) }}" {% endif %} {% if
  226. resource['type']=='tool' %} href="{{ url_for('tool.show_tool', tool_id=resource['id']) }}" {% endif %} {% if
  227. resource['type']=='practice' %} href="{{ url_for('practice.show_practice', practice_id=resource['id']) }}" {% endif
  228. %} hx-target="#modal-content" hx-select="main" hx-swap="innerHTML" @click="openModal()">
  229. {% if (resource.type == 'book') and (resource.references) %}
  230. <img class="w-14 h-14 lg:w-20 lg:h-20 object-contain lg:float-right absolute opacity-40 lg:opacity-100 lg:static top-0 right-0 m-1 lg:m-4 grayscale rotate-[15deg]"
  231. src="{{resource.references}}" alt="cover for {{ resource.name }}">
  232. {% endif %}
  233. <h2 class="{{ resource['type'] }} {% if size==1 %} big-title {% else %} small-title {% endif %} mb-2">{{
  234. resource['name'] }}</h2>
  235. {% if resource['year'] %}
  236. <div class="text-sm">
  237. {{ resource['year'] }}{% if resource['author'] %}, {{ resource['author'] }}{% endif%}
  238. </div>
  239. {% endif %}
  240. <div class="{% if size==1 %} big-text {% else %} small-text {% endif %} mb-[1em]">
  241. {{ resource['description'] | truncate(150) }}
  242. </div>
  243. </a>
  244. {% if current_user.is_authenticated %}
  245. <div class="">
  246. {% if resource['type'] == 'tool' %}
  247. <a href="{{ url_for('tool.edit_tool', tool_id=resource['id']) }}">
  248. <span class="absolute top-0 left-0 text-xs">Edit</span>
  249. </a>
  250. {% elif resource['type'] == 'practice' %}
  251. <a href="{{ url_for('practice.edit_practice', practice_id=resource['id']) }}">
  252. <span class="absolute top-0 left-0 text-xs">Edit</span>
  253. </a>
  254. {% elif resource['type'] == 'book' %}
  255. <a href="{{ url_for('book.edit_book', book_id=resource['id']) }}">
  256. <span class="absolute top-0 left-0 text-xs">Edit</span>
  257. </a>
  258. {% endif %}
  259. </div>
  260. {% endif %}
  261. {% endmacro %}
  262. <!DOCTYPE html>
  263. <html lang="en">
  264. <head>
  265. {{ moment.include_moment() }}
  266. <meta charset="utf-8">
  267. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  268. <meta name="viewport" content="width=device-width, initial-scale=1">
  269. <title>Experimental Publishing Compendium</title>
  270. <script src="{{ url_for('static',filename='js/alpine.min.js') }}" defer></script>
  271. <script src="{{ url_for('static',filename='js/htmx.min.js') }}"></script>
  272. <link href="{{ url_for('static',filename='styles/main.css') }}" rel="stylesheet">
  273. <script>
  274. // htmx.on('htmx:beforeRequest', e=> {
  275. // console.log(e)
  276. // })
  277. // htmx.logAll()
  278. function base() {
  279. return {
  280. menuOpen: false,
  281. modalOpen: false,
  282. showRelated: false,
  283. home: '/',
  284. hideIfBase() {
  285. let str = document.location.toString();
  286. str = str.replace('http://', '');
  287. str = str.replace('https://', '');
  288. let l = str.split('/').length - 1;
  289. if (l < 2) {
  290. this.modalOpen = false;
  291. }
  292. return l;
  293. },
  294. init() {
  295. this.$watch('document.location', (value, oldValue) => {
  296. console.log('new url', value);
  297. });
  298. window.addEventListener('popstate', e => {
  299. this.hideIfBase();
  300. });
  301. },
  302. hideOverlay() {
  303. this.modalOpen = false;
  304. // window.history.pushState({}, '', this.home);
  305. },
  306. openModal() {
  307. // this.$refs.modal.innerHTML = '';
  308. this.modalOpen = true;
  309. let mc = document.querySelector('#modal-content');
  310. mc.scrollTo(0, 0);
  311. }
  312. }
  313. }
  314. </script>
  315. </head>
  316. <body class="text-base overflow-y-scroll" x-data="base()" hx-boost="true" hx-select="#all" hx-target="#all"
  317. hx-swap="outerHTML" hx-indicator="body">
  318. <div id="loading" class="loading pointer-events-none ">
  319. <!-- <div class="bg-white fixed top-0 left-0 w-full h-screen z-20"></div> -->
  320. <div class="bg fixed top-0 left-0 w-full h-screen z-30"></div>
  321. <div class="spinner fixed top-0 left-0 w-full h-screen z-[60] flex justify-center items-center">
  322. <div class="inner bg-black rounded-full px-8 py-6 text-white text-center">
  323. Loading...
  324. </div>
  325. </div>
  326. </div>
  327. <div id="all">
  328. <header class="sticky top-0 z-10 bg-white border-b-[2px] border-black flex justify-between w-full">
  329. <nav class=" lg:flex justify-center items-stretch w-full ">
  330. {{ menu('top') }}
  331. </nav>
  332. <div class="burger h-14 cursor-pointer block lg:hidden p-4" @click="menuOpen = true">
  333. <svg width="100%" height="100%" viewBox="0 0 20 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  334. <path d="M1 4H19" stroke="black" stroke-width="1.5" />
  335. <path d="M19 9H1" stroke="black" stroke-width="1.5" />
  336. <path d="M1 14H19" stroke="black" stroke-width="1.5" />
  337. </svg>
  338. </div>
  339. </header>
  340. <div x-transition.opacity x-show="menuOpen" class="fixed z-20 top-0 left-0 w-full h-screen bg-purple-700/50">
  341. </div>
  342. <menu x-transition.opacity class="fixed top-0 right-0 z-20 bg-white w-[calc(100%-2rem)] max-w-[30rem] h-screen"
  343. x-show="menuOpen" style="box-shadow: 0 0 2rem rgb(0,0,0,0.2);" @click.outside="menuOpen = false">
  344. {{ menu('side') }}
  345. </menu>
  346. <!-- Begin page content -->
  347. <main>
  348. {% with messages = get_flashed_messages() %}
  349. {% if messages %}
  350. <div class="alert alert-danger">
  351. {{ messages[0] }}
  352. </div>
  353. {% endif %}
  354. {% endwith %}
  355. {% block content %}
  356. {% endblock %}
  357. </main>
  358. </div>
  359. <div id="modal" x-show="modalOpen" class="modal h-screen w-full fixed top-0 z-50 p-4 bg overscroll-none">
  360. <div class="cross cursor-pointer absolute top-10 right-10 w-10 h-10" @click="hideOverlay()">
  361. <svg width="100%" height="100%" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  362. <path d="M2 2L18 18M18 2L2 18" stroke="black" stroke-width="1"></path>
  363. </svg>
  364. </div>
  365. <div id="modal-content" @click.outside="hideOverlay()" x-ref="modal"
  366. class="content w-full overflow-y-auto h-full bg-white ">
  367. </div>
  368. </div>
  369. <!-- Sticky footer-->
  370. <footer class="std-margin mt-20 text-sm">
  371. <div class="container">
  372. <span class="">© 2022–{{ moment().format('YYYY') }} <a href="https://copim.ac.uk/">COPIM</a> and licensed
  373. under a <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0
  374. International License (CC BY 4.0)</a>.</span>
  375. </div>
  376. </footer>
  377. <!-- JavaScript -->
  378. <!-- jQuery first, then Popper JS, then Bootstrap JS -->
  379. <script src="{{ url_for('static',filename='js/main.js') }}"></script>
  380. </body>
  381. </html>