Я пытаюсь найти и повторно использовать свой код reasonML.У меня есть типы модулей моделей, которые выглядят следующим образом:
module Diet = {
type schemaType = [`DietSchema];
type idType = [`DietId(UUID.t)];
let schema = `DietSchema;
type idAsType('a) = [> | idType] as 'a;
};
module Ingredient = {
type schemaType = [`IngredientSchema];
type idType = [`IngredientId(UUID.t)];
let schema = `IngredientSchema;
type idAsType('a) = [> | idType] as 'a;
};
module Restriction = {
type schemaType = [`RestrictionSchema];
type idType = [`RestrictionId(UUID.t)];
let schema = `RestrictionSchema;
type idAsType('a) = [> | idType] as 'a;
};
И я хотел бы генерировать типы и функции из idType
s и schemaType
s.
примеры:
type modelIdType = [
| Diet.idType
| Restriction.idType
| Ingredient.idType
];
type schemaType = [
| Diet.schemaType
| Restriction.schemaType
| Ingredient.schemaType
];
let modelIdToIdFunction = (recordIdType): (schemaType, UUID.t) =>
switch (recordIdType) {
| `DietId(uuid) => (Diet.schema, uuid)
| `RestrictionId(uuid) => (Restriction.schema, uuid)
| `IngredientId(uuid) => (Ingredient.schema, uuid)
};
Итак, я пытаюсь построить модуль с помощью функтора, пропуская каждую из схем через
module Diet : SchemaType = {
/* ... */
};
module type SchemaType {
type schemaType;
type idType;
let schema: [> schemaType];
type idAsType('a) = [> | idType] as 'a;
};
module ProcessSchema = (
Schema : SchemaType,
PrevFullSchema : FullSchema
) : (FullSchema) => {
type id = [> Schema.idType' | PrevFullSchema.id'('a)] as 'a;
/* type id = [PrevFullSchema.openId(PrevFullSchema.id) | Schema.idType]; */
/* type schema = [PrevFullSchema.schema | Schema.schema]; */
/* type openSchema = [PrevFullSchema.schema | Schema.schema]; */
};
Приведенный выше код не работает.У меня проблемы с добавлением типов модулей к модельным модулям вверху.Я также пытался использовать тип модуля SchemaType
, но продолжал нажимать The type idType is not a polymorphic variant type
, когда хотел, чтобы каждая модель имела разные типы полиморфных переменных.
Итак, в общем, я хочу знать, возможно ли создать полиморфный вариантный тип, который может быть создан или расширен с использованием модулей и функторов?
Если нет, то возможно ли создать полиморфный вариантный типиспользуя "список модулей"?
Спасибо