|
|
@ -254,9 +254,14 @@ |
|
|
|
|
|
|
|
<!-- Show QR--> |
|
|
|
|
|
|
|
<button |
|
|
|
class="align-middle bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white p-2 rounded transition" |
|
|
|
:title="$t('showQR')" @click="qrcode = `./api/wireguard/client/${client.id}/qrcode.svg`"> |
|
|
|
<button :disabled="!client.downloadableConfig" |
|
|
|
class="align-middle bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 p-2 rounded transition" |
|
|
|
:class="{ |
|
|
|
'hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white': client.downloadableConfig, |
|
|
|
'inactive': !client.downloadableConfig |
|
|
|
}" |
|
|
|
:title="!client.downloadableConfig ? $t('noPrivKey') : $t('showQR')" |
|
|
|
@click="qrcode = `./api/wireguard/client/${client.id}/qrcode.svg`"> |
|
|
|
<svg class="w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" |
|
|
|
stroke="currentColor"> |
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" |
|
|
@ -265,9 +270,16 @@ |
|
|
|
</button> |
|
|
|
|
|
|
|
<!-- Download Config --> |
|
|
|
<a :href="'./api/wireguard/client/' + client.id + '/configuration'" download |
|
|
|
class="align-middle inline-block bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white p-2 rounded transition" |
|
|
|
:title="$t('downloadConfig')"> |
|
|
|
<a :disabled="!client.downloadableConfig" |
|
|
|
:href="'./api/wireguard/client/' + client.id + '/configuration'" |
|
|
|
:download="client.downloadableConfig ? 'configuration' : null" |
|
|
|
class="align-middle inline-block bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 p-2 rounded transition" |
|
|
|
:class="{ |
|
|
|
'hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white': client.downloadableConfig, |
|
|
|
'inactive': !client.downloadableConfig |
|
|
|
}" |
|
|
|
:title="!client.downloadableConfig ? $t('noPrivKey') : $t('downloadConfig')" |
|
|
|
@click="if(!client.downloadableConfig) { $event.preventDefault(); }"> |
|
|
|
<svg class="w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" |
|
|
|
stroke="currentColor"> |
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" |
|
|
|