build: actualizar dist con versión final de disponibilidad y accesos
This commit is contained in:
+11
-11
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -9,7 +9,7 @@
|
|||||||
<link rel="shortcut icon" type="image/png" href="https://dbit.digitalcompass.agency/storage/v1/object/public/public-assets/GLM.png?v=glm-hub-20260722-v3" />
|
<link rel="shortcut icon" type="image/png" href="https://dbit.digitalcompass.agency/storage/v1/object/public/public-assets/GLM.png?v=glm-hub-20260722-v3" />
|
||||||
<link rel="apple-touch-icon" href="https://dbit.digitalcompass.agency/storage/v1/object/public/public-assets/GLM.png?v=glm-hub-20260722-v3" />
|
<link rel="apple-touch-icon" href="https://dbit.digitalcompass.agency/storage/v1/object/public/public-assets/GLM.png?v=glm-hub-20260722-v3" />
|
||||||
<title>GLM Hub — GomezLee Marketing</title>
|
<title>GLM Hub — GomezLee Marketing</title>
|
||||||
<script type="module" crossorigin src="/assets/index-CnXPZvfE.js"></script>
|
<script type="module" crossorigin src="/assets/index-DjmSkKIY.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="/assets/index-CIGqNuJ5.css">
|
<link rel="stylesheet" crossorigin href="/assets/index-CIGqNuJ5.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ const root = path.resolve(new URL('..', import.meta.url).pathname);
|
|||||||
const srcDir = path.join(root, 'src');
|
const srcDir = path.join(root, 'src');
|
||||||
const distDir = path.join(root, 'dist');
|
const distDir = path.join(root, 'dist');
|
||||||
const assetsDir = path.join(distDir, 'assets');
|
const assetsDir = path.join(distDir, 'assets');
|
||||||
const BUILD_VERSION = '20260814-single-access-status';
|
const BUILD_VERSION = '20260814-availability-and-access-status';
|
||||||
|
|
||||||
const env = {
|
const env = {
|
||||||
VITE_SUPABASE_URL: 'https://dbit.digitalcompass.agency',
|
VITE_SUPABASE_URL: 'https://dbit.digitalcompass.agency',
|
||||||
|
|||||||
+5
-1
@@ -540,7 +540,7 @@ function MobileNav({ user, view, onNavigate, onLogout }: MobileNavProps) {
|
|||||||
type AccessState = boolean | null;
|
type AccessState = boolean | null;
|
||||||
|
|
||||||
function AccessIndicator({ hasAccess }: { hasAccess: AccessState }) {
|
function AccessIndicator({ hasAccess }: { hasAccess: AccessState }) {
|
||||||
const label = hasAccess === null ? "Verificando acceso" : hasAccess ? "Disponible" : "Sin acceso";
|
const label = hasAccess === null ? "Verificando acceso" : hasAccess ? "Con acceso" : "Sin acceso";
|
||||||
const stateClass = hasAccess === null ? "access-indicator--checking" : hasAccess ? "access-indicator--granted" : "access-indicator--denied";
|
const stateClass = hasAccess === null ? "access-indicator--checking" : hasAccess ? "access-indicator--granted" : "access-indicator--denied";
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -609,6 +609,10 @@ function DirectoryRow({ app, index, isFavorite, hasAccess, onActivate, onFavorit
|
|||||||
<div className="directory-row__copy">
|
<div className="directory-row__copy">
|
||||||
<h3>{app.name}</h3>
|
<h3>{app.name}</h3>
|
||||||
<p>{app.description}</p>
|
<p>{app.description}</p>
|
||||||
|
<span className={`availability ${available ? "availability--ready" : "availability--pending"}`}>
|
||||||
|
<span aria-hidden="true" />
|
||||||
|
{available ? "Disponible" : "Enlace pendiente"}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<span className="directory-row__category">{app.category}</span>
|
<span className="directory-row__category">{app.category}</span>
|
||||||
<span className="directory-row__status">
|
<span className="directory-row__status">
|
||||||
|
|||||||
Reference in New Issue
Block a user