HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/root/home/slfopp7cb1df/public_html/sitepacket.com/src/client/src/UI/menu/list.js
import Item from 'Client/UI/menu/item'
import ItemArtboard from 'Client/UI/menu/itemArtboard'
import * as consts from 'Editor/scripts/consts'

export default class List {
  store = undefined
  element = document.createElement('div')
  items = []
  parentsForItem = {}
  height = 0
  hiddenGroups = new Set()
  hiddenArtboards = new Set()
  artboardItems = {}

  constructor(store) {
    this.store = store
    this.element.classList.add('imp-object-list')

    this.drawItems()
  }
  drawItems() {
    this.element.innerHTML = ''

    for (let artboard of this.store.getArtboards()) {
      // If we are showing only objects from the active artboard, skip inactive artboards
      if (!this.store.state.object_list.group_by_artboard && this.store.state.object_list.show_only_objects_from_active_artboard && artboard.id !== this.store.getCurrentArtboard()) continue

      // Create artboard
      let artboardContainer = this.createArtboardContainer()
      if (this.store.state.object_list.group_by_artboard) {
        let artboardItem = new ItemArtboard({ options: artboard, imageMapId: this.store.getID() })
        this.artboardItems[artboard.id] = artboardItem
        artboardContainer.appendChild(artboardItem.element)
      }

      // Create children
      let artboardChildren = []
      artboard.children.forEach(child => {
        artboardChildren.push(...this.createItemAndChildren(child, [artboard.id]))
      })
      this.items.push(...artboardChildren)

      // Append children to artboard container
      artboardChildren.forEach(child => artboardContainer.appendChild(child.element))

      // Append the artboard container
      this.element.appendChild(artboardContainer)
    }
  }
  createArtboardContainer() {
    let container = document.createElement('div')
    container.classList.add('imp-object-list-artboard-container')

    return container
  }
  createItemAndChildren(item, parents = []) {
    // If the object is static and we are hiding static objects, return
    if (this.store.state.object_list.hide_static_objects && item.static) return []

    // Returns an array of Item objects, including the item's children if applicable
    let result = []

    let isGroup = false
    if (item.type === consts.OBJECT_GROUP && this.store.state.object_list.show_groups && !item.single_object) isGroup = true

    let depth = 0
    if (this.store.state.object_list.show_groups) depth = parents.length - 1

    if (item.type !== consts.OBJECT_GROUP ||
      (item.type === consts.OBJECT_GROUP && this.store.state.object_list.show_groups) ||
      (item.type === consts.OBJECT_GROUP && item.single_object)) {
      result.push(new Item({
        options: item,
        isGroup,
        depth,
        imageMapId: this.store.getID()
      }))
    }

    if (item.type === consts.OBJECT_GROUP && !item.single_object) {
      for (let child of item.children) {
        if (this.store.state.object_list.hide_static_objects && child.static) continue

        let childItems = this.createItemAndChildren(child, [...parents, item.id])
        result.push(...childItems)
      }
    }

    this.parentsForItem[item.id] = this.parentsForItem[item.id] ? [...this.parentsForItem[item.id], ...parents] : parents

    return result
  }
  filterItems(text = '') {
    for (let item of this.items) {
      if (text.length > 2) {
        var r = '(' + text + ')'
        var regex = new RegExp(r, 'gi')
        var replacedItemText = item.options.title.replace(regex, '<span class="imp-search-highlight">' + '$&' + '</span>')

        if (item.options.title != replacedItemText) {
          item.show()
          item.element.querySelector('p').innerHTML = replacedItemText
        } else {
          item.hide()
          item.element.querySelector('p').innerHTML = item.options.title
        }
      } else {
        item.show()
        item.element.querySelector('p').innerHTML = item.options.title
      }
    }
  }
  toggleGroup(id) {
    if (this.hiddenGroups.has(id)) {
      this.hiddenGroups.delete(id)
      this.items.filter(item => item.options.id === id)[0].openFolder()
    } else {
      this.hiddenGroups.add(id)
      this.items.filter(item => item.options.id === id)[0].closeFolder()
    }

    this.render()
  }
  toggleArtboard(id) {
    if (this.hiddenArtboards.has(id)) {
      this.hiddenArtboards.delete(id)
      this.artboardItems[id].expand()
    } else {
      this.hiddenArtboards.add(id)
      this.artboardItems[id].collapse()
    }

    this.render()
  }
  render() {
    for (let item of this.items) {
      let hidden = false
      for (let parentId of this.parentsForItem[item.options.id]) {
        if (this.hiddenGroups.has(parentId) || this.hiddenArtboards.has(parentId)) {
          hidden = true
          break
        }
      }
      if (hidden) item.hide()
      if (!hidden) item.show()
    }
  }
}