123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- // Imports
- import {variables} from "../variables/variables";
- import {eltP} from "codemirror/src/util/dom";
- import {operations} from "./operations";
- // Imports
- // *********************************************************************************
- // Scheme for the operations list
- // *********************************************************************************
- export const operationScheme = {
- hash: 'UUID for the operation',
- assignedVariable: 'Reference to the assigned variable',
- operators: []
- }
- // *********************************************************************************
- // Scheme for the operators
- // *********************************************************************************
- export const operatorScheme = {
- hash: 'UUID for the operator',
- type: 'Operator type',
- value: 'Operator value',
- variable: 'Reference to the variable',
- operator: 'Reference to operator'
- }
- // *********************************************************************************
- // Operator types
- // *********************************************************************************
- export const Operators = {
- VARIABLE: 'VARIABLE',
- VALUE: 'VALUE',
- OPERATOR: 'OPERATOR'
- }
- export const operatorTypes = [
- {
- name: 'Variável',
- value: Operators.VARIABLE
- },
- {
- name: 'Valor',
- value: Operators.VALUE
- },
- {
- name: 'Operator',
- value: Operators.OPERATOR
- }
- ]
- // *********************************************************************************
- // Operation types
- // *********************************************************************************
- export const operationTypes = [
- {
- name: ';',
- friendlyName: 'Fim',
- value: 'SEMICOLON'
- },
- {
- name: '+',
- friendlyName: 'Soma',
- value: 'PLUS'
- },
- {
- name: '-',
- friendlyName: 'Subtração',
- value: 'MINUS'
- },
- {
- name: '*',
- friendlyName: 'Multiplicação',
- value: 'MULTIPLICATION'
- },
- {
- name: '/',
- friendlyName: 'Divisão',
- value: 'DIVISION'
- },
- {
- name: '(',
- friendlyName: 'Abre parenteses',
- value: 'OPEN_PARENTHESES'
- },
- {
- name: ')',
- friendlyName: 'Fecha parenteses',
- value: 'CLOSE_PARENTHESES'
- },
- ]
- // *********************************************************************************
- // Operator kinds
- // *********************************************************************************
- export const operatorKinds = [
- {
- name: 'Variável',
- value: 'VARIABLE'
- },
- {
- name: 'Valor',
- value: 'VALUE'
- }
- ]
- // *********************************************************************************
- // Operation type html schemes
- // *********************************************************************************
- export function htmlOperationTypeScheme () {
- let operationTypesSelect = ``;
- for (let i = 0; i < operationTypes.length; i++) {
- operationTypesSelect += `<option value="${operationTypes[i].value}">${operationTypes[i].name}</option>`;
- }
- return `<div class="col-2">
- <select id="operation<operationKindId>Select" class="form-control" title="selecione o tipo da operação" >
- <option > selecione</option>
- ${operationTypesSelect}
- </select>
- </div>`;
- }
- // *********************************************************************************
- // Assign variable operation kind html schemes
- // *********************************************************************************
- export function htmlOperationKindScheme (operation) {
- let operatorKindsSelect = ``;
- for (let i = 0; i < operatorKinds.length; i++) {
- operatorKindsSelect += `<option value="${operatorKinds[i].value}">${operatorKinds[i].name}</option>`;
- }
- return `<div class="col-3">
- <select id="operation${operation.hash}KindSelect" class="form-control" title="Selecione o tipo de atrabuição" operation-id="${operation.hash}">
- <option >Selecione</option>
- ${operatorKindsSelect}
- </select>
- </div>`;
- }
- // *********************************************************************************
- // Assign variable html schemes
- // *********************************************************************************
- export function htmlAssignVariableScheme () {
- const variablesSelect = htmlVariablesSelectScheme();
- return `<li id="operation<operationId>Li">
- <form id="operation<operationId>Form">
- <div class="row p-2 w-100 variable-item" style="background-color: aliceblue;">
- <div class="col-2 my-auto">
- <select title="Selecione a variável" id="operation<operationId>AssignVariableSelect" class="form-control" name="variableSelect" operation-id="<operationId>">
- ${variablesSelect}
- </select>
- </div>
- <div class="col-1 my-auto">
- <label for="operation<operationId>AssignVariableSelect" style="margin-bottom: 0px !important" tabindex="0" title="Recebe">recebe</label>
- </div>
- <div class="col">
- <div class="row" id="operation<operationId>OperatorsDiv"></div>
- </div>
- <div class="col-1 my-auto" style="text-align: end;">
- <div class="row justify-content-end">
- <div class="col-1" style="margin-right: 4px;">
- <a id="operation<operationId>Resume" href="javascript:void(0)" class="text-info" operation-id="<operationId>">
- <i class="fas fa-eye"></i>
- </a>
- </div>
- <div class="col-1">
- <a id="operation<operationId>Delete" href="javascript:void(0)" class="text-danger" operation-id="<operationId>" title="Excluir">X</a>
- </div>
- </div>
- </div>
- </div>
- </form>
- </li>`;
- }
- // *********************************************************************************
- // Variable select html schemes
- // *********************************************************************************
- export function htmlVariablesSelectScheme () {
- let variablesSelect = variables.length === 0 ? `<option>N/A</option>` : ``;
- for (let i = 0; i < variables.length; i++) {
- variablesSelect += `<option value="${variables[i].hash}">${variables[i].name}</option>`
- }
- return variablesSelect;
- }
- // *********************************************************************************
- // *********************************************************************************
- // Operator variable select
- // *********************************************************************************
- export function htmlOperatorVariablesSelectScheme (operation, operator) {
- let variablesSelect = variables.length === 0 ? `<option>N/A</option>` : ``;
- for (let i = 0; i < variables.length; i++) {
- variablesSelect += `<option value="${variables[i].hash}">${variables[i].name}</option>`
- }
- return `<div class="col-2">
- <select id="operation${operation.hash}Operator${operator.hash}VariableSelect" class="form-control" name="variableSelect" title="Selecione a variável" operation-id="${operation.hash}" operator-id="${operator.hash}">
- ${variablesSelect}
- </select>
- </div>`;
- }
- // *********************************************************************************
- // Operator value input
- // *********************************************************************************
- export function htmlOperatorValueInputScheme (operation, operator) {
- return `<div class="col-2">
- <input type="number" id="operation${operation.hash}Operator${operator.hash}ValueInput" class="form-control" name="" title="Insira um valor" operation-id="${operation.hash}" operator-id="${operator.hash}">
- </div>`;
- }
- // *********************************************************************************
- // Operation type select
- // *********************************************************************************
- export function htmlOperationTypeSelect (operation, operator) {
- let operationTypesSelect = ``;
- for (let i = 0; i < operationTypes.length; i++) {
- operationTypesSelect += `<option value="${operationTypes[i].value}" title="${operationTypes[i].friendlyName}">${operationTypes[i].name}</option>`;
- }
- return `<div class="col-2">
- <select id="operation${operation.hash}Operator${operator.hash}OperationTypeSelect" class="form-control" title="selecione o tipo da operação" operation-id="${operation.hash}" operator-id="${operator.hash}">
- ${operationTypesSelect}
- </select>
- </div>`;
- }
- // *********************************************************************************
- // Util
- // *********************************************************************************
- export function getOperatorTypeByValue (value) {
- for (let i = 0; i < operatorTypes.length; i++) {
- if (operatorTypes[i].value === value)
- return operatorTypes[i];
- }
- return null;
- }
- // *********************************************************************************
- export function getOperationTypeByValue (value) {
- for (let i = 0; i < operationTypes.length; i++) {
- if (operationTypes[i].value === value)
- return operationTypes[i];
- }
- return null;
- }
- // *********************************************************************************
- export function getOperatorByHash (operation, operatorHash) {
- for (let i = 0; i < operation.operators.length; i++) {
- if (operation.operators[i].hash === operatorHash)
- return operation.operators[i];
- }
- return null;
- }
- // *********************************************************************************
|