MohanadAfiffy commited on
Commit
ee39444
·
verified ·
1 Parent(s): 1dab20c

Upload Hook2lead.py

Browse files
Files changed (1) hide show
  1. pages/Hook2lead.py +112 -0
pages/Hook2lead.py ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import requests
3
+ import os
4
+
5
+ st.set_page_config(layout="wide")
6
+ st.html("styles.html")
7
+ # endpoint = os.getenv('blog_lead_endpoint')
8
+ endpoint = "http://127.0.0.1:8000/query/"
9
+
10
+ def main():
11
+ st.markdown('<h1 class="stTitle">Hook2Lead</h1>', unsafe_allow_html=True)
12
+ st.markdown('<h2 class="stSubheader">Share your hooks, and we will connect you with interested leads</h2>', unsafe_allow_html=True)
13
+ email_options = [
14
15
16
17
18
19
20
21
22
23
+ ]
24
+
25
+ account_stages = [
26
+ "Pre-Sales",
27
+ "Pre-Sales (Unresponsive, After Call)",
28
+ "Pre-Sales (Long-Term/ Cold)",
29
+ "Sales Opportunity",
30
+ "Closed Lost (Opportunity)",
31
+ "Current Client",
32
+ "Pre-Sales (Short-Term/ Hot)",
33
+ "Pre-Sales (Mid-Term/ Warm)",
34
+ "Project Cancelled"
35
+ ]
36
+
37
+ query_types = ["blog", "announcement", "AI_trend"]
38
+
39
+ # Get the current number of queries from query params
40
+ if 'num_queries' not in st.session_state:
41
+ st.session_state.num_queries = 1
42
+
43
+ # Creating a form
44
+ with st.form(key='blog2lead_form'):
45
+ email_address = st.selectbox("**Select your email address**", email_options)
46
+ selected_stages = st.multiselect("**Select Account Stages (optional)**", account_stages)
47
+
48
+ queries = {}
49
+ query_types_selected = []
50
+
51
+ # Add query fields based on the current number of queries
52
+ for i in range(st.session_state.num_queries):
53
+ cols = st.columns([3, 1]) # Adjust the width ratio here
54
+ with cols[0]:
55
+ query_label = ["first", "second", "third", "fourth", "fifth", "sixth", "seventh", "eighth", "ninth", "tenth"][i]
56
+ query = st.text_input(f"**Enter your {query_label} hook**", key=f"query_{i}", help="you can enter your hook directly or a url")
57
+ with cols[1]:
58
+ query_type = st.selectbox(f"**Select {query_label} hook type**", query_types, key=f"type_{i}")
59
+ if query.strip():
60
+ queries[query] = query_type
61
+
62
+ # Button to add more query fields
63
+ add_query = st.form_submit_button(label='Add another query')
64
+ submit_button = st.form_submit_button(label='Submit')
65
+
66
+ if add_query:
67
+ st.session_state.num_queries += 1
68
+ st.rerun()
69
+ if submit_button:
70
+ if queries and email_address:
71
+ # Define your data payload to send
72
+ queries = {k: v for k, v in queries.items() if k and v}
73
+ data_to_send = {
74
+ "queries": queries,
75
+ "email_receiver": email_address,
76
+ }
77
+
78
+ # Add the filter to the payload only if selected_stages is not empty
79
+ if selected_stages:
80
+ data_to_send["filter"] = {
81
+ "Account Stage": {"$in": selected_stages}
82
+ }
83
+
84
+ # Sending the POST request to FastAPI
85
+ response = requests.post(endpoint, json=data_to_send)
86
+
87
+ # Handling the response
88
+ if response.status_code == 200:
89
+ st.info("Your request has been processed successfully.")
90
+ else:
91
+ st.error("Data transmission failed. Please try again later.")
92
+ else:
93
+ st.error("Please fill out all fields.")
94
+
95
+ if __name__ == "__main__":
96
+ logo_url = "https://i.imgur.com/WYnv26e.jpeg" # Replace this with your image's direct URL
97
+ st.markdown(
98
+ f"""
99
+ <style>
100
+ .logo {{
101
+ position: fixed;
102
+ bottom: 5px;
103
+ right: 5px;
104
+ width: 100px; # Adjust width as needed
105
+ }}
106
+ </style>
107
+ <img src="{logo_url}" class="logo">
108
+ """,
109
+ unsafe_allow_html=True,
110
+ )
111
+
112
+ main()