File size: 2,139 Bytes
3d67fe2
 
 
 
 
 
7ee6fd8
3d67fe2
 
7ee6fd8
 
 
 
 
 
 
 
 
 
 
 
3d67fe2
 
 
 
 
 
 
 
 
7ee6fd8
3d67fe2
7ee6fd8
07a4b41
7ee6fd8
 
 
3d67fe2
7ee6fd8
72e5351
 
 
 
 
7ee6fd8
 
 
 
 
 
 
 
72e5351
 
 
3d67fe2
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
import streamlit as st
import streamlit.components.v1 as components

# Set page config for dark theme
st.set_page_config(layout="wide", page_title="Web UI", page_icon=":ghost:", initial_sidebar_state="expanded")

# Apply dark theme and maximize iframe
st.markdown("""
<style>
    #root > div:nth-child(1) > div > div > div > div > section > div {padding-top: 0rem;}
    .reportview-container {background-color: #000000;}
    .sidebar .sidebar-content {background-color: #262730;}
    .Widget>label {color: white;}
    .stRadio>div{color: white;}
    .stCheckbox>div{color: white;}
    .stSelectbox>div{color: white;}
    .main .block-container {background-color: #000000; padding: 0rem;}
    iframe {width: 100vw; height: 100vh; border: none;}
    header {visibility: hidden;}
    #MainMenu {visibility: hidden;}
    footer {visibility: hidden;}
</style>
""", unsafe_allow_html=True)

# Sidebar menu
st.sidebar.title("๋ฉ”๋‰ด")
menu = st.sidebar.radio("์„ ํƒํ•˜์„ธ์š”:", ("A", "B"))

# Main content
if menu == "A":
    components.iframe("https://seawolf2357-flxloraexp.hf.space", height=1000, scrolling=True)
elif menu == "B":
    try:
        components.iframe("http://hugpu.ai:7897", height=1000, scrolling=True)
    except Exception as e:
        st.error(f"B ๋ฉ”๋‰ด ๋กœ๋”ฉ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}")
        st.info("http://hugpu.ai:8000 ์— ์ ‘๊ทผํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. URL์ด ์˜ฌ๋ฐ”๋ฅธ์ง€, ๊ทธ๋ฆฌ๊ณ  ๊ณต๊ฐœ์ ์œผ๋กœ ์ ‘๊ทผ ๊ฐ€๋Šฅํ•œ์ง€ ํ™•์ธํ•ด ์ฃผ์„ธ์š”.")

# Make the layout responsive and ensure iframes are loaded correctly
st.markdown("""
<script>
    window.addEventListener('load', function() {
        var iframes = document.getElementsByTagName('iframe');
        for (var i = 0; i < iframes.length; i++) {
            iframes[i].style.height = window.innerHeight + 'px';
            iframes[i].style.width = '100%';
        }
    });
    window.addEventListener('resize', function() {
        var iframes = document.getElementsByTagName('iframe');
        for (var i = 0; i < iframes.length; i++) {
            iframes[i].style.height = window.innerHeight + 'px';
        }
    });
</script>
""", unsafe_allow_html=True)