fix(dependencies): update @gltf-transform packages and sequelize-cli version
- Upgraded @gltf-transform/cli, core, extensions, and functions to version 4.3.0 for improved functionality and compatibility. - Updated sequelize-cli to version 6.6.5 to address potential vulnerabilities. - Added an overrides section in package.json for minimatch to ensure consistent behavior across environments. - Refactored the EroticAccessView.vue component for improved structure and readability.
This commit is contained in:
@@ -1,42 +1,46 @@
|
||||
<template>
|
||||
<div class="erotic-access-page">
|
||||
<section class="erotic-access-hero surface-card">
|
||||
<span class="erotic-access-eyebrow">{{ $t('socialnetwork.erotic.eyebrow') }}</span>
|
||||
<h2>{{ $t('socialnetwork.erotic.accessTitle') }}</h2>
|
||||
<p>{{ $t('socialnetwork.erotic.accessIntro') }}</p>
|
||||
</section>
|
||||
<div class="contenthidden">
|
||||
<div class="contentscroll">
|
||||
<div class="erotic-access-page">
|
||||
<section class="erotic-access-hero surface-card">
|
||||
<span class="erotic-access-eyebrow">{{ $t('socialnetwork.erotic.eyebrow') }}</span>
|
||||
<h2>{{ $t('socialnetwork.erotic.accessTitle') }}</h2>
|
||||
<p>{{ $t('socialnetwork.erotic.accessIntro') }}</p>
|
||||
</section>
|
||||
|
||||
<section class="erotic-access-panel surface-card">
|
||||
<div class="erotic-access-status">
|
||||
<strong>{{ statusTitle }}</strong>
|
||||
<span>{{ statusText }}</span>
|
||||
<section class="erotic-access-panel surface-card">
|
||||
<div class="erotic-access-status">
|
||||
<strong>{{ statusTitle }}</strong>
|
||||
<span>{{ statusText }}</span>
|
||||
</div>
|
||||
|
||||
<div v-if="account?.adultVerificationRequest" class="erotic-access-request">
|
||||
<strong>{{ $t('socialnetwork.erotic.requestInfoTitle') }}</strong>
|
||||
<span>{{ account.adultVerificationRequest.originalName }}</span>
|
||||
<span v-if="account.adultVerificationRequest.submittedAt">{{ formattedSubmittedAt }}</span>
|
||||
<span v-if="account.adultVerificationRequest.note">{{ account.adultVerificationRequest.note }}</span>
|
||||
</div>
|
||||
|
||||
<div class="erotic-access-actions">
|
||||
<router-link to="/settings/account" class="erotic-access-link">
|
||||
{{ $t('socialnetwork.erotic.settingsLink') }}
|
||||
</router-link>
|
||||
</div>
|
||||
|
||||
<form v-if="canRequestVerification" class="erotic-access-form" @submit.prevent="requestVerification">
|
||||
<label>
|
||||
<span>{{ $t('socialnetwork.erotic.documentLabel') }}</span>
|
||||
<input type="file" accept=".jpg,.jpeg,.png,.webp,.pdf" @change="handleFileChange" />
|
||||
</label>
|
||||
<label>
|
||||
<span>{{ $t('socialnetwork.erotic.noteLabel') }}</span>
|
||||
<textarea v-model="note" rows="4"></textarea>
|
||||
</label>
|
||||
<button type="submit">{{ $t('socialnetwork.erotic.requestVerification') }}</button>
|
||||
</form>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div v-if="account?.adultVerificationRequest" class="erotic-access-request">
|
||||
<strong>{{ $t('socialnetwork.erotic.requestInfoTitle') }}</strong>
|
||||
<span>{{ account.adultVerificationRequest.originalName }}</span>
|
||||
<span v-if="account.adultVerificationRequest.submittedAt">{{ formattedSubmittedAt }}</span>
|
||||
<span v-if="account.adultVerificationRequest.note">{{ account.adultVerificationRequest.note }}</span>
|
||||
</div>
|
||||
|
||||
<div class="erotic-access-actions">
|
||||
<router-link to="/settings/account" class="erotic-access-link">
|
||||
{{ $t('socialnetwork.erotic.settingsLink') }}
|
||||
</router-link>
|
||||
</div>
|
||||
|
||||
<form v-if="canRequestVerification" class="erotic-access-form" @submit.prevent="requestVerification">
|
||||
<label>
|
||||
<span>{{ $t('socialnetwork.erotic.documentLabel') }}</span>
|
||||
<input type="file" accept=".jpg,.jpeg,.png,.webp,.pdf" @change="handleFileChange" />
|
||||
</label>
|
||||
<label>
|
||||
<span>{{ $t('socialnetwork.erotic.noteLabel') }}</span>
|
||||
<textarea v-model="note" rows="4"></textarea>
|
||||
</label>
|
||||
<button type="submit">{{ $t('socialnetwork.erotic.requestVerification') }}</button>
|
||||
</form>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -123,6 +127,7 @@ export default {
|
||||
display: grid;
|
||||
gap: 18px;
|
||||
max-width: 920px;
|
||||
padding-bottom: 24px;
|
||||
}
|
||||
|
||||
.erotic-access-hero,
|
||||
|
||||
Reference in New Issue
Block a user