File size: 6,704 Bytes
c58df45 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
import streamlit as st
import uuid
import streamlit.components.v1 as components
'''
# Lista de estilos de sombra y transición (sin cambios)
shadow_list = [
"box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;",
"box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;",
"box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;",
"box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;",
]
transition_list = [
"transition: all 0.3s ease;",
"transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);",
"transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);",
]
def semantic_float_init():
st.markdown("""
<style>
.semantic-float {
position: fixed;
z-index: 1000;
display: none;
}
.semantic-float-content {
background-color: white;
border-radius: 8px;
padding: 16px;
overflow: auto;
}
</style>
""", unsafe_allow_html=True)
def float_graph(content, width="40%", height="60%", position="bottom-right", shadow=0, transition=0):
position_css = {
"top-left": "top: 20px; left: 20px;",
"top-right": "top: 20px; right: 20px;",
"bottom-left": "bottom: 20px; left: 20px;",
"bottom-right": "bottom: 20px; right: 20px;",
"center-right": "top: 50%; right: 20px; transform: translateY(-50%);"
}
css = f"""
width: {width};
height: {height};
{position_css.get(position, position_css['bottom-right'])}
{shadow_list[shadow % len(shadow_list)]}
{transition_list[transition % len(transition_list)]}
"""
return float_box(content, css=css)
def float_box(content, css=""):
box_id = f"semantic-float-{str(uuid.uuid4())[:8]}"
components.html(f"""
<div id="{box_id}" class="semantic-float" style="{css}">
<div class="semantic-float-content">
{content}
</div>
</div>
<script>
(function() {{
const box = document.getElementById('{box_id}');
if (box) {{
box.style.display = 'block';
}}
}})();
</script>
""", height=0)
return box_id
def toggle_float_visibility(box_id, visible):
display = "block" if visible else "none"
components.html(f"""
<script>
(function() {{
const element = document.getElementById('{box_id}');
if (element) {{
element.style.display = '{display}';
}}
}})();
</script>
""", height=0)
def update_float_content(box_id, new_content):
components.html(f"""
<script>
(function() {{
const element = document.getElementById('{box_id}');
if (element) {{
element.querySelector('.semantic-float-content').innerHTML = `{new_content}`;
}}
}})();
</script>
""", height=0)
'''
# Lista de estilos de sombra (puedes ajustar según tus preferencias)
shadow_list = [
"box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;",
"box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;",
"box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;",
"box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;",
]
# Lista de estilos de transición
transition_list = [
"transition: all 0.3s ease;",
"transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);",
"transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);",
]
def semantic_float_init():
"""Inicializa los estilos necesarios para los elementos flotantes en la interfaz semántica."""
st.markdown("""
<style>
.semantic-float {
position: fixed;
z-index: 1000;
}
.semantic-float-content {
background-color: white;
border-radius: 8px;
padding: 16px;
}
</style>
""", unsafe_allow_html=True)
def float_graph(content, width="40%", height="60%", position="bottom-right", shadow=0, transition=0):
"""
Crea un contenedor flotante para el gráfico de visualización semántica.
:param content: Contenido HTML o Markdown para el gráfico
:param width: Ancho del contenedor
:param height: Altura del contenedor
:param position: Posición del contenedor ('top-left', 'top-right', 'bottom-left', 'bottom-right')
:param shadow: Índice del estilo de sombra a utilizar
:param transition: Índice del estilo de transición a utilizar
"""
position_css = {
"top-left": "top: 20px; left: 20px;",
"top-right": "top: 20px; right: 20px;",
"bottom-left": "bottom: 20px; left: 20px;",
"bottom-right": "bottom: 20px; right: 20px;",
}
css = f"""
width: {width};
height: {height};
{position_css.get(position, position_css['bottom-right'])}
{shadow_list[shadow % len(shadow_list)]}
{transition_list[transition % len(transition_list)]}
"""
return float_box(content, css=css)
def float_box(content, css=""):
"""
Crea un contenedor flotante genérico.
:param content: Contenido HTML o Markdown para el contenedor
:param css: Estilos CSS adicionales
"""
box_id = f"semantic-float-{str(uuid.uuid4())[:8]}"
st.markdown(f"""
<div id="{box_id}" class="semantic-float">
<div class="semantic-float-content" style="{css}">
{content}
</div>
</div>
""", unsafe_allow_html=True)
return box_id
def toggle_float_visibility(box_id, visible):
"""
Cambia la visibilidad de un contenedor flotante.
:param box_id: ID del contenedor flotante
:param visible: True para mostrar, False para ocultar
"""
display = "block" if visible else "none"
st.markdown(f"""
<script>
var element = window.parent.document.getElementById('{box_id}');
if (element) {{
element.style.display = '{display}';
}}
</script>
""", unsafe_allow_html=True)
def update_float_content(box_id, new_content):
"""
Actualiza el contenido de un contenedor flotante.
:param box_id: ID del contenedor flotante
:param new_content: Nuevo contenido HTML o Markdown
"""
st.markdown(f"""
<script>
var element = window.parent.document.getElementById('{box_id}');
if (element) {{
element.querySelector('.semantic-float-content').innerHTML = `{new_content}`;
}}
</script>
""", unsafe_allow_html=True)
# Puedes agregar más funciones específicas para la interfaz semántica según sea necesario |