mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
[MIRROR] Upports Filling Cabinet UI (#12064)
Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
committed by
GitHub
parent
8b1b3d0324
commit
95c03abd07
@@ -91,24 +91,27 @@
|
|||||||
ui.open()
|
ui.open()
|
||||||
|
|
||||||
/obj/structure/filingcabinet/tgui_data(mob/user)
|
/obj/structure/filingcabinet/tgui_data(mob/user)
|
||||||
var/list/files = list()
|
var/list/data = list()
|
||||||
for(var/obj/item/P in src)
|
|
||||||
files.Add(list(list(
|
|
||||||
"name" = P.name,
|
|
||||||
"ref" = "\ref[P]",
|
|
||||||
)))
|
|
||||||
|
|
||||||
return list("contents" = files)
|
data["cabinet_name"] = "[name]"
|
||||||
|
data["contents"] = list()
|
||||||
|
data["contents_ref"] = list()
|
||||||
|
for(var/obj/item/content in src)
|
||||||
|
data["contents"] += "[content]"
|
||||||
|
data["contents_ref"] += "[REF(content)]"
|
||||||
|
|
||||||
/obj/structure/filingcabinet/tgui_act(action, params, datum/tgui/ui)
|
return data
|
||||||
if(..())
|
|
||||||
return TRUE
|
/obj/structure/filingcabinet/tgui_act(action, params)
|
||||||
|
. = ..()
|
||||||
|
if(.)
|
||||||
|
return
|
||||||
|
|
||||||
switch(action)
|
switch(action)
|
||||||
if("retrieve")
|
if("remove_object")
|
||||||
var/obj/item/P = locate(params["ref"])
|
var/obj/item/content = locate(params["ref"]) in src
|
||||||
if(istype(P) && (P.loc == src) && ui.user.Adjacent(src))
|
if(istype(content) && (content.loc == src) && usr.Adjacent(src))
|
||||||
ui.user.put_in_hands(P)
|
usr.put_in_hands(content)
|
||||||
open_animation()
|
open_animation()
|
||||||
SStgui.update_uis(src)
|
SStgui.update_uis(src)
|
||||||
|
|
||||||
@@ -134,9 +137,9 @@
|
|||||||
S = R
|
S = R
|
||||||
break
|
break
|
||||||
var/obj/item/paper/P = new /obj/item/paper(src)
|
var/obj/item/paper/P = new /obj/item/paper(src)
|
||||||
P.info = "<CENTER><B>Security Record</B></CENTER><BR>"
|
P.info = "<CENTER>" + span_bold("Security Record") + "</CENTER><BR>"
|
||||||
P.info += "Name: [G.fields["name"]] ID: [G.fields["id"]]<BR>\nSex: [G.fields["sex"]]<BR>\nAge: [G.fields["age"]]<BR>\nFingerprint: [G.fields["fingerprint"]]<BR>\nPhysical Status: [G.fields["p_stat"]]<BR>\nMental Status: [G.fields["m_stat"]]<BR>"
|
P.info += "Name: [G.fields["name"]] ID: [G.fields["id"]]<BR>\nSex: [G.fields["sex"]]<BR>\nAge: [G.fields["age"]]<BR>\nFingerprint: [G.fields["fingerprint"]]<BR>\nPhysical Status: [G.fields["p_stat"]]<BR>\nMental Status: [G.fields["m_stat"]]<BR>"
|
||||||
P.info += "<BR>\n<CENTER><B>Security Data</B></CENTER><BR>\nCriminal Status: [S.fields["criminal"]]<BR>\n<BR>\nMinor Crimes: [S.fields["mi_crim"]]<BR>\nDetails: [S.fields["mi_crim_d"]]<BR>\n<BR>\nMajor Crimes: [S.fields["ma_crim"]]<BR>\nDetails: [S.fields["ma_crim_d"]]<BR>\n<BR>\nImportant Notes:<BR>\n\t[S.fields["notes"]]<BR>\n<BR>\n<CENTER><B>Comments/Log</B></CENTER><BR>"
|
P.info += "<BR>\n<CENTER>" + span_bold("Security Data") + "</CENTER><BR>\nCriminal Status: [S.fields["criminal"]]<BR>\n<BR>\nMinor Crimes: [S.fields["mi_crim"]]<BR>\nDetails: [S.fields["mi_crim_d"]]<BR>\n<BR>\nMajor Crimes: [S.fields["ma_crim"]]<BR>\nDetails: [S.fields["ma_crim_d"]]<BR>\n<BR>\nImportant Notes:<BR>\n\t[S.fields["notes"]]<BR>\n<BR>\n<CENTER>" + span_bold("Comments/Log") + "</CENTER><BR>"
|
||||||
var/counter = 1
|
var/counter = 1
|
||||||
while(S.fields["com_[counter]"])
|
while(S.fields["com_[counter]"])
|
||||||
P.info += "[S.fields["com_[counter]"]]<BR>"
|
P.info += "[S.fields["com_[counter]"]]<BR>"
|
||||||
@@ -170,10 +173,10 @@
|
|||||||
break
|
break
|
||||||
if(M)
|
if(M)
|
||||||
var/obj/item/paper/P = new /obj/item/paper(src)
|
var/obj/item/paper/P = new /obj/item/paper(src)
|
||||||
P.info = "<CENTER><B>Medical Record</B></CENTER><BR>"
|
P.info = "<CENTER>" + span_bold("Medical Record") + "</CENTER><BR>"
|
||||||
P.info += "Name: [G.fields["name"]] ID: [G.fields["id"]]<BR>\nSex: [G.fields["sex"]]<BR>\nAge: [G.fields["age"]]<BR>\nFingerprint: [G.fields["fingerprint"]]<BR>\nPhysical Status: [G.fields["p_stat"]]<BR>\nMental Status: [G.fields["m_stat"]]<BR>"
|
P.info += "Name: [G.fields["name"]] ID: [G.fields["id"]]<BR>\nSex: [G.fields["sex"]]<BR>\nAge: [G.fields["age"]]<BR>\nFingerprint: [G.fields["fingerprint"]]<BR>\nPhysical Status: [G.fields["p_stat"]]<BR>\nMental Status: [G.fields["m_stat"]]<BR>"
|
||||||
|
|
||||||
P.info += "<BR>\n<CENTER><B>Medical Data</B></CENTER><BR>\nBlood Type: [M.fields["b_type"]]<BR>\nDNA: [M.fields["b_dna"]]<BR>\n<BR>\nMinor Disabilities: [M.fields["mi_dis"]]<BR>\nDetails: [M.fields["mi_dis_d"]]<BR>\n<BR>\nMajor Disabilities: [M.fields["ma_dis"]]<BR>\nDetails: [M.fields["ma_dis_d"]]<BR>\n<BR>\nAllergies: [M.fields["alg"]]<BR>\nDetails: [M.fields["alg_d"]]<BR>\n<BR>\nCurrent Diseases: [M.fields["cdi"]] (per disease info placed in log/comment section)<BR>\nDetails: [M.fields["cdi_d"]]<BR>\n<BR>\nImportant Notes:<BR>\n\t[M.fields["notes"]]<BR>\n<BR>\n<CENTER><B>Comments/Log</B></CENTER><BR>"
|
P.info += "<BR>\n<CENTER>" + span_bold("Medical Data") + "</CENTER><BR>\nBlood Type: [M.fields["b_type"]]<BR>\nDNA: [M.fields["b_dna"]]<BR>\n<BR>\nMinor Disabilities: [M.fields["mi_dis"]]<BR>\nDetails: [M.fields["mi_dis_d"]]<BR>\n<BR>\nMajor Disabilities: [M.fields["ma_dis"]]<BR>\nDetails: [M.fields["ma_dis_d"]]<BR>\n<BR>\nAllergies: [M.fields["alg"]]<BR>\nDetails: [M.fields["alg_d"]]<BR>\n<BR>\nCurrent Diseases: [M.fields["cdi"]] (per disease info placed in log/comment section)<BR>\nDetails: [M.fields["cdi_d"]]<BR>\n<BR>\nImportant Notes:<BR>\n\t[M.fields["notes"]]<BR>\n<BR>\n<CENTER>" + span_bold("Comments/Log") + "</CENTER><BR>"
|
||||||
var/counter = 1
|
var/counter = 1
|
||||||
while(M.fields["com_[counter]"])
|
while(M.fields["com_[counter]"])
|
||||||
P.info += "[M.fields["com_[counter]"]]<BR>"
|
P.info += "[M.fields["com_[counter]"]]<BR>"
|
||||||
|
|||||||
@@ -1,190 +0,0 @@
|
|||||||
/* Filing cabinets!
|
|
||||||
* Contains:
|
|
||||||
* Filing Cabinets
|
|
||||||
* Security Record Cabinets
|
|
||||||
* Medical Record Cabinets
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Filing Cabinets
|
|
||||||
*/
|
|
||||||
/obj/structure/filingcabinet
|
|
||||||
name = "filing cabinet"
|
|
||||||
desc = "A large cabinet with drawers."
|
|
||||||
icon = 'icons/obj/bureaucracy.dmi'
|
|
||||||
icon_state = "filingcabinet"
|
|
||||||
density = TRUE
|
|
||||||
anchored = TRUE
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/chestdrawer
|
|
||||||
name = "chest drawer"
|
|
||||||
icon_state = "chestdrawer"
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/filingcabinet //not changing the path to avoid unecessary map issues, but please don't name stuff like this in the future -Pete
|
|
||||||
icon_state = "tallcabinet"
|
|
||||||
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/Initialize(mapload)
|
|
||||||
for(var/obj/item/I in loc)
|
|
||||||
if(istype(I, /obj/item/paper) || istype(I, /obj/item/folder) || istype(I, /obj/item/photo) || istype(I, /obj/item/paper_bundle))
|
|
||||||
I.loc = src
|
|
||||||
. = ..()
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/attackby(obj/item/P as obj, mob/user as mob)
|
|
||||||
if(istype(P, /obj/item/paper) || istype(P, /obj/item/folder) || istype(P, /obj/item/photo) || istype(P, /obj/item/paper_bundle))
|
|
||||||
to_chat(user, span_notice("You put [P] in [src]."))
|
|
||||||
user.drop_item()
|
|
||||||
P.loc = src
|
|
||||||
open_animation()
|
|
||||||
SStgui.update_uis(src)
|
|
||||||
else if(P.has_tool_quality(TOOL_WRENCH))
|
|
||||||
playsound(src, P.usesound, 50, 1)
|
|
||||||
anchored = !anchored
|
|
||||||
to_chat(user, span_notice("You [anchored ? "wrench" : "unwrench"] \the [src]."))
|
|
||||||
else if(P.has_tool_quality(TOOL_SCREWDRIVER))
|
|
||||||
to_chat(user, span_notice("You begin taking the [name] apart."))
|
|
||||||
playsound(src, P.usesound, 50, 1)
|
|
||||||
if(do_after(user, 10 * P.toolspeed))
|
|
||||||
playsound(src, P.usesound, 50, 1)
|
|
||||||
to_chat(user, span_notice("You take the [name] apart."))
|
|
||||||
new /obj/item/stack/material/steel( src.loc, 4 )
|
|
||||||
for(var/obj/item/I in contents)
|
|
||||||
I.forceMove(loc)
|
|
||||||
qdel(src)
|
|
||||||
return
|
|
||||||
else
|
|
||||||
to_chat(user, span_notice("You can't put [P] in [src]!"))
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/attack_hand(mob/user as mob)
|
|
||||||
tgui_interact(user)
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/attack_tk(mob/user)
|
|
||||||
if(anchored)
|
|
||||||
return attack_self_tk(user)
|
|
||||||
return ..()
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/attack_self_tk(mob/user)
|
|
||||||
if(contents.len)
|
|
||||||
if(prob(40 + contents.len * 5))
|
|
||||||
var/obj/item/I = pick(contents)
|
|
||||||
I.loc = loc
|
|
||||||
if(prob(25))
|
|
||||||
step_rand(I)
|
|
||||||
to_chat(user, span_notice("You pull \a [I] out of [src] at random."))
|
|
||||||
return
|
|
||||||
to_chat(user, span_notice("You find nothing in [src]."))
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/tgui_state(mob/user)
|
|
||||||
return GLOB.tgui_physical_state
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/tgui_interact(mob/user, datum/tgui/ui)
|
|
||||||
ui = SStgui.try_update_ui(user, src, ui)
|
|
||||||
if(!ui)
|
|
||||||
ui = new(user, src, "FilingCabinet", name)
|
|
||||||
ui.set_autoupdate(FALSE)
|
|
||||||
ui.open()
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/tgui_data(mob/user)
|
|
||||||
var/list/data = list()
|
|
||||||
|
|
||||||
data["cabinet_name"] = "[name]"
|
|
||||||
data["contents"] = list()
|
|
||||||
data["contents_ref"] = list()
|
|
||||||
for(var/obj/item/content in src)
|
|
||||||
data["contents"] += "[content]"
|
|
||||||
data["contents_ref"] += "[REF(content)]"
|
|
||||||
|
|
||||||
return data
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/tgui_act(action, params)
|
|
||||||
. = ..()
|
|
||||||
if(.)
|
|
||||||
return
|
|
||||||
|
|
||||||
switch(action)
|
|
||||||
if("remove_object")
|
|
||||||
var/obj/item/content = locate(params["ref"]) in src
|
|
||||||
if(istype(content) && (content.loc == src) && usr.Adjacent(src))
|
|
||||||
usr.put_in_hands(content)
|
|
||||||
open_animation()
|
|
||||||
SStgui.update_uis(src)
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/proc/open_animation()
|
|
||||||
flick("[initial(icon_state)]-open",src)
|
|
||||||
playsound(src, 'sound/bureaucracy/filingcabinet.ogg', 50, 1)
|
|
||||||
spawn(0)
|
|
||||||
sleep(20)
|
|
||||||
icon_state = initial(icon_state)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Security Record Cabinets
|
|
||||||
*/
|
|
||||||
/obj/structure/filingcabinet/security
|
|
||||||
var/virgin = 1
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/security/proc/populate()
|
|
||||||
if(virgin)
|
|
||||||
for(var/datum/data/record/G in GLOB.data_core.general)
|
|
||||||
var/datum/data/record/S
|
|
||||||
for(var/datum/data/record/R in GLOB.data_core.security)
|
|
||||||
if((R.fields["name"] == G.fields["name"] || R.fields["id"] == G.fields["id"]))
|
|
||||||
S = R
|
|
||||||
break
|
|
||||||
var/obj/item/paper/P = new /obj/item/paper(src)
|
|
||||||
P.info = "<CENTER>" + span_bold("Security Record") + "</CENTER><BR>"
|
|
||||||
P.info += "Name: [G.fields["name"]] ID: [G.fields["id"]]<BR>\nSex: [G.fields["sex"]]<BR>\nAge: [G.fields["age"]]<BR>\nFingerprint: [G.fields["fingerprint"]]<BR>\nPhysical Status: [G.fields["p_stat"]]<BR>\nMental Status: [G.fields["m_stat"]]<BR>"
|
|
||||||
P.info += "<BR>\n<CENTER>" + span_bold("Security Data") + "</CENTER><BR>\nCriminal Status: [S.fields["criminal"]]<BR>\n<BR>\nMinor Crimes: [S.fields["mi_crim"]]<BR>\nDetails: [S.fields["mi_crim_d"]]<BR>\n<BR>\nMajor Crimes: [S.fields["ma_crim"]]<BR>\nDetails: [S.fields["ma_crim_d"]]<BR>\n<BR>\nImportant Notes:<BR>\n\t[S.fields["notes"]]<BR>\n<BR>\n<CENTER>" + span_bold("Comments/Log") + "</CENTER><BR>"
|
|
||||||
var/counter = 1
|
|
||||||
while(S.fields["com_[counter]"])
|
|
||||||
P.info += "[S.fields["com_[counter]"]]<BR>"
|
|
||||||
counter++
|
|
||||||
P.info += "</TT>"
|
|
||||||
P.name = "Security Record ([G.fields["name"]])"
|
|
||||||
virgin = 0 //tabbing here is correct- it's possible for people to try and use it
|
|
||||||
//before the records have been generated, so we do this inside the loop.
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/security/attack_hand()
|
|
||||||
populate()
|
|
||||||
..()
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/security/attack_tk()
|
|
||||||
populate()
|
|
||||||
..()
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Medical Record Cabinets
|
|
||||||
*/
|
|
||||||
/obj/structure/filingcabinet/medical
|
|
||||||
var/virgin = 1
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/medical/proc/populate()
|
|
||||||
if(virgin)
|
|
||||||
for(var/datum/data/record/G in GLOB.data_core.general)
|
|
||||||
var/datum/data/record/M
|
|
||||||
for(var/datum/data/record/R in GLOB.data_core.medical)
|
|
||||||
if((R.fields["name"] == G.fields["name"] || R.fields["id"] == G.fields["id"]))
|
|
||||||
M = R
|
|
||||||
break
|
|
||||||
if(M)
|
|
||||||
var/obj/item/paper/P = new /obj/item/paper(src)
|
|
||||||
P.info = "<CENTER>" + span_bold("Medical Record") + "</CENTER><BR>"
|
|
||||||
P.info += "Name: [G.fields["name"]] ID: [G.fields["id"]]<BR>\nSex: [G.fields["sex"]]<BR>\nAge: [G.fields["age"]]<BR>\nFingerprint: [G.fields["fingerprint"]]<BR>\nPhysical Status: [G.fields["p_stat"]]<BR>\nMental Status: [G.fields["m_stat"]]<BR>"
|
|
||||||
|
|
||||||
P.info += "<BR>\n<CENTER>" + span_bold("Medical Data") + "</CENTER><BR>\nBlood Type: [M.fields["b_type"]]<BR>\nDNA: [M.fields["b_dna"]]<BR>\n<BR>\nMinor Disabilities: [M.fields["mi_dis"]]<BR>\nDetails: [M.fields["mi_dis_d"]]<BR>\n<BR>\nMajor Disabilities: [M.fields["ma_dis"]]<BR>\nDetails: [M.fields["ma_dis_d"]]<BR>\n<BR>\nAllergies: [M.fields["alg"]]<BR>\nDetails: [M.fields["alg_d"]]<BR>\n<BR>\nCurrent Diseases: [M.fields["cdi"]] (per disease info placed in log/comment section)<BR>\nDetails: [M.fields["cdi_d"]]<BR>\n<BR>\nImportant Notes:<BR>\n\t[M.fields["notes"]]<BR>\n<BR>\n<CENTER>" + span_bold("Comments/Log") + "</CENTER><BR>"
|
|
||||||
var/counter = 1
|
|
||||||
while(M.fields["com_[counter]"])
|
|
||||||
P.info += "[M.fields["com_[counter]"]]<BR>"
|
|
||||||
counter++
|
|
||||||
P.info += "</TT>"
|
|
||||||
P.name = "Medical Record ([G.fields["name"]])"
|
|
||||||
virgin = 0 //tabbing here is correct- it's possible for people to try and use it
|
|
||||||
//before the records have been generated, so we do this inside the loop.
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/medical/attack_hand()
|
|
||||||
populate()
|
|
||||||
..()
|
|
||||||
|
|
||||||
/obj/structure/filingcabinet/medical/attack_tk()
|
|
||||||
populate()
|
|
||||||
..()
|
|
||||||
@@ -1,34 +1,47 @@
|
|||||||
import { useBackend } from 'tgui/backend';
|
import { useBackend } from 'tgui/backend';
|
||||||
import { Window } from 'tgui/layouts';
|
import { Window } from 'tgui/layouts';
|
||||||
import { Button, Section } from 'tgui-core/components';
|
import { Box, Button, Section, Stack } from 'tgui-core/components';
|
||||||
|
|
||||||
type Data = { contents: content[] };
|
type Data = {
|
||||||
|
cabinet_name: string;
|
||||||
type content = { name: string; ref: string };
|
contents: string[];
|
||||||
|
contents_ref: string[];
|
||||||
|
};
|
||||||
|
|
||||||
export const FileCabinet = (props) => {
|
export const FileCabinet = (props) => {
|
||||||
const { act, data } = useBackend<Data>();
|
const { act, data } = useBackend<Data>();
|
||||||
|
const { cabinet_name, contents, contents_ref } = data;
|
||||||
const { contents } = data;
|
|
||||||
|
|
||||||
// Wow, the filing cabinets sort themselves in 2320.
|
|
||||||
contents.sort((a, b) => a.name.localeCompare(b.name));
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Window width={350} height={300}>
|
<Window title={cabinet_name || 'Filing Cabinet'} width={350} height={300}>
|
||||||
<Window.Content scrollable>
|
<Window.Content backgroundColor="#B88F3D" scrollable>
|
||||||
<Section>
|
{contents.map((object, index) => (
|
||||||
{contents.map((item) => (
|
<Stack
|
||||||
<Button
|
key={contents_ref[index]}
|
||||||
key={item.ref}
|
color="black"
|
||||||
fluid
|
backgroundColor="white"
|
||||||
icon="file"
|
style={{ padding: '2px' }}
|
||||||
onClick={() => act('retrieve', { ref: item.ref })}
|
mb={0.5}
|
||||||
>
|
>
|
||||||
{item.name}
|
<Stack.Item align="center" grow>
|
||||||
</Button>
|
<Box align="center">{object}</Box>
|
||||||
))}
|
</Stack.Item>
|
||||||
</Section>
|
<Stack.Item>
|
||||||
|
<Button
|
||||||
|
icon="eject"
|
||||||
|
onClick={() =>
|
||||||
|
act('remove_object', { ref: contents_ref[index] })
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</Stack.Item>
|
||||||
|
</Stack>
|
||||||
|
))}
|
||||||
|
{contents.length === 0 && (
|
||||||
|
<Section>
|
||||||
|
<Box color="white" align="center">
|
||||||
|
The {cabinet_name} is empty!
|
||||||
|
</Box>
|
||||||
|
</Section>
|
||||||
|
)}
|
||||||
</Window.Content>
|
</Window.Content>
|
||||||
</Window>
|
</Window>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,48 +0,0 @@
|
|||||||
import { useBackend } from 'tgui/backend';
|
|
||||||
import { Window } from 'tgui/layouts';
|
|
||||||
import { Box, Button, Section, Stack } from 'tgui-core/components';
|
|
||||||
|
|
||||||
type Data = {
|
|
||||||
cabinet_name: string;
|
|
||||||
contents: string[];
|
|
||||||
contents_ref: string[];
|
|
||||||
};
|
|
||||||
|
|
||||||
export const FilingCabinet = (props) => {
|
|
||||||
const { act, data } = useBackend<Data>();
|
|
||||||
const { cabinet_name, contents, contents_ref } = data;
|
|
||||||
return (
|
|
||||||
<Window title={cabinet_name || 'Filing Cabinet'} width={350} height={300}>
|
|
||||||
<Window.Content backgroundColor="#B88F3D" scrollable>
|
|
||||||
{contents.map((object, index) => (
|
|
||||||
<Stack
|
|
||||||
key={contents_ref[index]}
|
|
||||||
color="black"
|
|
||||||
backgroundColor="white"
|
|
||||||
style={{ padding: '2px' }}
|
|
||||||
mb={0.5}
|
|
||||||
>
|
|
||||||
<Stack.Item align="center" grow>
|
|
||||||
<Box align="center">{object}</Box>
|
|
||||||
</Stack.Item>
|
|
||||||
<Stack.Item>
|
|
||||||
<Button
|
|
||||||
icon="eject"
|
|
||||||
onClick={() =>
|
|
||||||
act('remove_object', { ref: contents_ref[index] })
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
</Stack.Item>
|
|
||||||
</Stack>
|
|
||||||
))}
|
|
||||||
{contents.length === 0 && (
|
|
||||||
<Section>
|
|
||||||
<Box color="white" align="center">
|
|
||||||
The {cabinet_name} is empty!
|
|
||||||
</Box>
|
|
||||||
</Section>
|
|
||||||
)}
|
|
||||||
</Window.Content>
|
|
||||||
</Window>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
@@ -4134,6 +4134,7 @@
|
|||||||
#include "code\modules\paperwork\carbonpaper.dm"
|
#include "code\modules\paperwork\carbonpaper.dm"
|
||||||
#include "code\modules\paperwork\clipboard.dm"
|
#include "code\modules\paperwork\clipboard.dm"
|
||||||
#include "code\modules\paperwork\faxmachine.dm"
|
#include "code\modules\paperwork\faxmachine.dm"
|
||||||
|
#include "code\modules\paperwork\filingcabinet.dm"
|
||||||
#include "code\modules\paperwork\folders.dm"
|
#include "code\modules\paperwork\folders.dm"
|
||||||
#include "code\modules\paperwork\handlabeler.dm"
|
#include "code\modules\paperwork\handlabeler.dm"
|
||||||
#include "code\modules\paperwork\paper.dm"
|
#include "code\modules\paperwork\paper.dm"
|
||||||
@@ -5344,7 +5345,6 @@
|
|||||||
#include "modular_chomp\code\modules\organs\internal\malignant\malignant.dm"
|
#include "modular_chomp\code\modules\organs\internal\malignant\malignant.dm"
|
||||||
#include "modular_chomp\code\modules\overmap\dynamic_sector.dm"
|
#include "modular_chomp\code\modules\overmap\dynamic_sector.dm"
|
||||||
#include "modular_chomp\code\modules\paperwork\faxmachine.dm"
|
#include "modular_chomp\code\modules\paperwork\faxmachine.dm"
|
||||||
#include "modular_chomp\code\modules\paperwork\filingcabinet.dm"
|
|
||||||
#include "modular_chomp\code\modules\paperwork\paper.dm"
|
#include "modular_chomp\code\modules\paperwork\paper.dm"
|
||||||
#include "modular_chomp\code\modules\paperwork\pen.dm"
|
#include "modular_chomp\code\modules\paperwork\pen.dm"
|
||||||
#include "modular_chomp\code\modules\pda\core_apps.dm"
|
#include "modular_chomp\code\modules\pda\core_apps.dm"
|
||||||
|
|||||||
Reference in New Issue
Block a user