Files
WPS3Media/ui/pro/SupportPage.svelte

77 lines
2.1 KiB
Svelte
Raw Normal View History

<script>
import {link} from "svelte-spa-router";
import {strings} from "../js/stores";
import {licence} from "./stores";
import SupportPage from "../components/SupportPage.svelte";
import DocumentationSidebar from "./DocumentationSidebar.svelte";
import SupportForm from "./SupportForm.svelte";
import Notification from "../components/Notification.svelte";
export let name = "support";
/**
* Potentially returns an error message detailing a problem with the currently set license key.
*
* @param {Object} licence
*
* @return {string}
*/
function getLicenceError( licence ) {
// If there are any errors, just return the first (there's usually only 1 anyway).
if ( licence.hasOwnProperty( "errors" ) && Object.values( licence.errors ).length > 0 ) {
return Object.values( licence.errors )[ 0 ];
}
return "";
}
$: licenceError = getLicenceError( $licence );
</script>
{#if $licence.is_set}
{#if $licence.is_valid && licenceError.length === 0}
<SupportPage {name} title={$strings.email_support_title} on:routeEvent>
<p class="licence-type" slot="header">{@html $licence.your_active_licence}</p>
<svelte:fragment slot="content">
<SupportForm/>
</svelte:fragment>
<svelte:fragment slot="footer">
<DocumentationSidebar/>
</svelte:fragment>
</SupportPage>
{:else}
<SupportPage {name} title={$strings.email_support_title} on:routeEvent>
<svelte:fragment slot="content">
<Notification warning inline>
<p>
{@html licenceError}
</p>
</Notification>
</svelte:fragment>
<svelte:fragment slot="footer">
<DocumentationSidebar/>
</svelte:fragment>
</SupportPage>
{/if}
{:else}
<SupportPage {name} title={$strings.email_support_title} on:routeEvent>
<svelte:fragment slot="content">
<Notification warning inline>
<p>
{$strings.licence_not_entered}
<a href="/license" use:link>
{$strings.please_enter_licence}
</a>
</p>
<p>{$strings.once_licence_entered}</p>
</Notification>
</svelte:fragment>
<svelte:fragment slot="footer">
<DocumentationSidebar/>
</svelte:fragment>
</SupportPage>
{/if}