Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-11-18 16:06:24 +01:00
parent 3d905714c3
commit f35698005a
7 changed files with 20 additions and 6 deletions

View File

@@ -387,6 +387,7 @@ export default class EditorComponent extends Vue {
placement: 'top-start',
inertia: true,
duration: [400, 200],
// @ts-ignore for some reason
showOnInit: true,
arrow: true,
arrowType: 'round',

View File

@@ -70,7 +70,7 @@ query {
}`;
export const CURRENT_ACTOR_CLIENT = gql`
query {
query currentActor {
currentActor @client {
id,
avatar {

View File

@@ -289,6 +289,7 @@ export const EDIT_EVENT = gql`
$picture: PictureInput,
$onlineAddress: String,
$phoneAddress: String,
$organizerActorId: ID,
$category: String,
$physicalAddress: AddressInput,
$options: EventOptionsInput,
@@ -307,6 +308,7 @@ export const EDIT_EVENT = gql`
picture: $picture,
onlineAddress: $onlineAddress,
phoneAddress: $phoneAddress,
organizerActorId: $organizerActorId,
category: $category,
physicalAddress: $physicalAddress
options: $options,

View File

@@ -10,7 +10,7 @@
</div>
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
import { IActor } from '@/types/actor';
import IdentityPicker from './IdentityPicker.vue';
@@ -22,6 +22,11 @@ export default class IdentityPickerWrapper extends Vue {
isComponentModalActive: boolean = false;
currentIdentity: IActor = this.value;
@Watch('value')
updateCurrentActor(value) {
this.currentIdentity = value;
}
relay(identity: IActor) {
this.currentIdentity = identity;
this.$emit('input', identity);
@@ -36,4 +41,4 @@ export default class IdentityPickerWrapper extends Vue {
height: 1.5em;
vertical-align: text-bottom;
}
</style>
</style>