mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-04-03 22:11:10 +02:00
Handle empty or missing icon
This commit is contained in:
parent
8ed572bb24
commit
0e79209b6d
@ -3,6 +3,7 @@
|
|||||||
namespace App;
|
namespace App;
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Support\Facades\Storage;
|
||||||
|
|
||||||
class TwoFAccount extends Model
|
class TwoFAccount extends Model
|
||||||
{
|
{
|
||||||
@ -16,4 +17,22 @@ class TwoFAccount extends Model
|
|||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $table = 'twofaccounts';
|
protected $table = 'twofaccounts';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Null empty icon resource has gone
|
||||||
|
*
|
||||||
|
* @param string $value
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getIconAttribute($value)
|
||||||
|
{
|
||||||
|
|
||||||
|
if( !Storage::exists('public/' . pathinfo($value)['basename']) ) {
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<figure class="image is-64x64" style="display: inline-block">
|
<figure class="image is-64x64" style="display: inline-block" v-if="icon">
|
||||||
<img :src="icon">
|
<img :src="icon">
|
||||||
</figure>
|
</figure>
|
||||||
<p class="is-size-4 has-text-grey-light">{{ service }}</p>
|
<p class="is-size-4 has-text-grey-light">{{ service }}</p>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<div class="buttons are-large is-centered">
|
<div class="buttons are-large is-centered">
|
||||||
<span v-for="account in accounts" class="button is-black twofaccount" >
|
<span v-for="account in accounts" class="button is-black twofaccount" >
|
||||||
<span @click.stop="getAccount(account.id)">
|
<span @click.stop="getAccount(account.id)">
|
||||||
<img :src="account.icon">
|
<img :src="account.icon" v-if="account.icon">
|
||||||
{{ account.service }}
|
{{ account.service }}
|
||||||
<span class="is-family-primary is-size-7 has-text-grey">{{ account.account }}</span>
|
<span class="is-family-primary is-size-7 has-text-grey">{{ account.account }}</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -28,8 +28,8 @@
|
|||||||
<span class="file-label">Choose an image…</span>
|
<span class="file-label">Choose an image…</span>
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<span class="tag is-black is-large" v-if="twofaccount.icon.length > 0">
|
<span class="tag is-black is-large" v-if="twofaccount.icon">
|
||||||
<img class="icon-preview" :src="twofaccount.icon" >
|
<img class="icon-preview" :src="'../' + twofaccount.icon" >
|
||||||
<button class="delete is-small" @click="deleteIcon"></button>
|
<button class="delete is-small" @click="deleteIcon"></button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user