Initiated Avatar Component

pull/726/head
Cagatay Civici 2020-11-28 20:19:30 +03:00
parent 5148237374
commit 5df9603fe2
48 changed files with 870 additions and 140340 deletions

1
exports/avatar.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from './components/avatar/Avatar';

2
exports/avatar.js Normal file
View File

@ -0,0 +1,2 @@
'use strict';
module.exports = require('./components/avatar/Avatar.vue');

1
exports/avatargroup.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from './components/avatargroup/AvatarGroup';

2
exports/avatargroup.js Normal file
View File

@ -0,0 +1,2 @@
'use strict';
module.exports = require('./components/avatargroup/AvatarGroup.vue');

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -4283,6 +4283,15 @@
background-color: rgba(0, 0, 0, 0.9); background-color: rgba(0, 0, 0, 0.9);
} }
.p-avatar {
background-color: #dee2e6;
border-radius: 3px;
}
.p-avatar-group .p-avatar {
border: 2px solid #ffffff;
}
.p-inplace .p-inplace-display { .p-inplace .p-inplace-display {
padding: 0.5rem 0.5rem; padding: 0.5rem 0.5rem;
border-radius: 3px; border-radius: 3px;

View File

@ -4283,6 +4283,15 @@
background-color: rgba(0, 0, 0, 0.9); background-color: rgba(0, 0, 0, 0.9);
} }
.p-avatar {
background-color: #dee2e6;
border-radius: 3px;
}
.p-avatar-group .p-avatar {
border: 2px solid #ffffff;
}
.p-inplace .p-inplace-display { .p-inplace .p-inplace-display {
padding: 0.5rem 0.5rem; padding: 0.5rem 0.5rem;
border-radius: 3px; border-radius: 3px;

View File

@ -4283,6 +4283,15 @@
background-color: rgba(0, 0, 0, 0.9); background-color: rgba(0, 0, 0, 0.9);
} }
.p-avatar {
background-color: #dee2e6;
border-radius: 3px;
}
.p-avatar-group .p-avatar {
border: 2px solid #ffffff;
}
.p-inplace .p-inplace-display { .p-inplace .p-inplace-display {
padding: 0.5rem 0.5rem; padding: 0.5rem 0.5rem;
border-radius: 3px; border-radius: 3px;

View File

@ -4283,6 +4283,15 @@
background-color: rgba(0, 0, 0, 0.9); background-color: rgba(0, 0, 0, 0.9);
} }
.p-avatar {
background-color: #dee2e6;
border-radius: 3px;
}
.p-avatar-group .p-avatar {
border: 2px solid #ffffff;
}
.p-inplace .p-inplace-display { .p-inplace .p-inplace-display {
padding: 0.5rem 0.5rem; padding: 0.5rem 0.5rem;
border-radius: 3px; border-radius: 3px;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -248,6 +248,7 @@
<div class="menu-category">Misc</div> <div class="menu-category">Misc</div>
<div class="menu-items"> <div class="menu-items">
<router-link to="/avatar">Avatar <span class="p-tag">New</span></router-link>
<router-link to="/badge">Badge</router-link> <router-link to="/badge">Badge</router-link>
<router-link to="/blockui">BlockUI</router-link> <router-link to="/blockui">BlockUI</router-link>
<router-link to="/divider">Divider <span class="p-tag">New</span></router-link> <router-link to="/divider">Divider <span class="p-tag">New</span></router-link>

9
src/components/avatar/Avatar.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
import Vue from 'vue';
declare class Avatar extends Vue {
letter?: string;
icon?: string;
image?: string;
}
export default Avatar;

View File

@ -0,0 +1,110 @@
<template>
<div :class="containerClass">
<slot>
<span class="p-avatar-letter" v-if="letter">{{letter}}</span>
<span :class="getIconClass()" v-else-if="icon"></span>
<img :src="image" v-else-if="image">
</slot>
</div>
</template>
<script>
export default {
props: {
letter: {
type: String,
default: null
},
icon: {
type: String,
default: null
},
image: {
type: String,
default: null
},
size: {
type: String,
default: 'normal'
},
shape: {
type: String,
default: "square"
}
},
methods: {
getIconClass() {
return ['p-avatar-icon', this.icon];
}
},
computed: {
containerClass() {
return ['p-avatar p-component', {
'p-avatar-image': this.image != null,
'p-avatar-circle': this.shape === 'circle',
'p-avatar-sm': this.size === 'small',
'p-avatar-lg': this.size === 'large',
'p-avatar-xl': this.size === 'xlarge'
}];
}
}
}
</script>
<style>
.p-avatar {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 2rem;
font-size: 1rem;
}
.p-avatar.p-avatar-image {
background-color: transparent;
}
.p-avatar-circle {
border-radius: 50%;
}
.p-avatar .p-avatar-icon {
font-size: 1rem;
}
.p-avatar img {
width: 100%;
height: 100%;
}
.p-avatar.p-avatar-sm {
width: 1rem;
height: 1rem;
font-size: .75rem;
}
.p-avatar-sm .p-avatar-icon {
font-size: .75rem;
}
.p-avatar.p-avatar-lg {
width: 3rem;
height: 3rem;
font-size: 1.5rem;
}
.p-avatar-lg .p-avatar-icon {
font-size: 1.5rem;
}
.p-avatar.p-avatar-xl {
width: 4rem;
height: 4rem;
font-size: 2rem;
}
.p-avatar-xl .p-avatar-icon {
font-size: 2rem;
}
</style>

View File

@ -0,0 +1,5 @@
import Vue from 'vue';
declare class AvatarGroup extends Vue {}
export default AvatarGroup;

View File

@ -0,0 +1,20 @@
<template>
<div class="p-avatar-group p-component">
<slot></slot>
</div>
</template>
<script>
export default {}
</script>
<style>
.p-avatar-group .p-avatar + .p-avatar {
margin-left: -1rem;
}
.p-avatar-group {
display: flex;
align-items: center;
}
</style>

View File

@ -10,15 +10,15 @@
export default { export default {
props: { props: {
align: { align: {
mode: String, type: String,
default: null default: null
}, },
layout: { layout: {
mode: String, type: String,
default: 'horizontal' default: 'horizontal'
}, },
type: { type: {
mode: String, type: String,
default: 'solid' default: 'solid'
} }
}, },

View File

@ -5,6 +5,8 @@ import App from './App.vue';
import AutoComplete from './components/autocomplete/AutoComplete'; import AutoComplete from './components/autocomplete/AutoComplete';
import Accordion from './components/accordion/Accordion'; import Accordion from './components/accordion/Accordion';
import AccordionTab from './components/accordiontab/AccordionTab'; import AccordionTab from './components/accordiontab/AccordionTab';
import Avatar from './components/avatar/Avatar';
import AvatarGroup from './components/avatargroup/AvatarGroup';
import BlockUI from './components/blockui/BlockUI'; import BlockUI from './components/blockui/BlockUI';
import Breadcrumb from './components/breadcrumb/Breadcrumb'; import Breadcrumb from './components/breadcrumb/Breadcrumb';
import Button from './components/button/Button'; import Button from './components/button/Button';
@ -112,6 +114,8 @@ app.directive('ripple', Ripple);
app.component('Accordion', Accordion); app.component('Accordion', Accordion);
app.component('AccordionTab', AccordionTab); app.component('AccordionTab', AccordionTab);
app.component('Avatar', Avatar);
app.component('AvatarGroup', AvatarGroup);
app.component('AutoComplete', AutoComplete); app.component('AutoComplete', AutoComplete);
app.component('BlockUI', BlockUI); app.component('BlockUI', BlockUI);
app.component('Breadcrumb', Breadcrumb); app.component('Breadcrumb', Breadcrumb);

View File

@ -17,6 +17,11 @@ const routes = [
name: 'accessibility', name: 'accessibility',
component: () => import('../views/accessibility/AccessibilityDemo.vue') component: () => import('../views/accessibility/AccessibilityDemo.vue')
}, },
{
path: '/avatar',
name: 'avatar',
component: () => import('../views/avatar/AvatarDemo.vue')
},
{ {
path: '/support', path: '/support',
name: 'support', name: 'support',

View File

@ -0,0 +1,90 @@
<template>
<div>
<div class="content-section introduction">
<div class="feature-intro">
<h1>Avatar</h1>
<p>Avatar represents people using icons, letters and images.</p>
</div>
</div>
<div class="content-section implementation">
<div class="p-grid">
<div class="p-col-12 p-md-6">
<div class="card">
<h5>Letter</h5>
<Avatar letter="P" class="p-mr-2" size="xlarge" />
<Avatar letter="V" class="p-mr-2" size="large" style="background-color:#2196F3; color: #ffffff"/>
<Avatar letter="U" class="p-mr-2" style="background-color:#9c27b0; color: #ffffff" />
</div>
</div>
<div class="p-col-12 p-md-6">
<div class="card">
<h5>Letter - Circle</h5>
<Avatar letter="P" class="p-mr-2" size="xlarge" shape="circle" />
<Avatar letter="V" class="p-mr-2" size="large" style="background-color:#2196F3; color: #ffffff" shape="circle" />
<Avatar letter="U" class="p-mr-2" style="background-color:#9c27b0; color: #ffffff" shape="circle" />
</div>
</div>
</div>
<div class="p-grid">
<div class="p-col-12 p-md-6">
<div class="card">
<h5>Icon</h5>
<Avatar icon="pi pi-user" class="p-mr-2" size="xlarge" />
<Avatar icon="pi pi-user" class="p-mr-2" size="large" style="background-color:#2196F3; color: #ffffff"/>
<Avatar icon="pi pi-user" class="p-mr-2" style="background-color:#9c27b0; color: #ffffff" />
</div>
</div>
<div class="p-col-12 p-md-6">
<div class="card">
<h5>Icon - Circle</h5>
<Avatar icon="pi pi-user" class="p-mr-2" size="xlarge" shape="circle" />
<Avatar icon="pi pi-user" class="p-mr-2" size="large" style="background-color:#2196F3; color: #ffffff" shape="circle" />
<Avatar icon="pi pi-user" class="p-mr-2" style="background-color:#9c27b0; color: #ffffff" shape="circle" />
</div>
</div>
</div>
<div class="p-grid">
<div class="p-col-12 p-md-6">
<div class="card">
<h5>Image</h5>
<Avatar image="demo/images/avatar/amyelsner.png" class="p-mr-2" size="xlarge" shape="circle" />
<Avatar image="demo/images/avatar/asiyajavayant.png" class="p-mr-2" size="large" shape="circle" />
<Avatar image="demo/images/avatar/onyamalimba.png" class="p-mr-2" shape="circle" />
</div>
</div>
<div class="p-col-12 p-md-6">
<div class="card">
<h5>Group</h5>
<AvatarGroup class="p-mb-3">
<Avatar image="demo/images/avatar/amyelsner.png" size="large" shape="circle"/>
<Avatar image="demo/images/avatar/asiyajavayant.png" size="large" shape="circle"/>
<Avatar image="demo/images/avatar/onyamalimba.png" size="large" shape="circle"/>
<Avatar image="demo/images/avatar/ionibowcher.png" size="large" shape="circle"/>
<Avatar image="demo/images/avatar/xuxuefeng.png" size="large" shape="circle"/>
<Avatar letter="+2" shape="circle" size="large" style="background-color:#9c27b0; color: #ffffff; font-size: 1rem" />
</AvatarGroup>
</div>
</div>
</div>
</div>
<AvatarDoc />
</div>
</template>
<script>
import AvatarDoc from './AvatarDoc';
export default {
components: {
'AvatarDoc': AvatarDoc
}
}
</script>

View File

@ -0,0 +1,71 @@
<template>
<div class="content-section documentation">
<TabView>
<TabPanel header="Documentation">
<h5>Import</h5>
<pre v-code.script>
<code>
import Avatar from 'primevue/avatar';
import AvatarGroup from 'primevue/avatargroup';
</code></pre>
<h5>Getting Started</h5>
<p>ProgressBar has two modes; "determinate" (default) and "indeterminate". In determinate mode, a value between 0 and 100 is required to display the progress.</p>
<pre v-code>
<code>
</code></pre>
<h5>Properties</h5>
<div class="doc-tablewrapper">
<table class="doc-table">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h5>Styling</h5>
<p>Following is the list of structural style classes, for theming classes visit <router-link to="/theming">theming</router-link> page.</p>
<div class="doc-tablewrapper">
<table class="doc-table">
<thead>
<tr>
<th>Name</th>
<th>Element</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h5>Dependencies</h5>
<p>None.</p>
</TabPanel>
<TabPanel header="Source">
<a href="https://github.com/primefaces/primevue/tree/master/src/views/avatar" class="btn-viewsource" target="_blank" rel="noopener noreferrer">
<span>View on GitHub</span>
</a>
<pre v-code>
<code><template v-pre>
</template>
</code></pre>
</TabPanel>
</TabView>
</div>
</template>