Vue.js UI implementation (#4868)

This UI is going to be more integrated with BYOND host objects. It's update principal is very different from nanoui's. It is based around state that is being synchronized with server and client (browser). Such synchronization has it's problems, like it can't handle rapid changes, what could cause client and server to become out of sync and client state to be discard.
This commit is contained in:
Karolis
2018-08-04 20:19:29 +03:00
committed by Erki
parent 8519dcc393
commit 4065e29e86
104 changed files with 22199 additions and 352 deletions

View File

@@ -1,11 +1,11 @@
/datum/proc/nano_host()
/datum/proc/ui_host()
return src
/datum/proc/nano_container()
return src
/datum/proc/CanUseTopic(var/mob/user, var/datum/topic_state/state = default_state)
var/datum/src_object = nano_host()
var/datum/src_object = ui_host()
return state.can_use_topic(src_object, user)
/datum/topic_state/proc/href_list(var/mob/user)