@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
24 lines (23 loc) • 706 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _vue = require("vue");
var _treeUtil = require("../utils/treeUtil");
var _default = (options, fieldNames, rawValues) => {
return (0, _vue.computed)(() => {
const missingValues = [];
const existsValues = [];
rawValues.value.forEach(valueCell => {
const pathOptions = (0, _treeUtil.toPathOptions)(valueCell, options.value, fieldNames.value);
if (pathOptions.every(opt => opt.option)) {
existsValues.push(valueCell);
} else {
missingValues.push(valueCell);
}
});
return [existsValues, missingValues];
});
};
exports.default = _default;
;