Skip to content

Commit

Permalink
allows for trailing or leading whitespace in VV string edits
Browse files Browse the repository at this point in the history
  • Loading branch information
Birdtalon committed Jan 10, 2024
1 parent 3b3cfc1 commit 3fec70b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
4 changes: 2 additions & 2 deletions code/modules/admin/view_variables/get_variables.dm
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@

switch(.["class"])
if(VV_TEXT)
.["value"] = tgui_input_text(usr, "Enter new text:", "Text", current_value, encode = FALSE)
.["value"] = tgui_input_text(usr, "Enter new text:", "Text", current_value, encode = FALSE, trim = FALSE)
if(.["value"] == null)
.["class"] = null
return
if(VV_MESSAGE)
.["value"] = tgui_input_text(usr, "Enter new text:", "Text", current_value, encode = FALSE)
.["value"] = tgui_input_text(usr, "Enter new text:", "Text", current_value, encode = FALSE, trim = FALSE)
if(.["value"] == null)
.["class"] = null
return
Expand Down
19 changes: 13 additions & 6 deletions code/modules/tgui_input/text.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
* * multiline - Bool that determines if the input box is much larger. Good for large messages, laws, etc.
* * encode - Toggling this determines if input is filtered via html_encode. Setting this to FALSE gives raw input.
* * timeout - The timeout of the textbox, after which the modal will close and qdel itself. Set to zero for no timeout.
* * trim - Whether or not to trim leading and trailing whitespace from your input. Defaults to TRUE
*/
/proc/tgui_input_text(mob/user, message = "", title = "Text Input", default, max_length = MAX_MESSAGE_LEN, multiline = FALSE, encode = TRUE, timeout = 0)
/proc/tgui_input_text(mob/user, message = "", title = "Text Input", default, max_length = MAX_MESSAGE_LEN, multiline = FALSE, encode = TRUE, timeout = 0, trim = TRUE)
if (!user)
user = usr
if (!istype(user))
Expand All @@ -39,7 +40,7 @@
return input(user, message, title, default) as text|null
*/

var/datum/tgui_input_text/text_input = new(user, message, title, default, max_length, multiline, encode, timeout)
var/datum/tgui_input_text/text_input = new(user, message, title, default, max_length, multiline, encode, timeout, trim)
text_input.tgui_interact(user)
text_input.wait()
if (text_input)
Expand Down Expand Up @@ -73,14 +74,17 @@
var/timeout
/// The title of the TGUI window
var/title
/// Whether to trim leading and trailing spaces
var/trim

/datum/tgui_input_text/New(mob/user, message, title, default, max_length, multiline, encode, timeout)
/datum/tgui_input_text/New(mob/user, message, title, default, max_length, multiline, encode, timeout, trim)
src.default = default
src.encode = encode
src.max_length = max_length
src.message = message
src.multiline = multiline
src.title = title
src.trim = trim
if (timeout)
src.timeout = timeout
start_time = world.time
Expand Down Expand Up @@ -141,7 +145,7 @@
CRASH("[usr] typed a text string longer than the max length")
if(encode && (length(html_encode(params["entry"])) > max_length))
to_chat(usr, SPAN_NOTICE("Your message was clipped due to special character usage."))
set_entry(params["entry"])
set_entry(params["entry"], trim)
closed = TRUE
SStgui.close_uis(src)
return TRUE
Expand All @@ -156,7 +160,10 @@
* This can sometimes result in a string that is longer than the max length.
* If the string is longer than the max length, it will be clipped.
*/
/datum/tgui_input_text/proc/set_entry(entry)
/datum/tgui_input_text/proc/set_entry(entry, trim)
if(!isnull(entry))
var/converted_entry = encode ? html_encode(entry) : entry
src.entry = trim(converted_entry, max_length)
if(trim)
src.entry = trim(converted_entry)
else
src.entry = converted_entry

0 comments on commit 3fec70b

Please sign in to comment.