git @ Cat's Eye Technologies Lexeduct / 11394ca
Update to latest master (live mode, repeat-chars filter.) Chris Pressey 9 years ago
3 changed file(s) with 86 addition(s) and 30 deletion(s). Raw diff Collapse all Expand all
5454 <script src="lexeduct-browser.js"></script>
5555 <script>
5656 (new LexeductUI()).init({
57 'container': document.getElementById('container'),
58 'initialText': document.getElementById('initial-text').innerHTML
57 container: document.getElementById('container'),
58 initialText: document.getElementById('initial-text').innerHTML,
59 liveMode: true
5960 });
6061 </script>
1111
1212 function LexeductUI() {
1313 var container, input, output, processButton, tranformersPanel;
14 var liveMode;
1514 var MAX_TRANSFORMER_SLOTS = 8; // TODO dynamic
1615 var transformerSlots = [];
1716 var transformerNames;
1817
1918 this.init = function(cfg) {
19 var $this = this;
20
2021 container = cfg.container;
22 cfg.liveMode = !!cfg.liveMode;
23
2124 input = yoob.makeTextArea(container, 40, 20, cfg.initialText);
25 input.onkeyup = function() {
26 if ($this.liveMode) {
27 $this.process();
28 }
29 };
2230
2331 var transformersPanel = yoob.makeDiv(container);
2432 transformersPanel.style.border = "2px solid black";
3341 }
3442
3543 processButton = yoob.makeButton(transformersPanel, "Process", this.process);
36
37 yoob.makeCheckbox(transformersPanel, false, "Live mode", function(b) {
38 liveMode = b;
44 yoob.makeCheckbox(transformersPanel, cfg.liveMode, "Live mode", function(b) {
45 $this.setLiveMode(b);
3946 });
4047 yoob.makeLineBreak(transformersPanel);
4148
4552 }
4653
4754 output = yoob.makeTextArea(container, 40, 20);
55
56 this.setLiveMode(cfg.liveMode);
57 };
58
59 this.setLiveMode = function(b) {
60 this.liveMode = b;
61 processButton.disabled = b;
4862 };
4963
5064 this.process = function() {
6680 this.updateParametersPanel = function(slot, panel) {
6781 var parameters = transformer[slot.name].parameters;
6882 panel.innerHTML = ""; // delete any previous controls
69 for (var key in parameters) {
70 if (parameters.hasOwnProperty(key)) {
71 var desc = parameters[key][0];
72 var def = parameters[key][1];
73 var label = yoob.makeSpan(panel, key);
74 var input = yoob.makeTextInput(panel, 24, def);
75 slot.selectedParams[key] = def;
76 input.onchange = function() {
77 slot.selectedParams[key] = input.value;
78 if (liveMode) {
79 process();
80 }
81 }
82 yoob.makeLineBreak(panel);
83 for (var paramName in parameters) {
84 if (parameters.hasOwnProperty(paramName)) {
85 var desc = parameters[paramName][0];
86 var def = parameters[paramName][1];
87 this.makeParameterEditor(slot, panel, paramName, desc, def);
8388 }
8489 }
90 };
91
92 this.makeParameterEditor = function(slot, panel, paramName, desc, def) {
93 var label = yoob.makeSpan(panel, paramName);
94 var paramInput = yoob.makeTextInput(panel, 24, def);
95 slot.selectedParams[paramName] = def;
96 var $this = this;
97 paramInput.onkeyup = function() {
98 slot.selectedParams[paramName] = paramInput.value;
99 if ($this.liveMode) {
100 $this.process();
101 }
102 };
103 yoob.makeLineBreak(panel);
85104 };
86105
87106 this.makeTransformerSlot = function(container, index) {
98117 select.onchange = function(e) {
99118 transformerSlots[index].name = select.options[select.selectedIndex].value;
100119 $this.updateParametersPanel(transformerSlots[index], parametersPanel);
101 if (liveMode) {
102 process();
120 if ($this.liveMode) {
121 $this.process();
103122 }
104123 };
105124
1212 transformer['identity'] = module.exports;
1313 module.exports = {
1414 makeTransformer: function(cfg) {
15 cfg.chance = parseInt(cfg.chance || "100", 10);
1516 return function(str, state) {
1617 var s = "";
1718 for (var i = 0; i < str.length; i++) {
18 var c = cfg.chars.charAt(Math.floor(Math.random() * cfg.chars.length));
19 s += str.charAt(i) + c;
19 s += str.charAt(i);
20 if (Math.floor(Math.random() * 100) < cfg.chance) {
21 s += cfg.chars.charAt(
22 Math.floor(Math.random() * cfg.chars.length)
23 );
24 }
2025 }
2126 return s;
2227 };
2328 },
2429 parameters: {
25 'chars': ["The set of characters to select from", ""]
30 'chars': ["The set of characters to select from", ""],
31 'chance': ["Probability (0-100) of applying to any individual character", "100"]
2632 },
2733 description: "Insert a randomly-selected character after each character"
2834 };
5258 transformer['lower'] = module.exports;
5359 module.exports = {
5460 makeTransformer: function(cfg) {
61 cfg.chance = parseInt(cfg.chance || "100", 10);
5562 return function(str, state) {
5663 var s = "";
5764 for (var i = 0; i < str.length; i++) {
5865 var c = str.charAt(i);
59 if (cfg.chars.indexOf(c) === -1) {
60 s += c;
66 if (cfg.chars.indexOf(c) > -1 &&
67 Math.floor(Math.random() * 100) < cfg.chance) {
68 continue;
69 }
70 s += c;
71 }
72 return s;
73 };
74 },
75 parameters: {
76 'chars': ["The set of characters to remove", ""],
77 'chance': ["Probability (0-100) of applying to any individual character", "100"]
78 },
79 description: "Remove all occurrences of the specified characters"
80 };
81
82 transformer['remove-chars'] = module.exports;
83 module.exports = {
84 makeTransformer: function(cfg) {
85 cfg.count = parseInt(cfg.count || "1", 10);
86 cfg.chance = parseInt(cfg.chance || "100", 10);
87 return function(str, state) {
88 var s = "";
89 for (var i = 0; i < str.length; i++) {
90 var c = str.charAt(i);
91 s += c;
92 if (Math.floor(Math.random() * 100) < cfg.chance) {
93 for (var j = 0; j < cfg.count; j++) {
94 s += c;
95 }
6196 }
6297 }
6398 return s;
6499 };
65100 },
66101 parameters: {
67 'chars': ["The set of characters to remove", ""]
102 'count': ["How many extra occurrences of the character to insert", "1"],
103 'chance': ["Probability (0-100) of applying to any individual character", "100"]
68104 },
69 description: "Remove all occurrences of the specified characters"
105 description: "Insert extra copies of the character after each character"
70106 };
71107
72 transformer['remove-chars'] = module.exports;
108 transformer['repeat-chars'] = module.exports;
73109 module.exports = {
74110 makeTransformer: function(cfg) {
75111 cfg.chance = parseInt(cfg.chance || "100", 10);