Compare commits
No commits in common. "ed7bffd2d66694728fd97759716e36f39a1f5253" and "96f9c8f01d082de0f369055750eaa46cb3981044" have entirely different histories.
ed7bffd2d6
...
96f9c8f01d
|
@ -81,31 +81,6 @@
|
||||||
<template v-slot:start><Icon icon="flower" /></template>
|
<template v-slot:start><Icon icon="flower" /></template>
|
||||||
<template v-slot:end><Icon icon="pipe" /></template>
|
<template v-slot:end><Icon icon="pipe" /></template>
|
||||||
</RangeFilter>
|
</RangeFilter>
|
||||||
|
|
||||||
<div class="filter-section">
|
|
||||||
<label class="filter-label">
|
|
||||||
<span class="label">
|
|
||||||
<Checkbox
|
|
||||||
:checked="dobRequired"
|
|
||||||
class="checkbox"
|
|
||||||
@change="(checked) => updateValue('dobRequired', checked, true)"
|
|
||||||
/>Date of birth
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="input-container"
|
|
||||||
@click="() => updateValue('dobRequired', true, true)"
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
v-model="dob"
|
|
||||||
:disabled="!dobRequired"
|
|
||||||
type="date"
|
|
||||||
class="input"
|
|
||||||
@change="updateFilters"
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</li>
|
</li>
|
||||||
|
@ -227,11 +202,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import dayjs from 'dayjs';
|
|
||||||
|
|
||||||
import Actor from './tile.vue';
|
import Actor from './tile.vue';
|
||||||
import Gender from './gender.vue';
|
import Gender from './gender.vue';
|
||||||
import Checkbox from '../form/checkbox.vue';
|
|
||||||
import RangeFilter from './filter-range.vue';
|
import RangeFilter from './filter-range.vue';
|
||||||
import Pagination from '../pagination/pagination.vue';
|
import Pagination from '../pagination/pagination.vue';
|
||||||
|
|
||||||
|
@ -248,7 +220,6 @@ function updateFilters() {
|
||||||
h: this.heightRequired ? this.height.join(',') : undefined,
|
h: this.heightRequired ? this.height.join(',') : undefined,
|
||||||
w: this.weightRequired ? this.weight.join(',') : undefined,
|
w: this.weightRequired ? this.weight.join(',') : undefined,
|
||||||
age: this.ageRequired ? this.age.join(',') : undefined,
|
age: this.ageRequired ? this.age.join(',') : undefined,
|
||||||
dob: this.dobRequired ? this.dob : undefined,
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -270,7 +241,6 @@ async function fetchActors(scroll) {
|
||||||
letter: this.letter.replace('all', ''),
|
letter: this.letter.replace('all', ''),
|
||||||
gender: curatedGender === 'other' ? null : curatedGender,
|
gender: curatedGender === 'other' ? null : curatedGender,
|
||||||
age: this.ageRequired && this.age,
|
age: this.ageRequired && this.age,
|
||||||
dob: this.dobRequired && this.dob,
|
|
||||||
boobSize: this.boobSizeRequired && this.boobSize,
|
boobSize: this.boobSizeRequired && this.boobSize,
|
||||||
naturalBoobs: toggleValues[this.naturalBoobs] ?? null,
|
naturalBoobs: toggleValues[this.naturalBoobs] ?? null,
|
||||||
height: this.heightRequired && this.height,
|
height: this.heightRequired && this.height,
|
||||||
|
@ -310,7 +280,6 @@ async function mounted() {
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
Actor,
|
Actor,
|
||||||
Checkbox,
|
|
||||||
Gender,
|
Gender,
|
||||||
RangeFilter,
|
RangeFilter,
|
||||||
Pagination,
|
Pagination,
|
||||||
|
@ -324,8 +293,6 @@ export default {
|
||||||
letters: ['all'].concat(Array.from({ length: 26 }, (value, index) => String.fromCharCode(index + 97).toUpperCase())),
|
letters: ['all'].concat(Array.from({ length: 26 }, (value, index) => String.fromCharCode(index + 97).toUpperCase())),
|
||||||
age: this.$route.query.age?.split(',') || [18, 100],
|
age: this.$route.query.age?.split(',') || [18, 100],
|
||||||
ageRequired: !!this.$route.query.age,
|
ageRequired: !!this.$route.query.age,
|
||||||
dob: this.$route.query.dob || dayjs().subtract(21, 'years').format('YYYY-MM-DD'),
|
|
||||||
dobRequired: !!this.$route.query.dob,
|
|
||||||
boobSizes,
|
boobSizes,
|
||||||
boobSize: this.$route.query.bs?.split(',') || ['A', 'Z'],
|
boobSize: this.$route.query.bs?.split(',') || ['A', 'Z'],
|
||||||
boobSizeRequired: !!this.$route.query.bs,
|
boobSizeRequired: !!this.$route.query.bs,
|
||||||
|
@ -513,10 +480,6 @@ export default {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: .9rem;
|
font-size: .9rem;
|
||||||
|
|
||||||
.checkbox {
|
|
||||||
margin: 0 .75rem 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label {
|
.label {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -524,15 +487,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-container {
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding: 0 .5rem .5rem .5rem;
|
|
||||||
|
|
||||||
.input {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.toggle-container,
|
.toggle-container,
|
||||||
.range-container {
|
.range-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -1,16 +1,3 @@
|
||||||
.input {
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding: .5rem;
|
|
||||||
border: solid 1px var(--shadow-weak);
|
|
||||||
color: var(--shadow-strong);
|
|
||||||
background: var(--background);
|
|
||||||
font-size: 1rem;
|
|
||||||
|
|
||||||
&::-webkit-calendar-picker-indicator {
|
|
||||||
opacity: .5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.select {
|
.select {
|
||||||
color: var(--shadow-strong);
|
color: var(--shadow-strong);
|
||||||
background: var(--background);
|
background: var(--background);
|
||||||
|
|
|
@ -269,7 +269,6 @@ function initActorActions(store, router) {
|
||||||
letter,
|
letter,
|
||||||
gender,
|
gender,
|
||||||
age,
|
age,
|
||||||
dob,
|
|
||||||
naturalBoobs,
|
naturalBoobs,
|
||||||
boobSize,
|
boobSize,
|
||||||
height,
|
height,
|
||||||
|
@ -301,8 +300,6 @@ function initActorActions(store, router) {
|
||||||
]
|
]
|
||||||
` : '';
|
` : '';
|
||||||
|
|
||||||
const dobFilter = dob ? `dateOfBirth: { equalTo: "${dob}" }` : '';
|
|
||||||
|
|
||||||
const heightFilter = height ? `height: { greaterThanOrEqualTo: ${height[0]}, lessThanOrEqualTo: ${height[1]} }` : '';
|
const heightFilter = height ? `height: { greaterThanOrEqualTo: ${height[0]}, lessThanOrEqualTo: ${height[1]} }` : '';
|
||||||
const weightFilter = weight ? `weight: { greaterThanOrEqualTo: ${weight[0]}, lessThanOrEqualTo: ${weight[1]} }` : '';
|
const weightFilter = weight ? `weight: { greaterThanOrEqualTo: ${weight[0]}, lessThanOrEqualTo: ${weight[1]} }` : '';
|
||||||
const cupFilter = boobSize ? `cup: { greaterThanOrEqualTo: "${boobSize[0]}", lessThanOrEqualTo: "${boobSize[1]}" }` : '';
|
const cupFilter = boobSize ? `cup: { greaterThanOrEqualTo: "${boobSize[0]}", lessThanOrEqualTo: "${boobSize[1]}" }` : '';
|
||||||
|
@ -327,7 +324,6 @@ function initActorActions(store, router) {
|
||||||
}
|
}
|
||||||
${genderFilter}
|
${genderFilter}
|
||||||
${ageFilter}
|
${ageFilter}
|
||||||
${dobFilter}
|
|
||||||
${heightFilter}
|
${heightFilter}
|
||||||
${weightFilter}
|
${weightFilter}
|
||||||
${cupFilter}
|
${cupFilter}
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.180.8",
|
"version": "1.180.7",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"version": "1.180.8",
|
"version": "1.180.7",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@graphile-contrib/pg-order-by-related": "^1.0.0-beta.6",
|
"@graphile-contrib/pg-order-by-related": "^1.0.0-beta.6",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.180.8",
|
"version": "1.180.7",
|
||||||
"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