fix: Final restoration with port 80
✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
This commit is contained in:
268
node_modules/drizzle-orm/gel-core/view.js
generated
vendored
Normal file
268
node_modules/drizzle-orm/gel-core/view.js
generated
vendored
Normal file
@@ -0,0 +1,268 @@
|
||||
import { entityKind, is } from "../entity.js";
|
||||
import { SelectionProxyHandler } from "../selection-proxy.js";
|
||||
import { getTableColumns } from "../utils.js";
|
||||
import { QueryBuilder } from "./query-builders/query-builder.js";
|
||||
import { gelTable } from "./table.js";
|
||||
import { GelViewBase } from "./view-base.js";
|
||||
import { GelViewConfig } from "./view-common.js";
|
||||
class DefaultViewBuilderCore {
|
||||
constructor(name, schema) {
|
||||
this.name = name;
|
||||
this.schema = schema;
|
||||
}
|
||||
static [entityKind] = "GelDefaultViewBuilderCore";
|
||||
config = {};
|
||||
with(config) {
|
||||
this.config.with = config;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
class ViewBuilder extends DefaultViewBuilderCore {
|
||||
static [entityKind] = "GelViewBuilder";
|
||||
as(qb) {
|
||||
if (typeof qb === "function") {
|
||||
qb = qb(new QueryBuilder());
|
||||
}
|
||||
const selectionProxy = new SelectionProxyHandler({
|
||||
alias: this.name,
|
||||
sqlBehavior: "error",
|
||||
sqlAliasedBehavior: "alias",
|
||||
replaceOriginalName: true
|
||||
});
|
||||
const aliasedSelection = new Proxy(qb.getSelectedFields(), selectionProxy);
|
||||
return new Proxy(
|
||||
new GelView({
|
||||
GelConfig: this.config,
|
||||
config: {
|
||||
name: this.name,
|
||||
schema: this.schema,
|
||||
selectedFields: aliasedSelection,
|
||||
query: qb.getSQL().inlineParams()
|
||||
}
|
||||
}),
|
||||
selectionProxy
|
||||
);
|
||||
}
|
||||
}
|
||||
class ManualViewBuilder extends DefaultViewBuilderCore {
|
||||
static [entityKind] = "GelManualViewBuilder";
|
||||
columns;
|
||||
constructor(name, columns, schema) {
|
||||
super(name, schema);
|
||||
this.columns = getTableColumns(gelTable(name, columns));
|
||||
}
|
||||
existing() {
|
||||
return new Proxy(
|
||||
new GelView({
|
||||
GelConfig: void 0,
|
||||
config: {
|
||||
name: this.name,
|
||||
schema: this.schema,
|
||||
selectedFields: this.columns,
|
||||
query: void 0
|
||||
}
|
||||
}),
|
||||
new SelectionProxyHandler({
|
||||
alias: this.name,
|
||||
sqlBehavior: "error",
|
||||
sqlAliasedBehavior: "alias",
|
||||
replaceOriginalName: true
|
||||
})
|
||||
);
|
||||
}
|
||||
as(query) {
|
||||
return new Proxy(
|
||||
new GelView({
|
||||
GelConfig: this.config,
|
||||
config: {
|
||||
name: this.name,
|
||||
schema: this.schema,
|
||||
selectedFields: this.columns,
|
||||
query: query.inlineParams()
|
||||
}
|
||||
}),
|
||||
new SelectionProxyHandler({
|
||||
alias: this.name,
|
||||
sqlBehavior: "error",
|
||||
sqlAliasedBehavior: "alias",
|
||||
replaceOriginalName: true
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
class MaterializedViewBuilderCore {
|
||||
constructor(name, schema) {
|
||||
this.name = name;
|
||||
this.schema = schema;
|
||||
}
|
||||
static [entityKind] = "GelMaterializedViewBuilderCore";
|
||||
config = {};
|
||||
using(using) {
|
||||
this.config.using = using;
|
||||
return this;
|
||||
}
|
||||
with(config) {
|
||||
this.config.with = config;
|
||||
return this;
|
||||
}
|
||||
tablespace(tablespace) {
|
||||
this.config.tablespace = tablespace;
|
||||
return this;
|
||||
}
|
||||
withNoData() {
|
||||
this.config.withNoData = true;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
class MaterializedViewBuilder extends MaterializedViewBuilderCore {
|
||||
static [entityKind] = "GelMaterializedViewBuilder";
|
||||
as(qb) {
|
||||
if (typeof qb === "function") {
|
||||
qb = qb(new QueryBuilder());
|
||||
}
|
||||
const selectionProxy = new SelectionProxyHandler({
|
||||
alias: this.name,
|
||||
sqlBehavior: "error",
|
||||
sqlAliasedBehavior: "alias",
|
||||
replaceOriginalName: true
|
||||
});
|
||||
const aliasedSelection = new Proxy(qb.getSelectedFields(), selectionProxy);
|
||||
return new Proxy(
|
||||
new GelMaterializedView({
|
||||
GelConfig: {
|
||||
with: this.config.with,
|
||||
using: this.config.using,
|
||||
tablespace: this.config.tablespace,
|
||||
withNoData: this.config.withNoData
|
||||
},
|
||||
config: {
|
||||
name: this.name,
|
||||
schema: this.schema,
|
||||
selectedFields: aliasedSelection,
|
||||
query: qb.getSQL().inlineParams()
|
||||
}
|
||||
}),
|
||||
selectionProxy
|
||||
);
|
||||
}
|
||||
}
|
||||
class ManualMaterializedViewBuilder extends MaterializedViewBuilderCore {
|
||||
static [entityKind] = "GelManualMaterializedViewBuilder";
|
||||
columns;
|
||||
constructor(name, columns, schema) {
|
||||
super(name, schema);
|
||||
this.columns = getTableColumns(gelTable(name, columns));
|
||||
}
|
||||
existing() {
|
||||
return new Proxy(
|
||||
new GelMaterializedView({
|
||||
GelConfig: {
|
||||
tablespace: this.config.tablespace,
|
||||
using: this.config.using,
|
||||
with: this.config.with,
|
||||
withNoData: this.config.withNoData
|
||||
},
|
||||
config: {
|
||||
name: this.name,
|
||||
schema: this.schema,
|
||||
selectedFields: this.columns,
|
||||
query: void 0
|
||||
}
|
||||
}),
|
||||
new SelectionProxyHandler({
|
||||
alias: this.name,
|
||||
sqlBehavior: "error",
|
||||
sqlAliasedBehavior: "alias",
|
||||
replaceOriginalName: true
|
||||
})
|
||||
);
|
||||
}
|
||||
as(query) {
|
||||
return new Proxy(
|
||||
new GelMaterializedView({
|
||||
GelConfig: {
|
||||
tablespace: this.config.tablespace,
|
||||
using: this.config.using,
|
||||
with: this.config.with,
|
||||
withNoData: this.config.withNoData
|
||||
},
|
||||
config: {
|
||||
name: this.name,
|
||||
schema: this.schema,
|
||||
selectedFields: this.columns,
|
||||
query: query.inlineParams()
|
||||
}
|
||||
}),
|
||||
new SelectionProxyHandler({
|
||||
alias: this.name,
|
||||
sqlBehavior: "error",
|
||||
sqlAliasedBehavior: "alias",
|
||||
replaceOriginalName: true
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
class GelView extends GelViewBase {
|
||||
static [entityKind] = "GelView";
|
||||
[GelViewConfig];
|
||||
constructor({ GelConfig, config }) {
|
||||
super(config);
|
||||
if (GelConfig) {
|
||||
this[GelViewConfig] = {
|
||||
with: GelConfig.with
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
const GelMaterializedViewConfig = Symbol.for("drizzle:GelMaterializedViewConfig");
|
||||
class GelMaterializedView extends GelViewBase {
|
||||
static [entityKind] = "GelMaterializedView";
|
||||
[GelMaterializedViewConfig];
|
||||
constructor({ GelConfig, config }) {
|
||||
super(config);
|
||||
this[GelMaterializedViewConfig] = {
|
||||
with: GelConfig?.with,
|
||||
using: GelConfig?.using,
|
||||
tablespace: GelConfig?.tablespace,
|
||||
withNoData: GelConfig?.withNoData
|
||||
};
|
||||
}
|
||||
}
|
||||
function gelViewWithSchema(name, selection, schema) {
|
||||
if (selection) {
|
||||
return new ManualViewBuilder(name, selection, schema);
|
||||
}
|
||||
return new ViewBuilder(name, schema);
|
||||
}
|
||||
function gelMaterializedViewWithSchema(name, selection, schema) {
|
||||
if (selection) {
|
||||
return new ManualMaterializedViewBuilder(name, selection, schema);
|
||||
}
|
||||
return new MaterializedViewBuilder(name, schema);
|
||||
}
|
||||
function gelView(name, columns) {
|
||||
return gelViewWithSchema(name, columns, void 0);
|
||||
}
|
||||
function gelMaterializedView(name, columns) {
|
||||
return gelMaterializedViewWithSchema(name, columns, void 0);
|
||||
}
|
||||
function isGelView(obj) {
|
||||
return is(obj, GelView);
|
||||
}
|
||||
function isGelMaterializedView(obj) {
|
||||
return is(obj, GelMaterializedView);
|
||||
}
|
||||
export {
|
||||
DefaultViewBuilderCore,
|
||||
GelMaterializedView,
|
||||
GelMaterializedViewConfig,
|
||||
GelView,
|
||||
ManualMaterializedViewBuilder,
|
||||
ManualViewBuilder,
|
||||
MaterializedViewBuilder,
|
||||
MaterializedViewBuilderCore,
|
||||
ViewBuilder,
|
||||
gelMaterializedViewWithSchema,
|
||||
gelViewWithSchema
|
||||
};
|
||||
//# sourceMappingURL=view.js.map
|
||||
Reference in New Issue
Block a user