jsketcher/web/app/cad/craft/wizard/wizardSelectionPlugin.js
2019-01-14 22:17:07 -08:00

163 lines
4.6 KiB
JavaScript

import {DATUM, DATUM_AXIS, EDGE, FACE, LOOP, SHELL, SKETCH_OBJECT} from '../../scene/entites';
export function activate(ctx) {
ctx.streams.wizard.wizardContext.attach(wizCtx => {
ctx.services.marker.clear();
if (wizCtx) {
const wizardPickHandler = createPickHandlerFromSchema(wizCtx);
ctx.services.pickControl.setPickHandler(wizardPickHandler);
wizCtx.workingRequest$.attach(({type, params}) => {
const marker = ctx.services.marker;
marker.startSession();
let {schema, schemaIndex} = wizCtx.operation;
schemaIndex.entityParams.forEach(param => {
let color = schema[param].markColor;
let val = params[param];
let entity = schemaIndex.entitiesByParam[param];
if (Array.isArray(val)) {
val.forEach(id => marker.mark(entity, id, color));
} else {
if (val) {
marker.mark(entity, val, color);
}
}
});
marker.commit();
});
} else {
ctx.services.pickControl.setPickHandler(null);
}
});
}
const singleValue = (id, current) => id;
const arrayValue = (id, arr) => {
if (!arr) {
return [id];
}
if (arr.indexOf(id) === -1) {
arr.push(id);
}
return arr;
};
function createPickHandlerFromSchema(wizCtx) {
function update(param, value, paramToMakeActive) {
wizCtx.updateParam(param, value);
wizCtx.updateState(state => {
state.activeParam = paramToMakeActive;
});
}
return model => {
const modelType = model.TYPE;
const params = wizCtx.workingRequest$.value.params;
const state = wizCtx.state$.value;
let {schema, schemaIndex} = wizCtx.operation;
const {entitiesByType, entitiesByParam, entityParams} = schemaIndex;
const activeMd = state.activeParam && schema[state.activeParam];
const activeEntity = state.activeParam && entitiesByParam[state.activeParam];
function select(param, entity, md, id) {
const valueGetter = md.type === 'array' ? arrayValue : singleValue;
let paramToMakeActive = getNextActiveParam(param, entity, md);
update(param, valueGetter(id, params[param]), paramToMakeActive);
}
function getNextActiveParam(currParam, entity, currMd) {
if (currMd.type !== 'array') {
let entityGroup = entitiesByType[entity];
if (entityGroup) {
const index = entityGroup.indexOf(currParam);
const nextIndex = (index + 1) % entityGroup.length;
return entityGroup[nextIndex];
}
}
return currParam;
}
function selectActive(id) {
select(state.activeParam, activeEntity, activeMd, id);
}
function selectToFirst(entity, id) {
let entities = entitiesByType[entity];
if (!entities) {
return false;
}
let param = entities[0];
select(param, entity, schema[param], id);
}
function deselectIfNeeded(id) {
for (let param of entityParams) {
let val = params[param];
if (val === id) {
update(param, undefined, param);
return true;
} else if (Array.isArray(val)) {
let index = val.indexOf(id);
if (index !== -1) {
update(param, params[param].splice(index, 1), param);
return true;
}
}
}
}
if (deselectIfNeeded(model.id)) {
return false;
} else if (model.shell) {
if (deselectIfNeeded(model.shell.id)) {
return false;
}
}
if (modelType === FACE) {
if (activeEntity === SHELL) {
selectActive(model.shell.id);
} else if (activeEntity === FACE) {
selectActive(model.id);
} else {
if (!selectToFirst(FACE, model.id)) {
selectToFirst(SHELL, model.shell.id)
}
}
} else if (modelType === SKETCH_OBJECT) {
if (activeEntity === SKETCH_OBJECT) {
selectActive(model.id);
} else {
selectToFirst(SKETCH_OBJECT, model.id);
}
} else if (modelType === EDGE) {
if (activeEntity === EDGE) {
selectActive(model.id);
} else {
selectToFirst(EDGE, model.id);
}
} else if (modelType === DATUM) {
if (activeEntity === DATUM) {
selectActive(model.id);
} else {
selectToFirst(DATUM, model.id);
}
} else if (modelType === DATUM_AXIS) {
if (activeEntity === DATUM_AXIS) {
selectActive(model.id);
} else {
selectToFirst(DATUM_AXIS, model.id);
}
} else if (modelType === LOOP) {
if (activeEntity === LOOP) {
selectActive(model.id);
} else {
selectToFirst(LOOP, model.id);
}
}
return false;
};
}