Merge branch 'fix-not-supported-languages-for-instance-language' into 'master'
Fix About page crashing when instance language is not supported See merge request framasoft/mobilizon!679
This commit is contained in:
commit
15eeae99c8
@ -128,6 +128,15 @@ export const LANGUAGES = gql`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
export const LANGUAGES_CODES = gql`
|
||||||
|
query LanguagesCodes($codes: [String!]) {
|
||||||
|
languages(codes: $codes) {
|
||||||
|
code
|
||||||
|
name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
export const ADMIN_SETTINGS_FRAGMENT = gql`
|
export const ADMIN_SETTINGS_FRAGMENT = gql`
|
||||||
fragment adminSettingsFragment on AdminSettings {
|
fragment adminSettingsFragment on AdminSettings {
|
||||||
instanceName
|
instanceName
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
<table class="table is-fullwidth">
|
<table class="table is-fullwidth">
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ $t("Instance languages") }}</td>
|
<td>{{ $t("Instance languages") }}</td>
|
||||||
<td>{{ formatList(config.languages.map((lang) => getLanguageNameForCode(lang))) }}</td>
|
<td :title="this.config.languages.join(', ')">{{ formattedLanguageList }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ $t("Mobilizon version") }}</td>
|
<td>{{ $t("Mobilizon version") }}</td>
|
||||||
@ -78,6 +78,8 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Vue } from "vue-property-decorator";
|
import { Component, Vue } from "vue-property-decorator";
|
||||||
import { formatList } from "@/utils/i18n";
|
import { formatList } from "@/utils/i18n";
|
||||||
|
import { LANGUAGES_CODES } from "@/graphql/admin";
|
||||||
|
import { ILanguage } from "@/types/admin.model";
|
||||||
import { ABOUT } from "../../graphql/config";
|
import { ABOUT } from "../../graphql/config";
|
||||||
import { STATISTICS } from "../../graphql/statistics";
|
import { STATISTICS } from "../../graphql/statistics";
|
||||||
import { IConfig } from "../../types/config.model";
|
import { IConfig } from "../../types/config.model";
|
||||||
@ -88,6 +90,17 @@ import langs from "../../i18n/langs.json";
|
|||||||
apollo: {
|
apollo: {
|
||||||
config: ABOUT,
|
config: ABOUT,
|
||||||
statistics: STATISTICS,
|
statistics: STATISTICS,
|
||||||
|
languages: {
|
||||||
|
query: LANGUAGES_CODES,
|
||||||
|
variables() {
|
||||||
|
return {
|
||||||
|
codes: this.config.languages,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
skip() {
|
||||||
|
return !this.config.languages;
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
export default class AboutInstance extends Vue {
|
export default class AboutInstance extends Vue {
|
||||||
@ -95,7 +108,7 @@ export default class AboutInstance extends Vue {
|
|||||||
|
|
||||||
statistics!: IStatistics;
|
statistics!: IStatistics;
|
||||||
|
|
||||||
formatList = formatList;
|
languages!: ILanguage[];
|
||||||
|
|
||||||
get isContactEmail(): boolean {
|
get isContactEmail(): boolean {
|
||||||
return this.config && this.config.contact.includes("@");
|
return this.config && this.config.contact.includes("@");
|
||||||
@ -105,6 +118,11 @@ export default class AboutInstance extends Vue {
|
|||||||
return this.config && this.config.contact.match(/^https?:\/\//g) !== null;
|
return this.config && this.config.contact.match(/^https?:\/\//g) !== null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get formattedLanguageList(): string {
|
||||||
|
const list = this.languages.map(({ name }) => name);
|
||||||
|
return formatList(list);
|
||||||
|
}
|
||||||
|
|
||||||
// eslint-disable-next-line class-methods-use-this
|
// eslint-disable-next-line class-methods-use-this
|
||||||
getLanguageNameForCode(code: string): string {
|
getLanguageNameForCode(code: string): string {
|
||||||
const languageMaps = langs as Record<string, any>;
|
const languageMaps = langs as Record<string, any>;
|
||||||
|
@ -157,6 +157,22 @@ defmodule Mobilizon.GraphQL.Resolvers.Admin do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def get_list_of_languages(_parent, %{codes: codes}, _resolution) when is_list(codes) do
|
||||||
|
locale = Gettext.get_locale()
|
||||||
|
locale = if Cldr.known_locale_name?(locale), do: locale, else: "en"
|
||||||
|
|
||||||
|
case Language.known_languages(locale) do
|
||||||
|
data when is_map(data) ->
|
||||||
|
data
|
||||||
|
|> Enum.map(fn {code, elem} -> %{code: code, name: elem.standard} end)
|
||||||
|
|> Enum.filter(fn %{code: code, name: _name} -> code in codes end)
|
||||||
|
|> (&{:ok, &1}).()
|
||||||
|
|
||||||
|
{:error, err} ->
|
||||||
|
{:error, err}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def get_list_of_languages(_parent, _args, _resolution) do
|
def get_list_of_languages(_parent, _args, _resolution) do
|
||||||
locale = Gettext.get_locale()
|
locale = Gettext.get_locale()
|
||||||
|
|
||||||
|
@ -123,6 +123,7 @@ defmodule Mobilizon.GraphQL.Schema.AdminType do
|
|||||||
end
|
end
|
||||||
|
|
||||||
field :languages, type: list_of(:language) do
|
field :languages, type: list_of(:language) do
|
||||||
|
arg(:codes, list_of(:string))
|
||||||
resolve(&Admin.get_list_of_languages/3)
|
resolve(&Admin.get_list_of_languages/3)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user