瀏覽代碼

loader, font size, link styling, filter hidden

joel
Joel Galvez 2 年之前
父節點
當前提交
d2ddc3cbfc
共有 8 個檔案被更改,包括 316 行新增172 行删除
  1. +3
    -1
      web/app/static/js/main.js
  2. +18
    -3
      web/app/static/src/main.css
  3. +98
    -44
      web/app/static/styles/main.css
  4. +2
    -2
      web/app/static/tailwind.config.js
  5. +1
    -1
      web/app/templates/about.html
  6. +82
    -50
      web/app/templates/base.html
  7. +110
    -69
      web/app/templates/resources.html
  8. +2
    -2
      web/content/home.md

+ 3
- 1
web/app/static/js/main.js 查看文件

// ee.preventDefault(); // ee.preventDefault();
// }) // })
// }) // })
// })
// })

// htmx.logAll();

+ 18
- 3
web/app/static/src/main.css 查看文件

display: block; display: block;
} }


.htmx-request.loading {

#modal-content main {
opacity: 1;
}
.htmx-request #modal-content main {
/* transition: opacity 0.2s ease; */
opacity: 0;
}

.htmx-request .loading {
opacity: 1; opacity: 1;
} }


.active { .active {
@apply bg-[#ffff00]
@apply bg-[#ffff00];
}

.link:hover {
@apply bg-[#ffff00];
} }


details[open]::details-content { details[open]::details-content {
} }


.text a { .text a {
font-family: 'ag-fett';
/* font-family: 'ag-fett'; */
text-decoration: underline;
} }



+ 98
- 44
web/app/static/styles/main.css 查看文件

.top-10 { .top-10 {
top: 2.5rem; top: 2.5rem;
} }
.top-20 {
top: 5rem;
}
.top-16 {
top: 4rem;
}
.top-8 {
top: 2rem;
}
.top-12 {
top: 3rem;
}
.top-11 {
top: 2.75rem;
}
.z-10 { .z-10 {
z-index: 10; z-index: 10;
} }
.row-span-2 { .row-span-2 {
grid-row: span 2 / span 2; grid-row: span 2 / span 2;
} }
.row-span-3 {
grid-row: span 3 / span 3;
}
.row-start-1 {
grid-row-start: 1;
}
.float-right { .float-right {
float: right; float: right;
} }
.m-16 { .m-16 {
margin: 4rem; margin: 4rem;
} }
.m-8 {
margin: 2rem;
}
.my-8 {
margin-top: 2rem;
margin-bottom: 2rem;
}
.mx-4 {
margin-left: 1rem;
margin-right: 1rem;
}
.mb-2 { .mb-2 {
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
.mb-3 { .mb-3 {
margin-bottom: 0.75rem; margin-bottom: 0.75rem;
} }
.mb-4 {
margin-bottom: 1rem;
}
.mb-8 {
margin-bottom: 2rem;
}
.mr-auto { .mr-auto {
margin-right: auto; margin-right: auto;
} }
.mt-3 { .mt-3 {
margin-top: 0.75rem; margin-top: 0.75rem;
} }
.mb-8 {
margin-bottom: 2rem;
.ml-auto {
margin-left: auto;
}
.mb-16 {
margin-bottom: 4rem;
} }
.block { .block {
display: block; display: block;
.w-full { .w-full {
width: 100%; width: 100%;
} }
.min-w-\[15rem\] {
min-width: 15rem;
.w-\[3rem\] {
width: 3rem;
}
.w-\[30rem\] {
width: 30rem;
} }
.min-w-\[20rem\] {
min-width: 20rem;
.w-\[20rem\] {
width: 20rem;
}
.w-\[25rem\] {
width: 25rem;
} }
.min-w-\[10rem\] { .min-w-\[10rem\] {
min-width: 10rem; min-width: 10rem;
.max-w-\[30rem\] { .max-w-\[30rem\] {
max-width: 30rem; max-width: 30rem;
} }
.max-w-\[20rem\] {
max-width: 20rem;
.max-w-\[55ch\] {
max-width: 55ch;
}
.max-w-\[25rem\] {
max-width: 25rem;
}
.shrink-0 {
flex-shrink: 0;
} }
.rotate-\[15deg\] { .rotate-\[15deg\] {
--tw-rotate: 15deg; --tw-rotate: 15deg;
.cursor-pointer { .cursor-pointer {
cursor: pointer; cursor: pointer;
} }
.grid-cols-\[1fr\2c 3fr\] {
grid-template-columns: 1fr 3fr;
.grid-flow-col {
grid-auto-flow: column;
}
.grid-cols-\[1fr\2c 4fr\] {
grid-template-columns: 1fr 4fr;
} }
.items-center { .items-center {
align-items: center; align-items: center;
.justify-center { .justify-center {
justify-content: center; justify-content: center;
} }
.justify-evenly {
justify-content: space-evenly;
.justify-between {
justify-content: space-between;
}
.gap-2 {
gap: 0.5rem;
}
.gap-4 {
gap: 1rem;
} }
.gap-8 { .gap-8 {
gap: 2rem; gap: 2rem;
} }
.overflow-x-scroll {
overflow-x: scroll;
}
.overflow-y-scroll { .overflow-y-scroll {
overflow-y: scroll; overflow-y: scroll;
} }
.overscroll-none {
overscroll-behavior: none;
}
.truncate { .truncate {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
.rounded-full { .rounded-full {
border-radius: 9999px; border-radius: 9999px;
} }
.border {
border-width: 1px;
}
.border-\[3px\] {
border-width: 3px;
}
.border-2 { .border-2 {
border-width: 2px; border-width: 2px;
} }
.border-b-\[3px\] { .border-b-\[3px\] {
border-bottom-width: 3px; border-bottom-width: 3px;
} }
.border-b-2 {
border-bottom-width: 2px;
}
.border-black { .border-black {
--tw-border-opacity: 1; --tw-border-opacity: 1;
border-color: rgb(0 0 0 / var(--tw-border-opacity)); border-color: rgb(0 0 0 / var(--tw-border-opacity));
.p-8 { .p-8 {
padding: 2rem; padding: 2rem;
} }
.p-1 {
padding: 0.25rem;
}
.py-3 { .py-3 {
padding-top: 0.75rem; padding-top: 0.75rem;
padding-bottom: 0.75rem; padding-bottom: 0.75rem;
.text-center { .text-center {
text-align: center; text-align: center;
} }
.align-bottom {
vertical-align: bottom;
}
.text-base { .text-base {
font-size: 1.2rem;
font-size: 1.08rem;
line-height: 1.35; line-height: 1.35;
} }
.text-sm { .text-sm {
font-size: 0.75rem; font-size: 0.75rem;
line-height: 1rem; line-height: 1rem;
} }
.leading-tight {
line-height: 1.25;
}
.text-red-600 { .text-red-600 {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(220 38 38 / var(--tw-text-opacity)); color: rgb(220 38 38 / var(--tw-text-opacity));
} }


h2 { h2 {
font-size: 3rem;
font-size: 2.53rem;
line-height: 1; line-height: 1;
} }


display: block; display: block;
} }


.htmx-request.loading {

#modal-content main {
opacity: 1;
}
.htmx-request #modal-content main {
/* transition: opacity 0.2s ease; */
opacity: 0;
}

.htmx-request .loading {
opacity: 1; opacity: 1;
} }


background-color: rgb(255 255 0 / var(--tw-bg-opacity)); background-color: rgb(255 255 0 / var(--tw-bg-opacity));
} }


.link:hover {
--tw-bg-opacity: 1;
background-color: rgb(255 255 0 / var(--tw-bg-opacity));
}

details[open]::details-content { details[open]::details-content {
display: contents; display: contents;
} }


.text a { .text a {
font-family: 'ag-fett';
/* font-family: 'ag-fett'; */
text-decoration: underline;
} }


@media (min-width: 1024px) { @media (min-width: 1024px) {
display: flex; display: flex;
} }


.lg\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-3 { .lg\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-columns: repeat(3, minmax(0, 1fr));
} }

.lg\:grid-rows-3 {
grid-template-rows: repeat(3, minmax(0, 1fr));
}
} }



+ 2
- 2
web/app/static/tailwind.config.js 查看文件

fontSize: { fontSize: {
// xs: ['0.95rem', { lineHeight: '1.35' }], // xs: ['0.95rem', { lineHeight: '1.35' }],
sm: ['0.95rem', { lineHeight: '1.35' }], sm: ['0.95rem', { lineHeight: '1.35' }],
base: ['1.2rem', { lineHeight: '1.35' }],
base: ['1.08rem', { lineHeight: '1.35' }],
// lg: ['1.125rem', { lineHeight: '1.5' }], // lg: ['1.125rem', { lineHeight: '1.5' }],
// xl: ['1.25rem', { lineHeight: '1.6' }], // xl: ['1.25rem', { lineHeight: '1.6' }],
// '2xl': ['1.5rem', { lineHeight: '1.88rem' }], // '2xl': ['1.5rem', { lineHeight: '1.88rem' }],
// '3xl': ['1.875rem', { lineHeight: '2.25rem' }], // '3xl': ['1.875rem', { lineHeight: '2.25rem' }],
'4xl': ['3rem', { lineHeight: '1' }],
'4xl': ['2.53rem', { lineHeight: '1' }],
// '5xl': ['3rem', { lineHeight: '1.1' }], // '5xl': ['3rem', { lineHeight: '1.1' }],
// '6xl': ['3.75rem', { lineHeight: '1.04' }], // '6xl': ['3.75rem', { lineHeight: '1.04' }],
// '7xl': ['4.5rem', { lineHeight: '1.1' }], // '7xl': ['4.5rem', { lineHeight: '1.1' }],

+ 1
- 1
web/app/templates/about.html 查看文件



{% block content %} {% block content %}


<div class="std-margin text">
<div class="cell-margin text max-w-[55ch]">
{{ text|safe }} {{ text|safe }}
</div> </div>



+ 82
- 50
web/app/templates/base.html 查看文件

# Boostrap select: https://stackoverflow.com/questions/67942546/bootstrap-5-select-dropdown-with-the-multiple-attribute-collapsed # Boostrap select: https://stackoverflow.com/questions/67942546/bootstrap-5-select-dropdown-with-the-multiple-attribute-collapsed
--> -->


{% macro popup_link(title,url) %}
<a href="{{ url }}" class="nav-link">
{{ title }}
</a>
{% endmacro %}

{% macro resource_lead(type, title, leadtext, url, year, thumbnail='', large_title=false) %} {% macro resource_lead(type, title, leadtext, url, year, thumbnail='', large_title=false) %}
<div class="relative cell ">
<a
<div class="relative cell h-full">
<a
class="block cursor-pointer" class="block cursor-pointer"


href="{{ url }}" href="{{ url }}"
hx-target="#modal-content" hx-target="#modal-content"
hx-select="main" hx-select="main"
hx-swap="innerHTML" hx-swap="innerHTML"


@click="openModal()" @click="openModal()"
> >

{% if large_title %} {% if large_title %}
<h2 class="">{{ title }}</h2> <h2 class="">{{ title }}</h2>
{% else %} {% else %}
</head> </head>


<script> <script>
htmx.logAll();
// htmx.on('htmx:beforeRequest', e=> {
// console.log(e)
// })
// htmx.logAll()
function base() { function base() {
return { return {
menuOpen: false, menuOpen: false,
modalOpen: false, modalOpen: false,
showRelated: false,
home: '/', home: '/',
hideIfBase() {
let str = document.location.toString();
str = str.replace('http://', '');
str = str.replace('https://', '');
let l = str.split('/').length-1;
if(l<2) {
this.modalOpen = false;
}
return l;
},
init() { init() {
this.$watch('document.location', (value, oldValue) => {
console.log('new url', value);
});
window.addEventListener('popstate', e => { window.addEventListener('popstate', e => {
console.log(document.location);
if (document.location == this.home) {
this.modalOpen = false;
}
})
this.hideIfBase();
});
}, },
hideOverlay() { hideOverlay() {
this.modalOpen = false; this.modalOpen = false;
window.history.pushState({}, '', this.home);
// window.history.pushState({}, '', this.home);
}, },
openModal() { openModal() {
this.$refs.modal.innerHTML = '';
// this.$refs.modal.innerHTML = '';
this.modalOpen = true; this.modalOpen = true;
let mc = document.querySelector('#modal-content');
mc.scrollTo(0,0);
} }
} }
} }
hx-boost="true" hx-boost="true"
hx-select="#all" hx-select="#all"
hx-target="#all" hx-target="#all"
hx-indicator="#loading"
hx-swap="outerHTML"
hx-indicator="body"
> >
<div id="loading" class="loading"> <div id="loading" class="loading">
<div class="pointer-events-none fixed top-0 left-0 w-full h-screen z-50 flex justify-center items-center p-4"> <div class="pointer-events-none fixed top-0 left-0 w-full h-screen z-50 flex justify-center items-center p-4">
</div> </div>
<div id="all"> <div id="all">
<header class="sticky top-0 z-10 bg-white std-padding border-b-[3px] border-black"> <header class="sticky top-0 z-10 bg-white std-padding border-b-[3px] border-black">
<nav class="lg:flex gap-8">
<nav class="">
<div class="lg:flex gap-2 mb-2">
<a class="link leading-tight" href="{{ url_for('main.index') }}">ExPub<br>Compendium</a>
<a class="mr-auto" href="{{ url_for('main.index')}}">ExPub Compendium</a>
<a href="{{ url_for('main.about') }}" class="{{ 'active' if request.path == url_for('main.about') }} ml-auto link">
About
</a>
<a href="{{ url_for('main.about') }}" class="nav-link">
About
</a>
<a href="{{ url_for('tool.get_tools') }}" class="nav-link">
Tools
</a>
<a href="{{ url_for('practice.get_practices') }}" class="nav-link">
Practices
</a>
<a href="{{ url_for('book.get_books') }}" class="nav-link">
Books
</a>
{% if current_user.is_authenticated %}
<a href="{{ url_for('create.create_resource') }}" class="nav-link">
Add resource
</a>
{% endif %}
{% if current_user.is_authenticated %}
<a href="{{ url_for('main.profile') }}" class="nav-link">
Profile
</a>
{% endif %}
{% if not current_user.is_authenticated %}
<a href="{{ url_for('auth.login') }}" class="nav-link">
Login
</a>
<a href="{{ url_for('auth.signup') }}" class="nav-link">
Sign Up
</a>
{% endif %}
{% if current_user.is_authenticated %}
<a href="{{ url_for('auth.logout') }}" class="nav-link">
Logout
</a>
{% endif %}
{% if current_user.is_authenticated %}
<a href="{{ url_for('create.create_resource') }}" class="link">
Add resource
</a>
{% endif %}
{% if current_user.is_authenticated %}
<a href="{{ url_for('main.profile') }}" class="link">
Profile
</a>
{% endif %}
{% if not current_user.is_authenticated %}
<a href="{{ url_for('auth.login') }}" class="link">
Login
</a>
<a href="{{ url_for('auth.signup') }}" class="link">
Sign Up
</a>
{% endif %}
{% if current_user.is_authenticated %}
<a href="{{ url_for('auth.logout') }}" class="link">
Logout
</a>
{% endif %}
</div>
<h2 class="flex gap-4 ">
<a href="{{ url_for('tool.get_tools') }}" class=" link align-bottom">
Tools
</a>
<a href="{{ url_for('practice.get_practices') }}" class="link">
Practices
</a>
<a href="{{ url_for('book.get_books') }}" class="link">
Books
</a>
<input class="ml-auto text-base border-2 border-black p-1 " type="text" placeholder="Search">
</h2>
</nav> </nav>
</header> </header>
</main> </main>
</div> </div>


<div id="modal" x-show="modalOpen" class="modal h-screen w-full fixed top-0 z-20 p-8 bg-black/20">
<div id="modal" x-show="modalOpen" class="modal h-screen w-full fixed top-0 z-20 p-8 bg-black/20 overscroll-none">
<div class="cross cursor-pointer absolute top-10 right-10 w-10 h-10" @click="hideOverlay()"> <div class="cross cursor-pointer absolute top-10 right-10 w-10 h-10" @click="hideOverlay()">
<svg width="100%" height="100%" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="100%" height="100%" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 2L18 18M18 2L2 18" stroke="black" stroke-width="1"></path> <path d="M2 2L18 18M18 2L2 18" stroke="black" stroke-width="1"></path>

+ 110
- 69
web/app/templates/resources.html 查看文件



{% block content %} {% block content %}


<div class="cell-margin">
<!-- <div class="cell-margin">
<div class="mb-8"> <div class="mb-8">
<h2> <h2>
{% block title %} {% block title %}
Integer accumsan ullamcorper diam, non rhoncus tellus molestie ut. Maecenas finibus pretium dolor ac sagittis. Integer accumsan ullamcorper diam, non rhoncus tellus molestie ut. Maecenas finibus pretium dolor ac sagittis.
</p> </p>
</div> </div>
</div>
<div class="">
<div class="search sticky top-11 z-10 border-b-2 border-black">
<div class="sticky top-20 flex p-2 pt-4 gap-8 bg-white ">
<input class="border-2 border-black p-2 mb-2" type="text" placeholder="filter by search...">
{% if practices_filter %}
<details class="min-w-[10rem]">
<summary>Practices</summary>
<div class="">
{% for practice in practices_filter %}
<div {% if request.args.get('practice')==practice[0]|string %} class="active" {% endif %}>
<a href="/{{type + 's'}}?practice={{practice[0]}}">{{ practice[1] }}</a>
</div>
{% endfor %}
</div> -->
<script>
function filter() {
return {
filterOpen: false,
init() {
// console.log(this.showRelated)
}
}
}
</script>
<div class="" x-data="filter()">
<div
class="search fixed z-20 top-0 left-0 w-[20rem] h-screen bg-white cell-padding "
x-show="filterOpen"
style="box-shadow:0 0 2rem rgba(0,0,0,0.3)"
@click.outside = "filterOpen = false"
>
<div class=" p-2 pt-4 gap-8 bg-white ">
{% if practices_filter %}
<details class="" open>
<summary>Practices</summary>
<div class="">
{% for practice in practices_filter %}
<div {% if request.args.get('practice')==practice[0]|string %} class="active" {% endif %}>
<a href="/{{type + 's'}}?practice={{practice[0]}}">{{ practice[1] }}</a>
</div> </div>
</details>
{% endif %}
{% if year_filter %}
<details class="min-w-[10rem]">
<summary>Year</summary>
<div id="filter-year" class="collapse filter-items">
{% for year in year_filter %}
<li {% if request.args.get('year')==year %} class="active" {% endif %}>
<a href="/books?year={{year}}">{{ year }}</a>
</li>
{% endfor %}
{% endfor %}
</div>
</details>
{% endif %}
{% if year_filter %}
<details class="">
<summary>Year</summary>
<div id="filter-year" class="collapse filter-items">
{% for year in year_filter %}
<li {% if request.args.get('year')==year %} class="active" {% endif %}>
<a href="/books?year={{year}}">{{ year }}</a>
</li>
{% endfor %}
</div>
</details>
{% endif %}
{% if typology_filter %}
<details class="">
<summary class="">Typology category</summary>
<div class="">
{% for typology in typology_filter %}
<div {% if request.args.get('typology')==typology %} class="active" {% endif %}>
<a href="/books?typology={{typology}}">{{ typology }}</a>
</div> </div>
</details>
{% endif %}
{% if typology_filter %}
<details class="min-w-[10rem]">
<summary class="">Typology category</summary>
<div class="">
{% for typology in typology_filter %}
<div {% if request.args.get('typology')==typology %} class="active" {% endif %}>
<a href="/books?typology={{typology}}">{{ typology }}</a>
</div>
{% endfor %}
{% endfor %}
</div>
</details>
{% endif %}
{% if languages_filter %}
<details class="">
<summary>Scripting languages</summary>
<div class="">
{% for language in languages_filter %}
<div {% if request.args.get('scriptingLanguage')==language %} class="active" {% endif %}>
<a href="/tools?scriptingLanguage={{language}}">{{ language }}</a>
</div> </div>
</details>
{% endif %}
{% if languages_filter %}
<details class="min-w-[10rem]">
<summary>Scripting languages</summary>
<div class="">
{% for language in languages_filter %}
<div {% if request.args.get('scriptingLanguage')==language %} class="active" {% endif %}>
<a href="/tools?scriptingLanguage={{language}}">{{ language }}</a>
</div>
{% endfor %}
{% endfor %}
</div>
</details>
{% endif %}
{% if licenses_filter %}
<details class="min-w-[10rem]">
<summary>License</summary>
<div class="">
{% for license in licenses_filter %}
<div {% if request.args.get('license')==license %} class="active" {% endif %}>
<a href="/tools?license={{license}}">{{ license }}</a>
</div> </div>
</details>
{% endif %}
{% if licenses_filter %}
<details class="min-w-[10rem]">
<summary>License</summary>
<div class="">
{% for license in licenses_filter %}
<div {% if request.args.get('license')==license %} class="active" {% endif %}>
<a href="/tools?license={{license}}">{{ license }}</a>
</div>
{% endfor %}
</div>
</details>
{% endif %}
{% endfor %}
</div>
</details>
{% endif %}
</div>
</div>
<div class="flex justify-between mx-4 my-8">
<div class="cursor-pointer" @click="filterOpen = true">← Show filters</div>
<div class="">
<input type="checkbox" name="filter-open" x-model="showRelated" id=""> Also show everything related
</div> </div>
</div> </div>


<div class="col-md-8 col-lg-9">
<div class="grid lg:grid-cols-3">
{% for resource in resources %}
<div class="grid lg:grid-cols-3" x-show="!showRelated">
{% for resource in resources %}
{{ resource_small(resource) }} {{ resource_small(resource) }}
{% endfor %}
</div>
{% endfor %}
</div>
<div x-show="showRelated">
{% for resource in resources %}
<div class="w-full overflow-x-scroll">
<div class="grid lg:grid-rows-3 grid-flow-col mb-16">
<div class="w-[25rem] shrink-0 row-span-3 h-full">
{{ resource_small(resource) }}
</div>
<div class="w-[25rem] cell row-start-1">
Something Related
</div>
<div class="w-[25rem] cell shrink-0 row-start-1">
Something Related
</div>
<div class="w-[25rem] cell shrink-0 row-start-1">
Something Related
</div>
<div class="w-[25rem] cell shrink-0 row-start-1">
Something Related
</div>
</div>
</div>
{% endfor %}
</div> </div>
</div> </div>



+ 2
- 2
web/content/home.md 查看文件

## ExPub Compendium
## ExPub <br>Compendium


The Experimental Publishing Compendium is for authors, designers, publishers, institutions and technologist who challenge, push and redefine the shape, form and rationale of scholarly works. The compendium offers a catalogues of tools, practices, and books to inspire experimental scholarly works. The Experimental Publishing Compendium is for authors, designers, publishers, institutions and technologist who challenge, push and redefine the shape, form and rationale of scholarly works. The compendium offers a catalogues of tools, practices, and books to inspire experimental scholarly works.


[Read more](/about)
[About ExPub](/about)

Loading…
取消
儲存