Commit dacb6338 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch '35010-make-identicon-shared' into 'master'

Make Identicon for avatars a shared component

Closes #35010

See merge request !13919
parents 3fd0cd7d 8d024db6
<script>
import identicon from '../../vue_shared/components/identicon.vue';
import eventHub from '../event_hub';
import groupIdenticon from './group_identicon.vue';
export default {
components: {
groupIdenticon,
identicon,
},
props: {
group: {
......@@ -205,7 +205,7 @@ export default {
class="avatar s40"
:src="group.avatarUrl"
/>
<group-identicon
<identicon
v-else
:entity-id=group.id
:entity-name="group.name"
......
import Vue from 'vue';
import groupIdenticonComponent from '~/groups/components/group_identicon.vue';
import GroupsStore from '~/groups/stores/groups_store';
import { group1 } from './mock_data';
import identiconComponent from '~/vue_shared/components/identicon.vue';
const createComponent = () => {
const Component = Vue.extend(groupIdenticonComponent);
const store = new GroupsStore();
const group = store.decorateGroup(group1);
const Component = Vue.extend(identiconComponent);
return new Component({
propsData: {
entityId: group.id,
entityName: group.name,
entityId: 1,
entityName: 'entity-name',
},
}).$mount();
};
describe('GroupIdenticonComponent', () => {
describe('IdenticonComponent', () => {
let vm;
beforeEach(() => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment