Skip to content

Commit

Permalink
Classes for names and identifiers
Browse files Browse the repository at this point in the history
Fixes #259
  • Loading branch information
ezeholz committed Apr 15, 2021
1 parent 99f3523 commit 4bb1ad1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.3.4] - Unreleased

### Fixed
- Classes now detects when you're using identifiers and names in the same action (#259)

## [2.3.3] - 2021-04-05

### Changed
Expand Down
27 changes: 11 additions & 16 deletions MMM-Remote-Control.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,22 +131,17 @@ Module.register("MMM-Remote-Control", {
if (payload.force) { options.force = true; }
let modules = []
if(payload.module !== 'all') {
if (!Array.prototype.find) {
// https://tc39.github.io/ecma262/#sec-array.prototype.find
Object.defineProperty(Array.prototype,"find",{value:function(r){if(null==this)throw new TypeError('"this" is null or not defined');var e=Object(this),t=e.length>>>0;if("function"!=typeof r)throw new TypeError("predicate must be a function");for(var n=arguments[1],i=0;i<t;){var o=e[i];if(r.call(n,o,i,e))return o;i++}},configurable:!0,writable:!0});
}
let i = MM.getModules().find(m => {
if(m) {
return (payload.module.includes(m.identifier));
}
});
if (!i) {
modules = MM.getModules().filter(m => {
if(m) {
return (payload.module.includes(m.name));
}
});
} else modules.push(i)
let x = payload.module
modules = modules.concat(MM.getModules().filter(m => {
if(m && x.includes(m.identifier)) {
x = x.filter((t)=>t!=m.identifier)
return true;
}
}),MM.getModules().filter(m => {
if(m) {
return x.includes(m.name);
}
}))
} else {
modules = MM.getModules()
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Magic-Mirror-Module-Remote-Control",
"version": "2.3.2",
"version": "2.3.4",
"description": "This module for the Magic Mirror allows you to shutdown and configure your mirror through a web browser.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 4bb1ad1

Please sign in to comment.