Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cc-logs-addon-runtime): init component #1359

Merged
merged 4 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 118 additions & 50 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"components:graph-usage": "node tasks/component-usage-cli.js",
"format": "prettier . --write",
"format:check": "prettier . --check",
"install-local:client": "(cd ../clever-client.js && DEV=true npm pack) && mv ../clever-client.js/clevercloud-client-*.tgz . && npm i -f ./clevercloud-client-*.tgz",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:inspect-config": "eslint --inspect-config",
Expand All @@ -60,7 +61,7 @@
"typecheck:stats": "node tasks/typechecking-stats.js"
},
"dependencies": {
"@clevercloud/client": "^9.2.1",
"@clevercloud/client": "^10.0.0",
"@lit-labs/motion": "^1.0.7",
"@lit-labs/virtualizer": "^2.0.14",
"@shoelace-style/shoelace": "^2.18.0",
Expand Down
121 changes: 121 additions & 0 deletions sandbox/cc-logs-addon-runtime/cc-logs-addon-runtime-sandbox.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
import { css, html, LitElement } from 'lit';
import { createRef, ref } from 'lit/directives/ref.js';
import '../../src/components/cc-button/cc-button.js';
import '../../src/components/cc-input-text/cc-input-text.js';
import '../../src/components/cc-logs-addon-runtime/cc-logs-addon-runtime.smart.js';
import '../../src/components/cc-select/cc-select.js';
import { formSubmit } from '../../src/lib/form/form-submit-directive.js';
import { sandboxStyles } from '../sandbox-styles.js';

const DATE_RANGE_SELECTION_OPTIONS = [
{ label: 'none', value: 'none', range: null },
{ label: 'live', value: 'live', range: { type: 'live' } },
{ label: 'lastHour', value: 'lastHour', range: { type: 'preset', preset: 'lastHour' } },
{ label: 'last4Hours', value: 'last4Hours', range: { type: 'preset', preset: 'last4Hours' } },
{ label: 'last7Days', value: 'last7Days', range: { type: 'preset', preset: 'last7Days' } },
{ label: 'today', value: 'today', range: { type: 'preset', preset: 'today' } },
{ label: 'yesterday', value: 'yesterday', range: { type: 'preset', preset: 'yesterday' } },
];

const INITIAL_OWNER = 'orga_540caeb6-521c-4a19-a955-efe6da35d142';
const INITIAL_ADDON = 'mysql_13fad7db-da7b-4a99-84ae-bbe71a4e2e08';

/**
* @typedef {import('../../src/components/cc-smart-container/cc-smart-container.js').CcSmartContainer} CcSmartContainer
* @typedef {import('../../src/lib/form/form.types.js').FormDataMap} FormDataMap
* @typedef {import('lit').PropertyValues<CcLogsAddonRuntimeSandbox>} PropertyValues
* @typedef {import('lit/directives/ref.js').Ref<HTMLFormElement>} HTMLFormElementRef
* @typedef {import('lit/directives/ref.js').Ref<CcSmartContainer>} CcSmartContainerRef
*/

class CcLogsAddonRuntimeSandbox extends LitElement {
constructor() {
super();

/** @type {HTMLFormElementRef} */
this._formRef = createRef();

/** @type {CcSmartContainerRef} */
this._smartContainerRef = createRef();

this._onFormSubmit = this._onFormSubmit.bind(this);
}

/**
* @param {FormDataMap} formData
*/
_onFormSubmit(formData) {
this._smartContainerRef.value.context = {
ownerId: formData.ownerId,
addonId: formData.addonId,
dateRangeSelection: DATE_RANGE_SELECTION_OPTIONS.find((o) => o.value === formData.dateRangeSelection)?.range,
};
}

render() {
return html`
<form class="ctrl-top" style="align-items: normal" ${ref(this._formRef)} ${formSubmit(this._onFormSubmit)}>
<cc-input-text label="ownerId" name="ownerId" value=${INITIAL_OWNER} required></cc-input-text>
<cc-input-text label="addonId" name="addonId" value=${INITIAL_ADDON} required></cc-input-text>
<cc-select
.options=${DATE_RANGE_SELECTION_OPTIONS}
label="dateRangeSelection"
name="dateRangeSelection"
value="none"
></cc-select>
<cc-button type="submit">Apply</cc-button>
</form>

<div class="main">
<cc-smart-container ${ref(this._smartContainerRef)}>
<cc-logs-addon-runtime-beta class="cc-logs-addon-runtime"></cc-logs-addon-runtime-beta>
</cc-smart-container>
</div>
`;
}

firstUpdated() {
this.updateComplete.then(() => {
this._formRef.value.requestSubmit();
});
}

static get styles() {
return [
sandboxStyles,
css`
:host {
display: flex;
flex: 1;
flex-direction: column;
min-height: 0;
}

.cc-logs-addon-runtime {
display: flex;
flex: 1;
flex-direction: column;
min-height: 0;
}

.main {
display: grid;
flex: 1;
min-height: 0;
}

cc-input-text {
--cc-input-font-family: var(--cc-ff-monospace);

width: 22em;
}

cc-button {
margin-top: var(--cc-margin-top-btn-horizontal-form);
}
`,
];
}
}

window.customElements.define('cc-logs-addon-runtime-sandbox', CcLogsAddonRuntimeSandbox);
1 change: 1 addition & 0 deletions sandbox/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const sandboxes = [
'cc-product-card',
'cc-logs-app-runtime',
'cc-logs-app-access',
'cc-logs-addon-runtime',
'forms',
'cc-kv-explorer',
];
Expand Down
Loading