mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
117 lines
2.4 KiB
Vue
117 lines
2.4 KiB
Vue
<template>
|
|
<component :is="tag" class="ds-logo" :class="[inverse && 'ds-logo-inverse']">
|
|
<img
|
|
v-if="!inverse"
|
|
class="ds-logo-svg"
|
|
:alt="metadata.APPLICATION_NAME + ' ' + logo.alt"
|
|
:src="logo.path"
|
|
:style="logoWidthStyle"
|
|
/>
|
|
<img
|
|
v-else
|
|
class="ds-logo-svg"
|
|
:alt="metadata.APPLICATION_NAME + ' ' + logo.alt"
|
|
:src="logo.path"
|
|
:style="logoWidthStyle"
|
|
/>
|
|
</component>
|
|
</template>
|
|
|
|
<script>
|
|
import logos from '~/constants/logos.js'
|
|
import metadata from '~/constants/metadata.js'
|
|
|
|
/**
|
|
* This component displays the brand's logo.
|
|
* @version 1.0.0
|
|
*/
|
|
export default {
|
|
name: 'Logo',
|
|
props: {
|
|
/**
|
|
* Logo type
|
|
*/
|
|
logoType: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
/**
|
|
* Logo width
|
|
*/
|
|
logoWidth: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
/**
|
|
* Inverse the logo
|
|
*/
|
|
inverse: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
/**
|
|
* The html element name used for the logo.
|
|
*/
|
|
tag: {
|
|
type: String,
|
|
default: 'div',
|
|
},
|
|
},
|
|
data() {
|
|
const logosObject = {
|
|
header: { path: logos.LOGO_HEADER_PATH, alt: 'Header', widthDefault: '130px' },
|
|
welcome: { path: logos.LOGO_WELCOME_PATH, alt: 'Welcome', widthDefault: '200px' },
|
|
signup: { path: logos.LOGO_SIGNUP_PATH, alt: 'Sign Up', widthDefault: '200px' },
|
|
logout: { path: logos.LOGO_LOGOUT_PATH, alt: 'Logging Out', widthDefault: '200px' },
|
|
passwordReset: {
|
|
path: logos.LOGO_PASSWORD_RESET_PATH,
|
|
alt: 'Reset Your Password',
|
|
widthDefault: '200px',
|
|
},
|
|
maintenance: {
|
|
path: logos.LOGO_MAINTENACE_RESET_PATH,
|
|
alt: 'Under Maintenance',
|
|
widthDefault: '200px',
|
|
},
|
|
}
|
|
return {
|
|
logo: logosObject[this.logoType],
|
|
metadata,
|
|
}
|
|
},
|
|
computed: {
|
|
logoWidthStyle() {
|
|
let width = ''
|
|
if (this.logoWidth === null) {
|
|
width = this.logo.widthDefault
|
|
} else {
|
|
width = this.logoWidth
|
|
}
|
|
return `width: ${width};`
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.ds-logo {
|
|
@include reset;
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: $text-color-primary;
|
|
}
|
|
|
|
.ds-logo-inverse {
|
|
color: $text-color-primary-inverse;
|
|
}
|
|
|
|
.ds-logo-svg {
|
|
width: 130px;
|
|
height: auto;
|
|
fill: #000000;
|
|
}
|
|
</style>
|
|
|
|
<docs src="./demo.md"></docs>
|