Various UI stuff (mainly implement mookup)

Fix lint

Disable modern mode

Fixes

UI fixes

Fixes

Ignore .po~ files

Fixes

Fix homepage

Fixes

Fixes

Mix format

Fix tests

Fix tests (yeah…)

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-04-03 17:29:03 +02:00
parent 2dcd65ea78
commit da2a0593ca
66 changed files with 14247 additions and 15872 deletions

View File

@@ -95,3 +95,33 @@ mutation ($preferredUsername: String!, $name: String!, $summary: String!, $email
}
}
`;
export const FETCH_GROUP = gql`
query($name:String!) {
group(preferredUsername: $name) {
id,
url,
name,
domain,
summary,
preferredUsername,
suspended,
avatarUrl,
bannerUrl,
organizedEvents {
uuid,
title,
beginsOn
},
members {
role,
actor {
id,
name,
domain,
preferredUsername
}
}
}
}
`;

View File

@@ -4,6 +4,7 @@ export const CONFIG = gql`
query {
config {
name,
description,
registrationsOpen
}
}

View File

@@ -51,6 +51,10 @@ export const FETCH_EVENT = gql`
# },
participants {
${participantQuery}
},
tags {
slug,
title
}
}
}
@@ -75,7 +79,8 @@ export const FETCH_EVENTS = gql`
# online_address,
# phone_address,
physicalAddress {
description
description,
locality
}
organizerActor {
avatarUrl,

View File

@@ -6,12 +6,14 @@ query SearchEvents($searchText: String!) {
...on Event {
title,
uuid,
beginsOn,
__typename
},
...on Actor {
avatarUrl,
domain,
preferredUsername,
name,
__typename
}
}