diff --git a/_data/serverState.ts b/_data/serverState.ts index dee84c613..8f38fa463 100644 --- a/_data/serverState.ts +++ b/_data/serverState.ts @@ -46,8 +46,8 @@ const serverState = { expireTime, lanIp: '192.168.0.1', locale: 'en', - pluginInstalled: true, - registered: true, + pluginInstalled: false, + registered: false, site: 'http://localhost:4321', state, uptime, diff --git a/_webGui/callbackTest.page b/_webGui/callbackTest.page index 0f21a0810..ae54ef484 100644 --- a/_webGui/callbackTest.page +++ b/_webGui/callbackTest.page @@ -10,11 +10,12 @@ $myservers = file_exists($myservers_flash_cfg_path) ? @parse_ini_file($myservers // extract web component JS file from manifest $jsonManifest = file_get_contents('/usr/local/emhttp/plugins/dynamix.my.servers/webComponents/manifest.json'); $jsonManifestData = json_decode($jsonManifest, true); -$webComponentFile = $jsonManifestData["connect-components.client.mjs"]["file"]; +$webComponentJsFile = $jsonManifestData["connect-components.client.mjs"]["file"]; // web component -$localSource = '/plugins/dynamix.my.servers/webComponents/' . $webComponentFile; +$localSourceBasePath = '/plugins/dynamix.my.servers/webComponents/'; +$localSourceJs = $localSourceBasePath . $webComponentJsFile; // add the web component source to the DOM -echo ''; +echo ''; /** * Build vars for user profile prop diff --git a/app.vue b/app.vue index 0d07d7915..49ad1c6da 100644 --- a/app.vue +++ b/app.vue @@ -1,6 +1,4 @@ - - \ No newline at end of file diff --git a/assets/main.css b/assets/main.css index 6b5d72465..82f621fe3 100644 --- a/assets/main.css +++ b/assets/main.css @@ -40,4 +40,52 @@ body { border-bottom: 11px solid var(--color-alpha); border-left: 11px solid transparent; } +} + +.BrandLoading_2, +.BrandLoading_4 { + animation: mark_2 1.5s ease infinite; +} +.BrandLoading_3 { + animation: mark_3 1.5s ease infinite; +} +.BrandLoading_6, +.BrandLoading_8 { + animation: mark_6 1.5s ease infinite; +} +.BrandLoading_7 { + animation: mark_7 1.5s ease infinite; +} + +@keyframes mark_2 { + 50% { + transform: translateY(-40px); + } + 100% { + transform: translateY(0); + } +} +@keyframes mark_3 { + 50% { + transform: translateY(-62px); + } + 100% { + transform: translateY(0); + } +} +@keyframes mark_6 { + 50% { + transform: translateY(40px); + } + 100% { + transform: translateY(0); + } +} +@keyframes mark_7 { + 50% { + transform: translateY(62px); + } + 100% { + transform: translateY(0); + } } \ No newline at end of file diff --git a/components/Brand/Loading.vue b/components/Brand/Loading.vue index 7f0293439..28dda612a 100644 --- a/components/Brand/Loading.vue +++ b/components/Brand/Loading.vue @@ -1,4 +1,7 @@ - - \ No newline at end of file diff --git a/components/Modal.vue b/components/Modal.vue index afc872c5b..ed2f0e39e 100644 --- a/components/Modal.vue +++ b/components/Modal.vue @@ -1,9 +1,7 @@ diff --git a/components/Modals.ce.vue b/components/Modals.ce.vue new file mode 100644 index 000000000..10bb9de3c --- /dev/null +++ b/components/Modals.ce.vue @@ -0,0 +1,26 @@ + + + + + diff --git a/components/UserProfile.ce.vue b/components/UserProfile.ce.vue index ca223e65b..79e0c9b72 100644 --- a/components/UserProfile.ce.vue +++ b/components/UserProfile.ce.vue @@ -81,9 +81,6 @@ onBeforeMount(() => {