This is a collection of notes aiming to explain the internals of Keira3 for development purposes.
If you just want to use Keira3, you don't need any of the following. If you want to modify Keira3, for example to improve it or to add new features, you may find this page useful.
Keira3 is built upon the following open source web technologies:
We use test automation in Keira3 in our development cycle. For every PR/commit, our CI automatically runs a lot of automated tests.
More specifically, we have:
*.spec.ts
file, they run with ng test
. We keep 100% coverage. This means that if you try to submit untested code, the CI build of your PR will fail. We use the Angular testing framework for it.*.integration.spec.ts
file, they also run with ng test
, together with the unit tests. You can see the integration tests of Keira3 almost like a set of e2e tests, the main difference is that all the DB interactions are mocked. The difference between unit tests and integration test is: in unit tests we test units by mocking all their dependencies, while in integration tests we test “big pieces” of Keira3 together (mocking only the DB). Mostly used to test the editors.npm run e2e
will automatically serve the app and run the e2e tests.Because every time you modify your app, you never know if you are breaking any existing functionality unless you manually test everything again and again.
When you have automated tests in place, you are still not 100% sure about not breaking existing stuff, but at least they can give you some assurance.
Relevant directories:
src/app
);src/app/shared
;AppComponent
, the Sidebar, the Login window, etc…Keira3 code is structured using OOP with techniques like inheritance and generic types to maximise code reuse.
Inside the directory src/app/shared/abstract
there is a collection of abstract classes that are meant to be extended by the concrete Angular Components and Services which will implement the Keira3 features.
If you are not familiar with the terminology used so far, please check the above hyperlinks before proceeding.
Keira3 is **modular**, you can see it as a collection of features and shared utilities that are organised into Angular Modules.
Typically, Keira3 features are caraterised by the following elements.
All the definitions of the AzerothCore DB tables are defined in Keira3 inside src/app/shared/types
.
If you want to create a new editor, you have to first create its definition there.
For example Creature is a main entity. Whether you want to modify a vendor (npc_vendor
) or a loot of a creature (creature_loot_template
), you still have to select (or create) a Creature.
There is always a table (and so also an Editor) for the Main Entity. For creatures it's creature_template
.
You can't have a vendor, loot, etc… without having a creature first. In other words, you can't have an npc_vendor
row without linking it to an existing entry of creature_template
.
Another example could be: you can't have a row in quest_template_addon
without linking it to an existing row of quest_template
. Because quest_template
is the Main Entity of the Quest editors.
An Editor is typically linked to a table. For example, the Creature → Trainer editor allows you to edit the npc_trainer
table.
There are 2 main types of Editors in Keira3:
They are the editors of tables containing ONE row for each entity.
For example, the table creature_template_addon
can have only ONE row for each creature. You can never have 2 rows pointing to the same creature in this table.
Every row is uniquely identified by a primary key, that is the ID of the selected entity. Typically in the DB they are called id
, ID
, entry
, Entry
, etc… yes, they are completely inconsistent, but that's what we inherited from MaNGOS/TrinityCore. In Keira3 we call it just entityIdField
.
They are the editors containing MULTIPLE rows for each entity.
For example, the table npc_vendor
can have multiple rows that belongs to the same Creature. Every row of npc_vendor
represents a specific Item that is sold by a specific Creature. And a Creature can sell 0, 1 or many items. Then every Creature can have 0, 1 or many rows in the npc_vendor
table. Makes sense right?
Every row has 2 primary keys, typically (but not always) called id
and guid
. In Keira3 we always call them entityIdField
and entitySecondIdField
. The entityIdField
is the ID of the selected entity.
Back to the example of npc_vendor
:
entityIdField
would be the ID of the CreatureentitySecondIdField
would be the ID of the ItemEvery Editor in Keira3 has its own Component and Service counterparts, where:
QueryService
whenever the user edits any property in order to re-generate the SQL queries.In order to maximise code reuse, the following abstract classes have been created:
EditorService
: base of all Editor Services;SingleRowEditorService
: extends EditorService
, base of all Single-row Editor Services (e.g. CreatureTemplateService
extends this class);MultiRowEditorService
: extends EditorService
, base of all Multi-row Editor Services (e.g. CreatureLootTemplateService
extends this class);EditorComponent
: base of all Editor ComponentsSingleRowEditorComponent
: extends EditorComponent
, base of all Single-row Editor Components (e.g. CreatureTemplateComponent
extends this class);MultiRowEditorComponent
: extends EditorComponent
, base of all Multi-row Editor Components (e.g. CreatureLootTemplateComponent
extends this class);Handlers are services responsible for holding statuses such as:
CreatureHandlerService
)
Group of editors that refer to the same main entity should share one Handler. For example, all Creature Editors refer to the CreatureHandlerService
, all Quest Editors refer to the QuestHandlerService
, and so on…
All Handlers classes extend the HandlerService
abstract class.
There are several kinds of selectors which allow the user to easily select a value for a given field.
Selectors are typically available to the user by clicking on the button with three dots:
There are three main types of selectors, listed below.
The SingleValueSelectorBtnComponent
is a reusable component which can be used to allow the user to select a single value from a list of values, for a given field.
Let's check for example the exp
field of creature_template
, allowing to specify ONE value:
0 - Classic 1 - TBC 2 - WOTLK
All you have to do to implement such selector is first definying the list values by creating an array of Option
:
All the options are located in src/app/shared/constants/options
so you just need to create a new file like the above.
You then need to import the array of options, in this case EXPANSIONS
, in the .ts
file of your component and declare it as PUBLIC READONLY
in order to make it available for the component's template:
Now you can use it in the .html
template of the component by adding the keira-single-value-selector-btn
html element and passing the following properties:
[control]
the form control, example editorService.form.controls.exp
(note: exp
is the name of the field)[config]
an object specifying the options
and name
property[modalClass]
the class of the modal, so you can change the modal size, e.g. modal-md
or modal-lg
(optional)This is the result:
<img src=“https://user-images.githubusercontent.com/75517/118694803-c1794280-b80c-11eb-9099-00758983ca2e.png” width=300>
<img src=“https://user-images.githubusercontent.com/75517/118694841-cf2ec800-b80c-11eb-8719-b770a7fd0c98.png” width=500>
The FlagsSelectorBtnComponent
is another very useful reusable component which allows the user to compose a value from a set of flags (bitmask), for a given field. If terms like bits, bitmask, flags, etc.. sounds weird to you, we recommend to read this page to fully understand how flag values work.
Let's see, for example, how the field dynamicflags
of creature_template
is implemented.
First you need to define the the list of (bit) values by creating an array of Flag
:
All the flag values are located in src/app/shared/constants/flags
so you can create a new file there, for example dynamic-flags.ts
in our case.
Basically you need to define what's the meaning of every single bit. Don't forge that bits typically start from zero.
Then you need to import the DYNAMIC_FLAGS
array in the component's .ts
file and make it available for its .html
template by declaring it PUBLIC READONLY
:
Now you just need to use it in the html by adding the keira-flags-selector-btn
component there:
The attributes for this component are:
[control]
the form control, example editorService.form.controls.dynamicflags
(note: dynamicflags
is the name of the field)[config]
an object specifying the options
and name
property[modalClass]
the class of the modal, so you can change the modal size, e.g. modal-md
or modal-lg
(optional)This is the result:
<img src=“https://user-images.githubusercontent.com/75517/118697264-685ede00-b80f-11eb-9609-6b4af903bcdc.png” width=300>
There are other selectors that allow the user to select values by doing a search either in the DB or in the DBC contained in the sqlite integrated in Keira3.
You can find their implementations in src/app/shared/modules/selectors
as well as examples of usage around the app.
Example: the item-selector.
You can use it whenever an Item ID is needed: