54 lines
2.4 KiB
Python
54 lines
2.4 KiB
Python
import streamlit as st
|
|
import os
|
|
from engine import SorterEngine
|
|
|
|
def render(path_rv_t, path_rv_c, quality):
|
|
# Target and Control specific 'unused' folders relative to the review paths
|
|
unused_t_path = os.path.join(path_rv_t, "unused")
|
|
unused_c_path = os.path.join(path_rv_c, "unused")
|
|
|
|
if not os.path.exists(unused_t_path) or not os.path.exists(unused_c_path):
|
|
st.info("No 'unused' folders found in the current review paths.")
|
|
return
|
|
|
|
# Use a separate session state index for this specific tab
|
|
map_t = SorterEngine.get_id_mapping(unused_t_path)
|
|
map_c = SorterEngine.get_id_mapping(unused_c_path)
|
|
common_ids = sorted(list(set(map_t.keys()) & set(map_c.keys())))
|
|
|
|
if not common_ids:
|
|
st.success("The 'unused' folders are empty.")
|
|
return
|
|
|
|
if st.session_state.idx_unused < len(common_ids):
|
|
curr_id = common_ids[st.session_state.idx_unused]
|
|
t_files = map_t.get(curr_id, [])
|
|
c_files = map_c.get(curr_id, [])
|
|
|
|
st.subheader(f"♻️ Review Unused ID: {curr_id} ({st.session_state.idx_unused + 1}/{len(common_ids)})")
|
|
|
|
# Handle collisions even in unused folder
|
|
t_idx = st.radio("Unused Target", range(len(t_files)), format_func=lambda x: t_files[x], horizontal=True, key=f"ut_{curr_id}") if len(t_files) > 1 else 0
|
|
c_idx = st.radio("Unused Control", range(len(c_files)), format_func=lambda x: c_files[x], horizontal=True, key=f"uc_{curr_id}") if len(c_files) > 1 else 0
|
|
|
|
t_p = os.path.join(unused_t_path, t_files[t_idx])
|
|
c_p = os.path.join(unused_c_path, c_files[c_idx])
|
|
|
|
col1, col2 = st.columns(2)
|
|
col1.image(SorterEngine.compress_for_web(t_p, quality), caption="Target (Unused)")
|
|
col2.image(SorterEngine.compress_for_web(c_p, quality), caption="Control (Unused)")
|
|
|
|
b1, b2 = st.columns(2)
|
|
if b1.button("✅ RESTORE (Back to Selected)", use_container_width=True, type="primary"):
|
|
SorterEngine.restore_from_unused(t_p, c_p, path_rv_t, path_rv_c)
|
|
st.toast(f"Restored {curr_id} to selected folders.")
|
|
st.rerun()
|
|
|
|
if b2.button("➡️ Next / Ignore", use_container_width=True):
|
|
st.session_state.idx_unused += 1
|
|
st.rerun()
|
|
else:
|
|
st.info("Finished reviewing unused files.")
|
|
if st.button("Reset Unused Counter"):
|
|
st.session_state.idx_unused = 0
|
|
st.rerun() |