surrealdb-core 3.2.2

A scalable, distributed, collaborative, document-graph database, for the realtime web
Documentation
use js::JsLifetime;
use js::class::Trace;
use surrealdb_types::ToSql;

use crate::val;

#[derive(Clone, Trace, JsLifetime)]
#[js::class]
pub struct File {
	#[qjs(skip_trace)]
	pub(crate) value: val::File,
}

#[js::methods]
impl File {
	#[qjs(constructor)]
	pub fn new(bucket: String, key: String) -> Self {
		Self {
			value: val::File::new(bucket, key),
		}
	}

	#[qjs(get)]
	pub fn value(&self) -> String {
		self.value.to_sql()
	}
	// Compare two File instances
	pub fn is(a: &File, b: &File) -> bool {
		a.value == b.value
	}
	/// Convert the object to a string
	#[qjs(rename = "toString")]
	pub fn js_to_string(&self) -> String {
		self.value.display_inner()
	}
	/// Convert the object to JSON
	#[qjs(rename = "toJSON")]
	pub fn to_json(&self) -> String {
		self.value.display_inner()
	}
	// Get the bucket for this file
	pub fn bucket(&self) -> String {
		self.value.bucket.clone()
	}
	// Get the key for this file
	pub fn key(&self) -> String {
		self.value.key.clone()
	}
}