forked from rojo-rbx/rojo
Update rbx_dom_lua, using subfolder now
This commit is contained in:
69
plugin/rbx_dom_lua/init.lua
Normal file
69
plugin/rbx_dom_lua/init.lua
Normal file
@@ -0,0 +1,69 @@
|
||||
local database = require(script.database)
|
||||
local Error = require(script.Error)
|
||||
local PropertyDescriptor = require(script.PropertyDescriptor)
|
||||
|
||||
local function findCanonicalPropertyDescriptor(className, propertyName)
|
||||
local currentClassName = className
|
||||
|
||||
repeat
|
||||
local currentClass = database.Classes[currentClassName]
|
||||
|
||||
if currentClass == nil then
|
||||
return currentClass
|
||||
end
|
||||
|
||||
local propertyData = currentClass.Properties[propertyName]
|
||||
if propertyData ~= nil then
|
||||
local canonicalData = propertyData.Kind.Canonical
|
||||
if canonicalData ~= nil then
|
||||
return PropertyDescriptor.fromRaw(propertyData, currentClassName, propertyName)
|
||||
end
|
||||
|
||||
local aliasData = propertyData.Kind.Alias
|
||||
if aliasData ~= nil then
|
||||
return PropertyDescriptor.fromRaw(
|
||||
currentClass.properties[aliasData.AliasFor],
|
||||
currentClassName,
|
||||
aliasData.AliasFor)
|
||||
end
|
||||
|
||||
return nil
|
||||
end
|
||||
|
||||
currentClassName = currentClass.Superclass
|
||||
until currentClassName == nil
|
||||
|
||||
return nil
|
||||
end
|
||||
|
||||
local function readProperty(instance, propertyName)
|
||||
local descriptor = findCanonicalPropertyDescriptor(instance.ClassName, propertyName)
|
||||
|
||||
if descriptor == nil then
|
||||
local fullName = ("%s.%s"):format(instance.className, propertyName)
|
||||
|
||||
return false, Error.new(Error.Kind.UnknownProperty, fullName)
|
||||
end
|
||||
|
||||
return descriptor:read(instance)
|
||||
end
|
||||
|
||||
local function writeProperty(instance, propertyName, value)
|
||||
local descriptor = findCanonicalPropertyDescriptor(instance.ClassName, propertyName)
|
||||
|
||||
if descriptor == nil then
|
||||
local fullName = ("%s.%s"):format(instance.className, propertyName)
|
||||
|
||||
return false, Error.new(Error.Kind.UnknownProperty, fullName)
|
||||
end
|
||||
|
||||
return descriptor:write(instance, value)
|
||||
end
|
||||
|
||||
return {
|
||||
readProperty = readProperty,
|
||||
writeProperty = writeProperty,
|
||||
findCanonicalPropertyDescriptor = findCanonicalPropertyDescriptor,
|
||||
Error = Error,
|
||||
EncodedValue = require(script.EncodedValue),
|
||||
}
|
||||
Reference in New Issue
Block a user