Lint JS files

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-03-22 10:57:14 +01:00
parent e319735ab9
commit b698eb470f
27 changed files with 237 additions and 243 deletions

View File

@@ -10,7 +10,7 @@
<router-link :to="{ name: 'Event', params:{ uuid: event.uuid } }">
<h2 class="title">{{ event.title }}</h2>
</router-link>
<span>{{ event.begins_on | formatDay }}</span>
<span>{{ event.beginsOn | formatDay }}</span>
</div>
<div v-if="!hideDetails">
<div v-if="event.participants.length === 1">
@@ -33,8 +33,8 @@
</template>
<script lang="ts">
import {IEvent, ParticipantRole} from "@/types/event.model";
import { Component, Prop, Vue } from "vue-property-decorator";
import { IEvent, ParticipantRole } from '@/types/event.model';
import { Component, Prop, Vue } from 'vue-property-decorator';
@Component
export default class EventCard extends Vue {
@@ -43,8 +43,8 @@ export default class EventCard extends Vue {
data() {
return {
ParticipantRole: ParticipantRole
}
ParticipantRole,
};
}
}
</script>

View File

@@ -19,8 +19,8 @@
</template>
<script lang="ts">
import { Component, Prop, Vue } from "vue-property-decorator";
import { IGroup } from "../../types/actor.model";
import { Component, Prop, Vue } from 'vue-property-decorator';
import { IGroup } from '../../types/actor.model';
@Component
export default class GroupCard extends Vue {

View File

@@ -43,14 +43,14 @@
</template>
<script lang="ts">
import { Component, Vue, Watch } from "vue-property-decorator";
import { SEARCH } from "@/graphql/search";
import { CURRENT_USER_CLIENT } from "@/graphql/user";
import { onLogout } from "@/vue-apollo";
import { deleteUserData } from "@/utils/auth";
import { LOGGED_PERSON } from "@/graphql/actor";
import { Component, Vue, Watch } from 'vue-property-decorator';
import { SEARCH } from '@/graphql/search';
import { CURRENT_USER_CLIENT } from '@/graphql/user';
import { onLogout } from '@/vue-apollo';
import { deleteUserData } from '@/utils/auth';
import { LOGGED_PERSON } from '@/graphql/actor';
import { IActor, IPerson } from '@/types/actor.model';
import { RouteName } from '@/router'
import { RouteName } from '@/router';
@Component({
apollo: {
@@ -58,25 +58,25 @@ import { RouteName } from '@/router'
query: SEARCH,
variables() {
return {
searchText: this.searchText
searchText: this.searchText,
};
},
skip() {
return !this.searchText;
}
},
},
currentUser: {
query: CURRENT_USER_CLIENT
query: CURRENT_USER_CLIENT,
},
loggedPerson: {
query: LOGGED_PERSON
}
}
query: LOGGED_PERSON,
},
},
})
export default class NavBar extends Vue {
notifications = [
{ header: "Coucou" },
{ title: "T'as une notification", subtitle: "Et elle est cool" }
{ header: 'Coucou' },
{ title: "T'as une notification", subtitle: 'Et elle est cool' },
];
model = null;
search: any[] = [];
@@ -87,12 +87,12 @@ export default class NavBar extends Vue {
get items() {
return this.search.map(searchEntry => {
switch (searchEntry.__typename) {
case "Actor":
case 'Actor':
searchEntry.label =
searchEntry.preferredUsername +
(searchEntry.domain === null ? "" : `@${searchEntry.domain}`);
(searchEntry.domain === null ? '' : `@${searchEntry.domain}`);
break;
case "Event":
case 'Event':
searchEntry.label = searchEntry.title;
break;
}
@@ -124,8 +124,8 @@ export default class NavBar extends Vue {
}
enter() {
console.log("enter");
this.$apollo.queries["search"].refetch();
console.log('enter');
this.$apollo.queries['search'].refetch();
}
logout() {