-
Notifications
You must be signed in to change notification settings - Fork 0
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
Jacob/create client #182
Draft
jacobprall
wants to merge
18
commits into
main
Choose a base branch
from
jacob/create-client
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Jacob/create client #182
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
f99767e
add upload, download, fetch, create client
jacobprall 9b74e4b
remove dbs
jacobprall 2838977
formatting
jacobprall 23635fb
Client refactor
jacobprall 988790f
fix: update SQLiteCloudClient to use _db
jacobprall d6c109b
add vector client scaffold
jacobprall f28bab6
reorg into packages dir
jacobprall 27105e1
refactor to clean up packages and start on functions client
jacobprall d3904cd
improve client library, apis and error handling
jacobprall b394d62
clean up functions client
jacobprall 4f3ba4f
clean up functions and pub sub
jacobprall 4e601b3
clean up storageclient
jacobprall 8038b49
add back getPubSub to database
jacobprall 3c73865
refactor weblite
jacobprall d90d357
add weblite tests
jacobprall 6fbf85c
client test clean up
jacobprall 32b98f1
clean up weblite and start on pubsub refactor
jacobprall c6c85b0
fix: add functions test
jacobprall File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
Refactor 12.23.24 | ||
- Added SQLiteCloudClient class and createClient function | ||
- Extracted PubSub from Database to SQLiteCloudClient | ||
- Added fetch, customFetch support and fetchWithAuth | ||
- Added Weblite methods for upload, download, delete, and listDatabases | ||
- Refactored PubSub to be more intuitive and easier to use | ||
- Added FileClient class and methods for file upload and download | ||
- Added SQLiteCloudVectorClient class and methods for upsert and query | ||
|
||
Refactor Summary | ||
- The Plan: | ||
- Improve the usability of the SQLite Cloud platform by consolidating various features | ||
under a single client with one consistent design and interface | ||
The Objective: | ||
- Provide a streamlined and consistent api for discovering, learning and using features on SQLite Cloud | ||
- Improve the visibility of various features on the SQLite Cloud platform by providing explicit namespaces and methods for: | ||
- functions | ||
- file storage | ||
- Pub/Sub | ||
- Vector search | ||
- Weblite (platform-level database management) | ||
- database (core database connection) | ||
- Increase adoption of SQLite Cloud's JS SDK by expanding our documentation. | ||
- Provide a solid architecture for future SDK development. | ||
- Goals: | ||
- Streamline the onboarding and implementation process for building JS apps on SQLite Cloud | ||
|
||
Guidelines: | ||
- Use consistent and scalable designs to improve readability, usability and maintainability. | ||
|
||
Scope of work: | ||
- refactor new code to improve code smells and readability | ||
- Recap progress. | ||
- packages | ||
- functions: | ||
- Purpose: used to interact with edge functions deployed on the SQLite Cloud platform | ||
- Value: removes need for custom client | ||
- Objective: simplify the onboarding and use of edge functions to increase adoption | ||
- storage: | ||
- Purpose: used to store files, with an emphasis on images and photos | ||
- Value: unifies development experience of handling transactional and non-transactional data | ||
- Objective: simplify the development process | ||
- pubsub: | ||
- Purpose: used to interact with the SQLite Cloud pubsub platform | ||
- Value: removes need for custom client | ||
- Objective: simplify the onboarding and use of pubsub to increase adoption | ||
- write tests for each new class | ||
- Idenitfy protential issues | ||
- Plan refactor with psuedo code | ||
- Implement refactor | ||
- Test refactor | ||
|
||
TODO: | ||
- add error handling and logging | ||
- add tests | ||
- add comments | ||
- add documentation | ||
|
||
|
||
Out of scope: | ||
- Auth module (awaiting auth.js merge) | ||
- Vector search module |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
|
||
/** | ||
* Developer experience - current | ||
* | ||
*/ | ||
|
||
import { Database } from '@sqlitecloud/drivers' | ||
import { PUBSUB_ENTITY_TYPE } from '@sqlitecloud/drivers/lib/drivers/pubsub' // forces user to import pubsub constants from hard to remember location | ||
|
||
const db = new Database('connection-string') | ||
const pubSub = await db.getPubSub() // couples database to pubsub | ||
|
||
/* Database methods */ | ||
await db.sql`SELECT * FROM users` | ||
db.exec('command') | ||
db.run('command') | ||
db.all('command') | ||
db.each('command') | ||
db.close() | ||
|
||
/* PubSub usage */ | ||
/** Listen to a table */ | ||
pubSub.listen(PUBSUB_ENTITY_TYPE.TABLE, 'users', (error, results, data) => { // note extraneous "data" | ||
console.log(error, results, data) | ||
}, ['extra data']) | ||
|
||
/** Listen to a channel */ | ||
pubSub.listen(PUBSUB_ENTITY_TYPE.CHANNEL, 'messages', (error, results, data) => { | ||
console.log(error, results, data) | ||
}, ['extra data']) | ||
|
||
/** Create a channel */ | ||
pubSub.createChannel('messages') | ||
|
||
/** Unlisten to a table */ | ||
pubSub.unlisten(PUBSUB_ENTITY_TYPE.TABLE, 'users') | ||
|
||
/** Remove a channel (not currently exposed) */ | ||
// @ts-ignore | ||
pubSub.removeChannel('messages') | ||
|
||
/** Notify a channel */ | ||
pubSub.notifyChannel('messages', 'my message') | ||
|
||
|
||
/** | ||
* Developer experience - refactored | ||
* In the refactor, Database still exists and works as before. | ||
*/ | ||
|
||
import { createClient } from './src/packages/SQLiteCloudClient' | ||
|
||
const client = createClient('connection-string/chinook.db') | ||
|
||
// Promise sql query | ||
const { data, error } = await client.sql`SELECT * FROM albums`; | ||
|
||
client.defaultDb = 'users'; // helper to set default database for SQL queries | ||
|
||
const { data: sessions, error: sessionsError } = await client.sql`SELECT * FROM sessions`; | ||
// or | ||
const result = client.db.exec('SELECT * FROM sessions') | ||
|
||
// Weblite | ||
// upload database | ||
const uploadDatabaseResponse = await client.weblite.upload('new_chinook.db', new File([''], 'new_chinook.db'), { replace: false }); | ||
|
||
// download database | ||
const downloadDatabaseResponse = await client.weblite.download('new_chinook.db'); | ||
|
||
// delete database | ||
const deleteDatabaseResponse = await client.weblite.delete('new_chinook.db'); | ||
|
||
// list databases | ||
const listDatabasesResponse = await client.weblite.listDatabases(); | ||
|
||
// create database | ||
const createDatabaseResponse = await client.weblite.create('new_chinook.db'); | ||
|
||
// SQLiteCloudFileClient | ||
const createBucketResponse = await client.files.createBucket('myBucket'); | ||
const getBucketResponse = await client.files.getBucket('myBucket'); | ||
const deleteBucketResponse = await client.files.deleteBucket('myBucket'); | ||
const listBucketsResponse = await client.files.listBuckets(); | ||
|
||
// upload file | ||
const uploadFileResponse = await client.files.upload('myBucket', 'myPath', new File([''], 'myFile.txt'), { contentType: 'text/plain' }); | ||
|
||
// download file | ||
const downloadFileResponse = await client.files.download('myBucket', 'myPath'); | ||
|
||
// remove file | ||
const removeFileResponse = await client.files.remove('myBucket', 'myPath'); | ||
|
||
|
||
// SQLiteCloudPubSubClient Refactor | ||
await client.pubSub.create('messages') | ||
await client.pubSub.notify('messages', 'my message') | ||
await client.pubSub.subscribe('messages', (error, results) => { | ||
console.log(error, results) | ||
}) | ||
client.pubSub.unsubscribe('messages') | ||
await client.pubSub.delete('messages') | ||
|
||
await client.pubSub.listen({ tableName: 'users' }, (error, results) => { | ||
console.log(error, results) | ||
}) | ||
|
||
await client.pubSub.listen({ tableName: 'users', dbName: 'chinook.sqlite' }, (error, results) => { // note optional dbName | ||
console.log(error, results) | ||
}) | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
const version = '0.0.1' | ||
let JS_ENV = '' | ||
// @ts-ignore | ||
if (typeof Deno !== 'undefined') { | ||
JS_ENV = 'deno' | ||
} else if (typeof document !== 'undefined') { | ||
JS_ENV = 'web' | ||
} else if (typeof navigator !== 'undefined' && navigator.product === 'ReactNative') { | ||
JS_ENV = 'react-native' | ||
} else { | ||
JS_ENV = 'node' | ||
} | ||
|
||
export const DEFAULT_HEADERS = { | ||
'X-Client-Info': `sqlitecloud-js-${JS_ENV}/${version}`, | ||
} | ||
export const DEFAULT_GLOBAL_OPTIONS = { | ||
headers: DEFAULT_HEADERS | ||
} | ||
|
||
export const DEFAULT_API_VERSION = 'v2' | ||
export const DEFAULT_API_PORT = 8090 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have you considered to mimic the interface of a widely used package like https://www.npmjs.com/package/sqlite3 ? I think it's the best approach for developers and our driver may become compatible to ORM like knex.js or Sequelize.