Merge pull request #990 from jgmdev/PR/allow-strict-predicate
command predicates: added support for strict matching
This commit is contained in:
commit
ac1d15f235
|
@ -11,21 +11,32 @@ local always_true = function() return true end
|
||||||
---evaluation.
|
---evaluation.
|
||||||
---
|
---
|
||||||
---If a string predicate is given it is treated as a require import that should
|
---If a string predicate is given it is treated as a require import that should
|
||||||
---return a valid object which is checked against the current active view, the
|
---return a valid object which is checked against the current active view,
|
||||||
---sames applies if a table is given. A function that returns a boolean can be
|
---eg: "core.docview" will match any view that inherits from DocView. Appending
|
||||||
---used instead to perform a custom evaluation, setting to nil means always
|
---a `!` at the end of the string means we want to match the given object
|
||||||
---evaluates to true.
|
---from the import strcitly eg: "core.docview!" only DocView is matched.
|
||||||
|
---A function that returns a boolean can be used instead to perform a custom
|
||||||
|
---evaluation, setting to nil means always evaluates to true.
|
||||||
---
|
---
|
||||||
---@param predicate string | table | function
|
---@param predicate string | table | function
|
||||||
---@return function
|
---@return function
|
||||||
function command.generate_predicate(predicate)
|
function command.generate_predicate(predicate)
|
||||||
predicate = predicate or always_true
|
predicate = predicate or always_true
|
||||||
|
local strict = false
|
||||||
if type(predicate) == "string" then
|
if type(predicate) == "string" then
|
||||||
|
if predicate:match("!$") then
|
||||||
|
strict = true
|
||||||
|
predicate = predicate:gsub("!$", "")
|
||||||
|
end
|
||||||
predicate = require(predicate)
|
predicate = require(predicate)
|
||||||
end
|
end
|
||||||
if type(predicate) == "table" then
|
if type(predicate) == "table" then
|
||||||
local class = predicate
|
local class = predicate
|
||||||
predicate = function() return core.active_view:extends(class) end
|
if not strict then
|
||||||
|
predicate = function() return core.active_view:extends(class) end
|
||||||
|
else
|
||||||
|
predicate = function() return core.active_view:is(class) end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
return predicate
|
return predicate
|
||||||
end
|
end
|
||||||
|
|
|
@ -21,10 +21,7 @@ end
|
||||||
|
|
||||||
|
|
||||||
function Object:is(T)
|
function Object:is(T)
|
||||||
if getmetatable(self) == T then
|
return getmetatable(self) == T
|
||||||
return true
|
|
||||||
end
|
|
||||||
return false
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue