Compare commits
2 Commits
fe2004b3da
...
c8ac8d6564
| Author | SHA1 | Date |
|---|---|---|
|
|
c8ac8d6564 | |
|
|
626cbc4fc5 |
|
|
@ -14,15 +14,13 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content-inner">
|
<div class="content-inner">
|
||||||
<ul
|
<Releases
|
||||||
v-if="stash.scenes?.length > 0"
|
v-if="stash.scenes?.length > 0"
|
||||||
class="stash-section stash-scenes nolist"
|
:releases="stash.scenes.map(item => item.scene)"
|
||||||
>
|
class="stash-section stash-scenes"
|
||||||
<li
|
@stash="fetchStash"
|
||||||
v-for="item in stash.scenes"
|
@unstash="fetchStash"
|
||||||
:key="item.id"
|
/>
|
||||||
><Scene :release="item.scene" /></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul
|
<ul
|
||||||
v-if="stash.actors?.length > 0"
|
v-if="stash.actors?.length > 0"
|
||||||
|
|
@ -39,7 +37,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Actor from '../actors/tile.vue';
|
import Actor from '../actors/tile.vue';
|
||||||
import Scene from '../releases/scene-tile.vue';
|
import Releases from '../releases/releases.vue';
|
||||||
|
|
||||||
async function fetchStash() {
|
async function fetchStash() {
|
||||||
this.stash = await this.$store.dispatch('fetchStash', this.$route.params.stashId);
|
this.stash = await this.$store.dispatch('fetchStash', this.$route.params.stashId);
|
||||||
|
|
@ -52,7 +50,7 @@ async function mounted() {
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
Actor,
|
Actor,
|
||||||
Scene,
|
Releases,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
@ -89,27 +87,23 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.stash-section {
|
.stash-section:not(:last-child) {
|
||||||
padding: 1rem;
|
border-bottom: solid 1px var(--shadow-hint);
|
||||||
|
|
||||||
&: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 {
|
.stash-actors {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: .5rem;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
|
||||||
|
flex-grow: 1;
|
||||||
|
padding: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stash-scenes {
|
.stash-scenes {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
|
flex-grow: 0;
|
||||||
|
|
||||||
|
.tiles {
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.188.0",
|
"version": "1.188.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"version": "1.188.0",
|
"version": "1.188.1",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@casl/ability": "^5.2.2",
|
"@casl/ability": "^5.2.2",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.188.0",
|
"version": "1.188.1",
|
||||||
"description": "All the latest porn releases in one place",
|
"description": "All the latest porn releases in one place",
|
||||||
"main": "src/app.js",
|
"main": "src/app.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue