chore(storybook): remove unused utils

This commit is contained in:
Patryk Osmaczko 2022-10-26 17:36:08 +02:00 committed by osmaczko
parent db2be47ee1
commit 339cc8826e
1 changed files with 0 additions and 20 deletions

View File

@ -2,26 +2,6 @@ pragma Singleton
import QtQml 2.14
QtObject {
function singleShotConnection(prop, handler) {
const internalHandler = (...args) => {
handler(...args)
prop.disconnect(internalHandler)
}
prop.connect(internalHandler)
}
function getUniqueValuesFromModel(model, prop) {
if (!model)
return []
const values = []
for (let i = 0; i < model.count; i++)
values.push(model.get(i)[prop])
const onlyUnique = (value, index, self) => self.indexOf(value) === index
return values.filter(onlyUnique)
}
function formatQmlCode(code) {
code = code.replace(/^\n+/, "")
code = code.replace(/\s+$/, "")