HUGE REFACTOR / CLEANUP

if there is a issue it's probably something in here that was changed
This commit is contained in:
2021-09-28 20:19:44 +00:00
parent 51eddfede9
commit d0afdd9855
238 changed files with 3127 additions and 8614 deletions

View File

@@ -136,10 +136,6 @@
</div>
</template>
<script>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
/* XXXeslint-disable */
////////////////////////////////////////////////////////////////////////////////////////////////////////////
export default {
data() {
return {
@@ -197,7 +193,7 @@ export default {
}
},
getStateForDisplay(state) {
let ret = {
const ret = {
id: Date.now,
name: "??",
color: "#ffffff",
@@ -259,7 +255,7 @@ export default {
return this.value.states != null && this.value.states.length > 0;
},
stateDisplayList() {
let ret = [];
const ret = [];
this.value.states.forEach(z => {
ret.push(this.getStateForDisplay(z));
});
@@ -281,7 +277,7 @@ export default {
//ok, only thing left to check is if the current user can unlock this
//get remove roles required for current state
let cs = this.pvm.currentState;
const cs = this.pvm.currentState;
if (cs.removeRoles == null || cs.removeRoles == 0) {
//no state set yet
return true;