Add custom fields + warranty plugin, rework settings into two-pane shell
Feature work from the 2026-07 session: Settings IA - Replace the flat 27-card settings hub with a persistent two-pane shell (SettingsLayout.vue): grouped, searchable left rail + content pane. - Nest all settings/* routes under the shell via router post-processing; shared nav catalog in settingsNav.js. Group by asset class (PCs, Printers, Equipment, Network) so per-type settings stop scattering. Custom fields (core) - customfields + customfieldvalues tables (migration 7d14), CRUD API at /api/customfields, per-asset value get/save. - Settings management page + reusable CustomFieldsSection (detail) and CustomFieldsInputs (form) wired into all four asset types. Warranty (new plugin) - plugins/warranty: warranties + warrantyassets (migration 7d15), derived coverage status, provider abstraction (manual now; Dell/Lenovo/HP stubs). - API CRUD + per-asset panel + report buckets; WarrantyPanel on all four detail pages; Warranties management page; Warranty report + Reports card. - Seed warranty.* permissions. Printer drivers - printerdrivers table (migration 7d13) linked to printer models; drivers now surface on the matching printer's detail page. Other - PCDetail rebalanced (Network + Status + Warranty + custom fields on the right). - Rename PCs list "Features" column to "Remote Access"; fix badge hover underline. - Drop equipment islocationonly field. - Centralize asset-type label/route maps into utils/assetTypes.js. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
50
tools/shot_map_tab.py
Normal file
50
tools/shot_map_tab.py
Normal file
@@ -0,0 +1,50 @@
|
||||
"""Screenshot the System Settings > Floor Map tab of the dev UI.
|
||||
|
||||
Logs in via the API (same as tools/shot.py), seeds the token into
|
||||
localStorage, opens /settings/system, clicks the Floor Map tab, and shots it.
|
||||
"""
|
||||
|
||||
import json
|
||||
import urllib.request
|
||||
|
||||
from playwright.sync_api import sync_playwright
|
||||
|
||||
UI = "http://localhost:5173"
|
||||
API = "http://localhost:5001/api"
|
||||
USERNAME = "270015376"
|
||||
PASSWORD = "changeme"
|
||||
OUT = "/tmp/claude-1000/-home-camp-projects/1d65fbaa-1c42-4b49-82b4-91cb795de52b/scratchpad/shot_floormap.png"
|
||||
|
||||
|
||||
def login():
|
||||
body = json.dumps({"username": USERNAME, "password": PASSWORD}).encode()
|
||||
request = urllib.request.Request(f"{API}/auth/login", data=body,
|
||||
headers={"Content-Type": "application/json"})
|
||||
data = json.load(urllib.request.urlopen(request))["data"]
|
||||
return data["access_token"], data["refresh_token"], data["user"]
|
||||
|
||||
|
||||
def main():
|
||||
token, refresh, user = login()
|
||||
seed = f"""
|
||||
localStorage.setItem('token', {json.dumps(token)});
|
||||
localStorage.setItem('refreshToken', {json.dumps(refresh)});
|
||||
localStorage.setItem('user', {json.dumps(json.dumps(user))});
|
||||
"""
|
||||
with sync_playwright() as p:
|
||||
browser = p.chromium.launch()
|
||||
context = browser.new_context(viewport={"width": 1400, "height": 1100})
|
||||
context.add_init_script(seed)
|
||||
page = context.new_page()
|
||||
page.goto(f"{UI}/settings/system", wait_until="networkidle", timeout=30000)
|
||||
page.wait_for_timeout(800)
|
||||
# Click the Floor Map tab button.
|
||||
page.get_by_text("Floor Map", exact=True).first.click()
|
||||
page.wait_for_timeout(600)
|
||||
page.screenshot(path=OUT, full_page=True)
|
||||
print(OUT)
|
||||
browser.close()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
51
tools/verify_map_pdf.py
Normal file
51
tools/verify_map_pdf.py
Normal file
@@ -0,0 +1,51 @@
|
||||
"""Drive the dev UI: open the map, click Export PDF, save the download + a shot."""
|
||||
import json
|
||||
import urllib.request
|
||||
from playwright.sync_api import sync_playwright
|
||||
|
||||
UI = "http://localhost:5173"
|
||||
API = "http://localhost:5001/api"
|
||||
USERNAME = "270015376"
|
||||
PASSWORD = "changeme"
|
||||
OUT = "/tmp/claude-1000/-home-camp-projects/1d65fbaa-1c42-4b49-82b4-91cb795de52b/scratchpad"
|
||||
|
||||
|
||||
def login():
|
||||
body = json.dumps({"username": USERNAME, "password": PASSWORD}).encode()
|
||||
httprequest = urllib.request.Request(f"{API}/auth/login", data=body,
|
||||
headers={"Content-Type": "application/json"})
|
||||
return json.load(urllib.request.urlopen(httprequest))["data"]
|
||||
|
||||
|
||||
def main():
|
||||
data = login()
|
||||
seed = f"""
|
||||
localStorage.setItem('token', {json.dumps(data['access_token'])});
|
||||
localStorage.setItem('refreshToken', {json.dumps(data['refresh_token'])});
|
||||
localStorage.setItem('user', {json.dumps(json.dumps(data['user']))});
|
||||
"""
|
||||
with sync_playwright() as p:
|
||||
browser = p.chromium.launch()
|
||||
context = browser.new_context(viewport={"width": 1500, "height": 1000},
|
||||
accept_downloads=True)
|
||||
context.add_init_script(seed)
|
||||
page = context.new_page()
|
||||
page.on("console", lambda m: print("CONSOLE", m.type, m.text) if m.type == "error" else None)
|
||||
|
||||
page.goto(f"{UI}/map", wait_until="networkidle", timeout=30000)
|
||||
# Apply a filter to prove the PDF respects it: select Equipment.
|
||||
page.wait_for_timeout(1500)
|
||||
page.select_option("select", label=lambda: True) if False else None
|
||||
page.screenshot(path=f"{OUT}/shot_map_page.png", full_page=False)
|
||||
|
||||
with page.expect_download(timeout=30000) as dl_info:
|
||||
page.get_by_role("button", name="Export PDF").click()
|
||||
download = dl_info.value
|
||||
pdf_path = f"{OUT}/{download.suggested_filename}"
|
||||
download.save_as(pdf_path)
|
||||
print("SAVED_PDF", pdf_path)
|
||||
browser.close()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
57
tools/verify_network_subtypes.py
Normal file
57
tools/verify_network_subtypes.py
Normal file
@@ -0,0 +1,57 @@
|
||||
"""Select Network Devices on the map, screenshot the (now populated) subtype
|
||||
dropdown, then export a filtered PDF to confirm subtypes flow through."""
|
||||
import json
|
||||
import urllib.request
|
||||
from playwright.sync_api import sync_playwright
|
||||
|
||||
UI = "http://localhost:5173"
|
||||
API = "http://localhost:5001/api"
|
||||
OUT = "/tmp/claude-1000/-home-camp-projects/1d65fbaa-1c42-4b49-82b4-91cb795de52b/scratchpad"
|
||||
|
||||
|
||||
def login():
|
||||
body = json.dumps({"username": "270015376", "password": "changeme"}).encode()
|
||||
httprequest = urllib.request.Request(f"{API}/auth/login", data=body,
|
||||
headers={"Content-Type": "application/json"})
|
||||
return json.load(urllib.request.urlopen(httprequest))["data"]
|
||||
|
||||
|
||||
def main():
|
||||
data = login()
|
||||
seed = f"""
|
||||
localStorage.setItem('token', {json.dumps(data['access_token'])});
|
||||
localStorage.setItem('refreshToken', {json.dumps(data['refresh_token'])});
|
||||
localStorage.setItem('user', {json.dumps(json.dumps(data['user']))});
|
||||
"""
|
||||
with sync_playwright() as p:
|
||||
browser = p.chromium.launch()
|
||||
context = browser.new_context(viewport={"width": 1500, "height": 1000},
|
||||
accept_downloads=True)
|
||||
context.add_init_script(seed)
|
||||
page = context.new_page()
|
||||
page.goto(f"{UI}/map", wait_until="networkidle", timeout=30000)
|
||||
page.wait_for_timeout(1500)
|
||||
|
||||
# First select in the filter bar is the asset-type dropdown.
|
||||
type_select = page.locator(".map-filters select").first
|
||||
type_select.select_option(value="network_device")
|
||||
page.wait_for_timeout(600)
|
||||
|
||||
# Read the subtype dropdown (second select) options.
|
||||
subtype_select = page.locator(".map-filters select").nth(1)
|
||||
opts = subtype_select.locator("option").all_inner_texts()
|
||||
print("SUBTYPE_OPTIONS", opts)
|
||||
|
||||
page.screenshot(path=f"{OUT}/shot_network_subtypes.png", full_page=False)
|
||||
|
||||
# Export a filtered PDF (Network Devices).
|
||||
with page.expect_download(timeout=30000) as dl:
|
||||
page.get_by_role("button", name="Export PDF").click()
|
||||
pdf = f"{OUT}/{dl.value.suggested_filename.replace('.pdf','')}-network.pdf"
|
||||
dl.value.save_as(pdf)
|
||||
print("SAVED_PDF", pdf)
|
||||
browser.close()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user