From 0b5ce620d60318c411ae9578d16c2ae78cc15528 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Mon, 17 Nov 2025 23:42:24 +0100 Subject: [PATCH] Added format option to actors, exposing age and gender. --- assets/mockup-release.ts | 43 +++++++++++++++++++++++++++++++ components/scenes/summaries.vue | 6 +++++ pages/users/@username/+Page.vue | 41 ++--------------------------- utils/process-summary-template.js | 19 +++++++++++++- 4 files changed, 69 insertions(+), 40 deletions(-) create mode 100644 assets/mockup-release.ts diff --git a/assets/mockup-release.ts b/assets/mockup-release.ts new file mode 100644 index 0000000..c732015 --- /dev/null +++ b/assets/mockup-release.ts @@ -0,0 +1,43 @@ +const now = new Date(); + +export default { + id: 0, + shootId: 12345, + title: 'Nut For Human Consumption', + slug: 'nut-for-human-consumption', + link: 'https://traxxx.me/scene/0/nut-for-human-consumption', + url: 'https://example.com/video/12345/nut-for-human-consumption', + date: now, + effectiveDate: now, + createdAt: new Date(now.getFullYear(), 0, 1), + actors: [ + { + name: 'Chanel Chakra', + gender: 'female', + ageThen: 26, + ageFromBirth: 31, + }, + { + name: 'Mo The Fucker', + gender: 'male', + ageThen: 32, + ageFromBirth: 37, + }, + ], + tags: [ + { name: 'anal' }, + { name: 'facefucking' }, + { name: 'deepthroat' }, + { name: 'blowjob' }, + { name: 'facial' }, + ], + movies: [{ + title: `Best Of Traxxx ${String(now.getFullYear()).slice(2)}`, + }], + channel: { + name: 'Traxxxed', + }, + network: { + name: 'Traxxx', + }, +}; diff --git a/components/scenes/summaries.vue b/components/scenes/summaries.vue index eef1582..ccf2d51 100644 --- a/components/scenes/summaries.vue +++ b/components/scenes/summaries.vue @@ -37,6 +37,7 @@ class="input edit" @input="update" @blur="save(false)" + @keydown.tab.prevent="indent" />