Added PSA.
This commit is contained in:
parent
4aef570096
commit
ea0e8f5f09
|
@ -64,6 +64,11 @@ module.exports = {
|
|||
usernameLength: [2, 24],
|
||||
usernamePattern: /^[a-zA-Z0-9_-]+$/,
|
||||
},
|
||||
psa: {
|
||||
text: 'Welcome to traxxx!', // html enabled
|
||||
type: 'notice', // notice, alert
|
||||
enabled: false,
|
||||
},
|
||||
stashes: {
|
||||
nameLength: [2, 24],
|
||||
namePattern: /^[a-zA-Z0-9!?$&\s_-]+$/,
|
||||
|
|
|
@ -16,6 +16,13 @@
|
|||
ref="content"
|
||||
class="content"
|
||||
>
|
||||
<p
|
||||
v-if="psa.enabled"
|
||||
class="psa"
|
||||
:class="{ [psa.type]: true }"
|
||||
v-html="psa.text"
|
||||
/>
|
||||
|
||||
<slot @scroll="scroll" />
|
||||
</div>
|
||||
|
||||
|
@ -39,7 +46,12 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted, nextTick } from 'vue';
|
||||
import {
|
||||
ref,
|
||||
onMounted,
|
||||
nextTick,
|
||||
inject,
|
||||
} from 'vue';
|
||||
|
||||
import events from '#/src/events.js';
|
||||
|
||||
|
@ -47,6 +59,9 @@ import Header from '#/components/header/header.vue';
|
|||
import Sidebar from '#/components/sidebar/sidebar.vue';
|
||||
import BottomNavigation from '#/components/footer/navigation.vue';
|
||||
|
||||
const pageContext = inject('pageContext');
|
||||
const { psa } = pageContext.env;
|
||||
|
||||
const content = ref(null);
|
||||
const feedback = ref(null);
|
||||
const feedbackContainer = ref(null);
|
||||
|
@ -114,6 +129,24 @@ onMounted(() => {
|
|||
transform: translate(100%, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.psa {
|
||||
padding: .5rem 1rem;
|
||||
margin: 0;
|
||||
box-shadow: inset 0 0 3px var(--shadow-weak-20);
|
||||
background: var(--notice);
|
||||
color: var(--text-light);
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
|
||||
&.alert {
|
||||
background: var(--warn);
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style scoped>
|
||||
|
|
|
@ -198,6 +198,7 @@ export default async function initServer() {
|
|||
maxMatches: config.database.manticore.maxMatches,
|
||||
maxAggregateSize: config.database.manticore.maxAggregateSize,
|
||||
media: config.media,
|
||||
psa: config.psa,
|
||||
},
|
||||
meta: {
|
||||
unseenNotifications,
|
||||
|
|
Loading…
Reference in New Issue