Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Update Rill Developer home page widget text
- Title: 'Import data' → 'Connect to your data'
- Body: 'Add or drag a file here (Parquet, NDJSON, CSV)' → 'Query OLAP engines or ingest files'
- CTA: '+ Add Data' → '+ Connect Data'
- Updated tips section to match new messaging
- Updated test files to reflect new text

Resolves APP-714

Co-authored-by: ericokuma <ericokuma@users.noreply.github.com>
  • Loading branch information
cursoragent and ericokuma committed Feb 4, 2026
commit 088291e5913220f165eeda7fccb368c3fb1411f8
8 changes: 4 additions & 4 deletions web-common/src/features/onboarding/OnboardingWorkspace.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@
<div class="cta-container">
<div class="import-data-container cta-item">
<div class="flex flex-col gap-y-1">
<div class="font-semibold text-base">Import data</div>
<div class="font-semibold text-base">Connect to your data</div>
<div class="text-xs">
Add or drag a file here (Parquet, NDJSON, CSV).
Query OLAP engines or ingest files
</div>
</div>
<div class="mx-auto">
<ImportData />
</div>
<Button type="primary" onClick={addSourceModal.open}>+ Add Data</Button>
<Button type="primary" onClick={addSourceModal.open}>+ Connect Data</Button>
</div>

<div class="my-auto text-gray-400 text-base">or</div>
Expand Down Expand Up @@ -127,7 +127,7 @@
<div class="flex flex-col mx-auto w-fit gap-y-2 text-xs text-slate-500">
<div class="font-semibold text-center">Tips for data workflow in rill</div>
<ul class="list-decimal">
<li>Import data – Add or drag files (Parquet, NDJSON, CSV).</li>
<li>Connect to your data – Query OLAP engines or ingest files.</li>
<li>Model sources – Combine and shape data with SQL.</li>
<li>Define metrics – Create metrics and dimensions.</li>
<li>Explore insights – Visualize data in interactive dashboards.</li>
Expand Down
2 changes: 1 addition & 1 deletion web-local/tests/init.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ test.describe("Example project initialization", () => {
await page.getByRole("link", { name: "Empty Project" }).click();

await expect(
page.getByText("Import data", { exact: true }),
page.getByText("Connect to your data", { exact: true }),
).toBeVisible();

await page.getByRole("link", { name: "rill.yaml" }).click();
Expand Down
8 changes: 4 additions & 4 deletions web-local/tests/rill-yaml.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test.describe("Default olap_connector behavior", () => {
page,
}) => {
await page.getByRole("link", { name: "Empty Project" }).click();
await expect(page.getByText("Import data", { exact: true })).toBeVisible();
await expect(page.getByText("Connect to your data", { exact: true })).toBeVisible();

await page.getByRole("link", { name: "rill.yaml" }).click();
// Wait for navigation to complete
Expand All @@ -30,7 +30,7 @@ test.describe("Default olap_connector behavior", () => {
page,
}) => {
await page.getByRole("link", { name: "Empty Project" }).click();
await expect(page.getByText("Import data", { exact: true })).toBeVisible();
await expect(page.getByText("Connect to your data", { exact: true })).toBeVisible();

await uploadFile(page, "AdBids.csv");

Expand All @@ -49,9 +49,9 @@ test.describe("Default olap_connector behavior", () => {
page,
}) => {
await page.getByRole("link", { name: "Empty Project" }).click();
await expect(page.getByText("Import data", { exact: true })).toBeVisible();
await expect(page.getByText("Connect to your data", { exact: true })).toBeVisible();

await page.getByRole("button", { name: "Add Data" }).click();
await page.getByRole("button", { name: "Connect Data" }).click();
await page.locator("#clickhouse").click();
await page.getByRole("radio", { name: "Rill-managed ClickHouse" }).check();
await page
Expand Down
Loading