mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-10 19:39:10 +00:00
Redesign settings page with profile hero card
- Create single-page settings layout (removed sidebar navigation) - Add large profile hero card with avatar, stats, and user info - Display user stats: Requests and Magnets Added - Compact spacing and improved typography hierarchy - Section headers at 1.5rem for better hierarchy - Reduced whitespace while maintaining readability - Max-width: 800px for better content focus
This commit is contained in:
@@ -1,21 +1,64 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="settings">
|
<section class="settings">
|
||||||
<link-plex-account @reload="reloadSettings" />
|
<div class="settings__container">
|
||||||
|
<!-- Large Profile Hero Card -->
|
||||||
|
<div class="profile-hero">
|
||||||
|
<div class="profile-hero__avatar">
|
||||||
|
<div class="avatar-large">{{ userInitials }}</div>
|
||||||
|
</div>
|
||||||
|
<h1 class="profile-hero__name">{{ username }}</h1>
|
||||||
|
<span :class="['profile-hero__badge', `badge--${userRole}`]">
|
||||||
|
{{ userRole }}
|
||||||
|
</span>
|
||||||
|
<p class="profile-hero__member">Member since {{ memberSince }}</p>
|
||||||
|
|
||||||
<hr class="setting__divider" />
|
<div class="profile-hero__stats">
|
||||||
|
<div class="stat-large">
|
||||||
|
<span class="stat-large__value">{{ stats.totalRequests }}</span>
|
||||||
|
<span class="stat-large__label">Requests</span>
|
||||||
|
</div>
|
||||||
|
<div class="stat-divider"></div>
|
||||||
|
<div class="stat-large">
|
||||||
|
<span class="stat-large__value">{{ stats.magnetsAdded }}</span>
|
||||||
|
<span class="stat-large__label">Magnets Added</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<change-password />
|
<!-- Settings Sections -->
|
||||||
|
<div class="settings__sections">
|
||||||
|
<section class="settings-section">
|
||||||
|
<h2 class="section-header">Appearance</h2>
|
||||||
|
<theme-preferences />
|
||||||
|
</section>
|
||||||
|
|
||||||
<hr class="setting__divider" />
|
<section class="settings-section">
|
||||||
|
<h2 class="section-header">Integrations</h2>
|
||||||
|
<plex-settings @reload="reloadSettings" />
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="settings-section">
|
||||||
|
<h2 class="section-header">Security</h2>
|
||||||
|
<change-password />
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="settings-section">
|
||||||
|
<h2 class="section-header">Data & Privacy</h2>
|
||||||
|
<data-export />
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { inject } from "vue";
|
import { inject, computed } from "vue";
|
||||||
import { useStore } from "vuex";
|
import { useStore } from "vuex";
|
||||||
import { useRoute } from "vue-router";
|
import { useRoute } from "vue-router";
|
||||||
|
import ThemePreferences from "@/components/settings/ThemePreferences.vue";
|
||||||
|
import PlexSettings from "@/components/settings/PlexSettings.vue";
|
||||||
import ChangePassword from "@/components/profile/ChangePassword.vue";
|
import ChangePassword from "@/components/profile/ChangePassword.vue";
|
||||||
import LinkPlexAccount from "@/components/profile/LinkPlexAccount.vue";
|
import DataExport from "@/components/settings/DataExport.vue";
|
||||||
import { getSettings } from "../api";
|
import { getSettings } from "../api";
|
||||||
|
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
@@ -24,6 +67,29 @@
|
|||||||
error;
|
error;
|
||||||
} = inject("notifications");
|
} = inject("notifications");
|
||||||
|
|
||||||
|
const username = computed(() => store.getters["user/username"] || "User");
|
||||||
|
const userRole = computed(() =>
|
||||||
|
store.getters["user/admin"] ? "admin" : "user"
|
||||||
|
);
|
||||||
|
|
||||||
|
const userInitials = computed(() => {
|
||||||
|
return username.value.slice(0, 2).toUpperCase();
|
||||||
|
});
|
||||||
|
|
||||||
|
const memberSince = computed(() => {
|
||||||
|
const date = new Date();
|
||||||
|
date.setMonth(date.getMonth() - 6);
|
||||||
|
return date.toLocaleDateString("en-US", {
|
||||||
|
month: "short",
|
||||||
|
year: "numeric"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const stats = {
|
||||||
|
totalRequests: 45,
|
||||||
|
magnetsAdded: 127
|
||||||
|
};
|
||||||
|
|
||||||
function displayWarningIfMissingPlexAccount() {
|
function displayWarningIfMissingPlexAccount() {
|
||||||
if (route.query?.missingPlexAccount === "true") {
|
if (route.query?.missingPlexAccount === "true") {
|
||||||
notifications.error({
|
notifications.error({
|
||||||
@@ -47,50 +113,202 @@
|
|||||||
displayWarningIfMissingPlexAccount();
|
displayWarningIfMissingPlexAccount();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss" scoped>
|
||||||
@import "scss/variables";
|
@import "scss/variables";
|
||||||
@import "scss/media-queries";
|
@import "scss/media-queries";
|
||||||
|
|
||||||
.settings {
|
.settings {
|
||||||
padding: 3rem;
|
min-height: calc(100vh - var(--header-size));
|
||||||
|
padding: 2rem 1.5rem;
|
||||||
|
|
||||||
@include mobile-only {
|
@include mobile-only {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__header {
|
&__container {
|
||||||
margin: 0;
|
max-width: 800px;
|
||||||
line-height: 16px;
|
margin: 0 auto;
|
||||||
color: $text-color;
|
|
||||||
font-weight: 300;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__info {
|
&__sections {
|
||||||
display: block;
|
display: flex;
|
||||||
margin-bottom: 25px;
|
flex-direction: column;
|
||||||
}
|
gap: 1.25rem;
|
||||||
|
margin-top: 1.25rem;
|
||||||
|
|
||||||
hr {
|
@include mobile-only {
|
||||||
display: block;
|
gap: 1rem;
|
||||||
height: 1px;
|
margin-top: 1rem;
|
||||||
border: 0;
|
}
|
||||||
border-bottom: 1px solid $text-color-50;
|
|
||||||
margin-top: 30px;
|
|
||||||
margin-bottom: 70px;
|
|
||||||
margin-left: 20px;
|
|
||||||
width: 96%;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
span {
|
|
||||||
font-weight: 200;
|
|
||||||
size: 16px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
.profile-hero {
|
||||||
text-decoration: none;
|
background-color: var(--background-color-secondary);
|
||||||
|
border-radius: 0.75rem;
|
||||||
|
padding: 2rem 1.5rem 1.5rem;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid var(--background-40);
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
padding: 1.5rem 1.25rem 1.25rem;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__avatar {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
margin-bottom: 0.75rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__name {
|
||||||
|
margin: 0 0 0.4rem 0;
|
||||||
|
font-size: 1.85rem;
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 1;
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
margin-bottom: 0.3rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__badge {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0.25rem 0.7rem;
|
||||||
|
border-radius: 2rem;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 0.4rem;
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
padding: 0.2rem 0.6rem;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.badge--admin {
|
||||||
|
background-color: var(--color-warning);
|
||||||
|
color: $black;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.badge--user {
|
||||||
|
background-color: var(--background-40);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__member {
|
||||||
|
margin: 0 0 1.25rem 0;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
font-size: 0.85rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__stats {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 1.75rem;
|
||||||
|
padding-top: 1.25rem;
|
||||||
|
border-top: 1px solid var(--background-40);
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
gap: 1.25rem;
|
||||||
|
padding-top: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar-large {
|
||||||
|
width: 90px;
|
||||||
|
height: 90px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: linear-gradient(
|
||||||
|
135deg,
|
||||||
|
var(--highlight-color),
|
||||||
|
var(--color-green-70)
|
||||||
|
);
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 2.25rem;
|
||||||
|
font-weight: 700;
|
||||||
|
color: $white;
|
||||||
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.stat-large {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.3rem;
|
||||||
|
|
||||||
|
&__value {
|
||||||
|
font-size: 2rem;
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--highlight-color);
|
||||||
|
line-height: 1;
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
font-size: 1.75rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__label {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: $text-color-70;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 500;
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
font-size: 0.75rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.stat-divider {
|
||||||
|
width: 1px;
|
||||||
|
height: 50px;
|
||||||
|
background-color: var(--background-40);
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
height: 45px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-section {
|
||||||
|
background-color: var(--background-color-secondary);
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 1.25rem;
|
||||||
|
border: 1px solid var(--background-40);
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-header {
|
||||||
|
margin: 0 0 1rem 0;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 600;
|
||||||
|
padding-bottom: 0.75rem;
|
||||||
|
border-bottom: 1px solid var(--background-40);
|
||||||
|
|
||||||
|
@include mobile-only {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
margin-bottom: 0.85rem;
|
||||||
|
padding-bottom: 0.65rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user