You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.html 18KB

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