-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into api-refactor
- Loading branch information
Showing
24 changed files
with
1,798 additions
and
789 deletions.
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
Large diffs are not rendered by default.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import { Sequelize, DataTypes, Model, InferAttributes, InferCreationAttributes, CreationOptional } from "sequelize"; | ||
import { Story } from "./story"; | ||
|
||
|
||
export class Stage extends Model<InferAttributes<Stage>, InferCreationAttributes<Stage>> { | ||
declare story_name: string; | ||
declare stage_name: string; | ||
declare stage_index: CreationOptional<number | null>; | ||
} | ||
|
||
export function initializeStageModel(sequelize: Sequelize) { | ||
Stage.init({ | ||
story_name: { | ||
type: DataTypes.STRING, | ||
allowNull: false, | ||
unique: true, | ||
primaryKey: true, | ||
}, | ||
stage_name: { | ||
type: DataTypes.STRING, | ||
allowNull: false, | ||
unique: true, | ||
primaryKey: true, | ||
references: { | ||
model: Story, | ||
key: "name", | ||
} | ||
}, | ||
stage_index: { | ||
type: DataTypes.INTEGER.UNSIGNED, | ||
allowNull: true, | ||
defaultValue: null, | ||
} | ||
}, { | ||
sequelize, | ||
engine: "InnoDB", | ||
indexes: [ | ||
{ | ||
unique: true, | ||
fields: ["story_name", "stage_name"], | ||
}, | ||
{ | ||
unique: true, | ||
fields: ["story_name"], | ||
}, | ||
{ | ||
unique: true, | ||
fields: ["stage_name"], | ||
}, | ||
] | ||
}); | ||
} |
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,51 @@ | ||
import { Sequelize, DataTypes, Model, InferAttributes, InferCreationAttributes, CreationOptional } from "sequelize"; | ||
import { Story } from "./story"; | ||
import { Student } from "./student"; | ||
|
||
export class StageState extends Model<InferAttributes<StageState>, InferCreationAttributes<StageState>> { | ||
declare student_id: CreationOptional<number>; | ||
declare story_name: string; | ||
declare stage_name: string; | ||
declare state: JSON; | ||
declare last_modified: CreationOptional<Date>; | ||
} | ||
|
||
export function initializeStageStateModel(sequelize: Sequelize) { | ||
StageState.init({ | ||
student_id: { | ||
type: DataTypes.INTEGER.UNSIGNED, | ||
allowNull: false, | ||
primaryKey: true, | ||
references: { | ||
model: Student, | ||
key: "id" | ||
} | ||
}, | ||
story_name: { | ||
type: DataTypes.STRING, | ||
allowNull: false, | ||
primaryKey: true, | ||
references: { | ||
model: Story, | ||
key: "name" | ||
} | ||
}, | ||
stage_name: { | ||
type: DataTypes.STRING, | ||
allowNull: false, | ||
primaryKey: true, | ||
}, | ||
state: { | ||
type: DataTypes.JSON, | ||
allowNull: false | ||
}, | ||
last_modified: { | ||
type: DataTypes.DATE, | ||
allowNull: false, | ||
defaultValue: Sequelize.literal("CURRENT_TIMESTAMP") | ||
} | ||
}, { | ||
sequelize, | ||
engine: "InnoDB" | ||
}); | ||
} |
Oops, something went wrong.