chore: lint files

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-03-31 21:30:23 +02:00
committed by Braks
parent 9d597ff454
commit f61e5beb02
69 changed files with 623 additions and 424 deletions
+10 -6
View File
@@ -18,23 +18,27 @@ const bgName = ref('AYAME')
const connectionLineStyle = { stroke: '#fff' }
// minimap stroke color functions
const nodeStroke = (n) => {
function nodeStroke(n) {
if (n.type === 'input') return '#0041d0'
if (n.type === 'custom') return presets.sumi
if (n.type === 'output') return '#ff0072'
return '#eee'
}
const nodeColor = (n) => {
function nodeColor(n) {
if (n.type === 'custom') return bgColor.value
return '#fff'
}
// output labels
const outputColorLabel = () => h('div', {}, bgColor.value)
const outputNameLabel = () => h('div', {}, bgName.value)
function outputColorLabel() {
return h('div', {}, bgColor.value)
}
function outputNameLabel() {
return h('div', {}, bgName.value)
}
const onChange = (color) => {
function onChange(color) {
gradient.value = false
bgColor.value = color.value
bgName.value = color.name
@@ -42,7 +46,7 @@ const onChange = (color) => {
findNode('3').hidden = false
}
const onGradient = () => {
function onGradient() {
gradient.value = true
bgColor.value = null
bgName.value = 'gradient'
@@ -12,11 +12,11 @@ const props = defineProps({
const emit = defineEmits(['change', 'gradient'])
const onSelect = (color) => {
function onSelect(color) {
emit('change', color)
}
const onGradient = () => {
function onGradient() {
emit('gradient')
}