Compare commits

..

No commits in common. "c8ac8d6564881176da32ef1cdbf54ea146743b9c" and "fe2004b3daebe64814a25a119db3c9e4ba0c4674" have entirely different histories.

3 changed files with 28 additions and 22 deletions

View File

@ -14,13 +14,15 @@
</div>
<div class="content-inner">
<Releases
<ul
v-if="stash.scenes?.length > 0"
:releases="stash.scenes.map(item => item.scene)"
class="stash-section stash-scenes"
@stash="fetchStash"
@unstash="fetchStash"
/>
class="stash-section stash-scenes nolist"
>
<li
v-for="item in stash.scenes"
:key="item.id"
><Scene :release="item.scene" /></li>
</ul>
<ul
v-if="stash.actors?.length > 0"
@ -37,7 +39,7 @@
<script>
import Actor from '../actors/tile.vue';
import Releases from '../releases/releases.vue';
import Scene from '../releases/scene-tile.vue';
async function fetchStash() {
this.stash = await this.$store.dispatch('fetchStash', this.$route.params.stashId);
@ -50,7 +52,7 @@ async function mounted() {
export default {
components: {
Actor,
Releases,
Scene,
},
data() {
return {
@ -87,23 +89,27 @@ export default {
}
}
.stash-section:not(:last-child) {
border-bottom: solid 1px var(--shadow-hint);
.stash-section {
padding: 1rem;
&:not(:last-child) {
border-bottom: solid 1px var(--shadow-hint);
}
}
.stash-actors,
.stash-scenes {
display: grid;
flex-grow: 1;
grid-gap: .5rem;
box-sizing: border-box;
}
.stash-actors {
display: grid;
grid-gap: .5rem;
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
flex-grow: 1;
padding: 1rem;
}
.stash-scenes {
flex-grow: 0;
.tiles {
grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
}
grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
}
</style>

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "traxxx",
"version": "1.188.1",
"version": "1.188.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "1.188.1",
"version": "1.188.0",
"license": "ISC",
"dependencies": {
"@casl/ability": "^5.2.2",

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.188.1",
"version": "1.188.0",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {