# modules/ui.py # Importaciones estandar de python import streamlit as st from spacy import displacy import re from .morpho_analysis import POS_TRANSLATIONS # Asegúrate de que esta importación esté presente import matplotlib.pyplot as plt import matplotlib matplotlib.use('Agg') # Importaciones locales from .auth import authenticate_user, register_user, get_user_role from .database import get_student_data, store_analysis_result from .morpho_analysis import get_repeated_words_colors, highlight_repeated_words, POS_COLORS, POS_TRANSLATIONS from .syntax_analysis import visualize_syntax ########################################################################## def login_page(): st.title("Iniciar Sesión") username = st.text_input("Usuario") password = st.text_input("Contraseña", type='password') if st.button("Iniciar Sesión"): if authenticate_user(username, password): st.success(f"Bienvenido, {username}!") st.session_state.logged_in = True st.session_state.username = username st.session_state.role = get_user_role(username) st.experimental_rerun() else: st.error("Usuario o contraseña incorrectos") ########################################################################## def register_page(): st.title("Registrarse") new_username = st.text_input("Nuevo Usuario") new_password = st.text_input("Nueva Contraseña", type='password') role = st.selectbox("Rol", ["Estudiante", "Profesor"]) additional_info = {} if role == "Estudiante": additional_info['carrera'] = st.text_input("Carrera") elif role == "Profesor": additional_info['departamento'] = st.text_input("Departamento") if st.button("Registrarse"): if register_user(new_username, new_password, role, additional_info): st.success("Registro exitoso. Por favor, inicia sesión.") else: st.error("El usuario ya existe o ocurrió un error durante el registro") ########################################################################## def get_chatbot_response(input_text): # Esta función debe ser implementada o importada de otro módulo # Por ahora, retornamos un mensaje genérico return "Lo siento, el chatbot no está disponible en este momento." ########################################################################## def display_chat_interface(): st.markdown("### Chat con AIdeaText") if 'chat_history' not in st.session_state: st.session_state.chat_history = [] for i, (role, text) in enumerate(st.session_state.chat_history): if role == "user": st.text_area(f"Tú:", value=text, height=50, key=f"user_message_{i}", disabled=True) else: st.text_area(f"AIdeaText:", value=text, height=50, key=f"bot_message_{i}", disabled=True) user_input = st.text_input("Escribe tu mensaje aquí:") if st.button("Enviar"): if user_input: st.session_state.chat_history.append(("user", user_input)) response = get_chatbot_response(user_input) st.session_state.chat_history.append(("bot", response)) st.experimental_rerun() ########################################################################## def display_student_progress(username): st.title(f"Progreso de {username}") student_data = get_student_data(username) if student_data and student_data['entries_count'] > 0: st.success(f"Datos obtenidos exitosamente para {username}") # Mostrar estadísticas generales st.header("Estadísticas Generales") st.metric("Total de entradas", student_data['entries_count']) # Gráfico de barras para el conteo de palabras por categoría if student_data['word_count']: st.subheader("Conteo Total de Palabras por Categoría Gramatical") fig, ax = plt.subplots(figsize=(10, 6)) categories = list(student_data['word_count'].keys()) counts = list(student_data['word_count'].values()) # Traducir las categorías translated_categories = [POS_TRANSLATIONS.get(cat, cat) for cat in categories] ax.bar(translated_categories, counts) ax.set_xlabel('Categoría') ax.set_ylabel('Conteo Total') ax.set_title('Conteo de Palabras por Categoría Gramatical') plt.xticks(rotation=45, ha='right') st.pyplot(fig) else: st.info("No hay datos de conteo de palabras disponibles.") # Mostrar evolución del conteo de palabras st.subheader("Evolución del Conteo de Palabras") evolution_data = {} for i, entry in enumerate(student_data['entries']): for category, count in entry.get('word_count', {}).items(): if category not in evolution_data: evolution_data[category] = [] evolution_data[category].append(count) if evolution_data: fig, ax = plt.subplots(figsize=(10, 6)) for category, counts in evolution_data.items(): ax.plot(range(1, len(counts) + 1), counts, label=POS_TRANSLATIONS.get(category, category)) ax.set_xlabel('Número de Entrada') ax.set_ylabel('Conteo de Palabras') ax.set_title('Evolución del Conteo de Palabras por Categoría') ax.legend() st.pyplot(fig) else: st.info("No hay suficientes datos para mostrar la evolución del conteo de palabras.") # Mostrar entradas recientes st.header("Entradas Recientes") for i, entry in enumerate(student_data['entries'][:5]): with st.expander(f"Entrada {i+1} - {entry['timestamp']}"): st.write(entry['text']) if 'arc_diagrams' in entry and entry['arc_diagrams']: st.subheader("Diagrama de Arco") st.write(entry['arc_diagrams'][0], unsafe_allow_html=True) if 'network_diagram' in entry and entry['network_diagram']: st.subheader("Diagrama de Red") st.image(entry['network_diagram']) else: st.warning("No se encontraron datos para este estudiante.") st.info("Intenta realizar algunos análisis de texto primero.") # Agregar información de depuración st.subheader("Información de Depuración") st.json(student_data) ########################################################################## def display_text_analysis_interface(nlp_models, lang_code): translations = { 'es': { 'title': "AIdeaText - Análisis morfológico y sintáctico", 'input_label': "Ingrese un texto para analizar (máx. 5,000 palabras):", 'input_placeholder': "El objetivo de esta aplicación es que mejore sus habilidades de redacción. Para ello, después de ingresar su texto y presionar el botón obtendrá tres vistas horizontales. La primera, le indicará las palabras que se repiten por categoría gramátical; la segunda, un diagrama de arco le indicara las conexiones sintácticas en cada oración; y la tercera, es un grafo en el cual visualizara la configuración de su texto.", 'analyze_button': "Analizar texto", 'repeated_words': "Palabras repetidas", 'legend': "Leyenda: Categorías gramaticales", 'arc_diagram': "Análisis sintáctico: Diagrama de arco", 'network_diagram': "Análisis sintáctico: Diagrama de red", 'sentence': "Oración" }, 'en': { 'title': "AIdeaText - Morphological and Syntactic Analysis", 'input_label': "Enter a text to analyze (max 5,000 words):", 'input_placeholder': "The goal of this app is for you to improve your writing skills. To do this, after entering your text and pressing the button you will get three horizontal views. The first will indicate the words that are repeated by grammatical category; second, an arc diagram will indicate the syntactic connections in each sentence; and the third is a graph in which you will visualize the configuration of your text.", 'analyze_button': "Analyze text", 'repeated_words': "Repeated words", 'legend': "Legend: Grammatical categories", 'arc_diagram': "Syntactic analysis: Arc diagram", 'network_diagram': "Syntactic analysis: Network diagram", 'sentence': "Sentence" }, 'fr': { 'title': "AIdeaText - Analyse morphologique et syntaxique", 'input_label': "Entrez un texte à analyser (max 5 000 mots) :", 'input_placeholder': "Le but de cette application est d'améliorer vos compétences en rédaction. Pour ce faire, après avoir saisi votre texte et appuyé sur le bouton vous obtiendrez trois vues horizontales. Le premier indiquera les mots répétés par catégorie grammaticale; deuxièmement, un diagramme en arcs indiquera les connexions syntaxiques dans chaque phrase; et le troisième est un graphique dans lequel vous visualiserez la configuration de votre texte.", 'analyze_button': "Analyser le texte", 'repeated_words': "Mots répétés", 'legend': "Légende : Catégories grammaticales", 'arc_diagram': "Analyse syntaxique : Diagramme en arc", 'network_diagram': "Analyse syntaxique : Diagramme de réseau", 'sentence': "Phrase" } } t = translations[lang_code] if 'input_text' not in st.session_state: st.session_state.input_text = "" # Añadimos una clave única basada en el idioma seleccionado sentence_input = st.text_area( t['input_label'], height=150, placeholder=t['input_placeholder'], value=st.session_state.input_text, key=f"text_input_{lang_code}" # Clave única basada en el idioma ) st.session_state.input_text = sentence_input # sentence_input = st.text_area(t['input_label'], height=150, placeholder=t['input_placeholder'], value=st.session_state.input_text) # st.session_state.input_text = sentence_input if st.button(t['analyze_button'], key=f"analyze_button_{lang_code}"): if sentence_input: doc = nlp_models[lang_code](sentence_input) with st.expander(t['repeated_words'], expanded=True): word_colors = get_repeated_words_colors(doc) highlighted_text = highlight_repeated_words(doc, word_colors) st.markdown(highlighted_text, unsafe_allow_html=True) st.markdown(f"##### {t['legend']}") legend_html = "
" for pos, color in POS_COLORS.items(): if pos in POS_TRANSLATIONS: legend_html += f"
{POS_TRANSLATIONS[pos]}
" legend_html += "
" st.markdown(legend_html, unsafe_allow_html=True) with st.expander(t['arc_diagram'], expanded=True): sentences = list(doc.sents) arc_diagrams = [] for i, sent in enumerate(sentences): st.subheader(f"{t['sentence']} {i+1}") html = displacy.render(sent, style="dep", options={"distance": 100}) html = html.replace('height="375"', 'height="200"') html = re.sub(r']*>', lambda m: m.group(0).replace('height="450"', 'height="300"'), html) html = re.sub(r']*transform="translate\((\d+),(\d+)\)"', lambda m: f'