subspace model and view

This commit is contained in:
hannathkadher
2025-01-05 14:06:46 +04:00
parent 691beb2e86
commit d2d5e76102

View File

@ -128,96 +128,121 @@ class CreateSpaceModelDialog extends StatelessWidget {
Widget _buildSubspacesSection(
BuildContext context, List<SubspaceTemplateModel> subspaces) {
final screenWidth = MediaQuery.of(context).size.width;
return Container(
child: subspaces.isEmpty
? TextButton(
style: TextButton.styleFrom(
overlayColor: Colors.transparent,
),
onPressed: () async {
final result = await showDialog<List<SubspaceTemplateModel>>(
barrierDismissible: false,
context: context,
builder: (BuildContext context) {
return CreateSubSpaceModelDialog(
isEdit: true,
dialogTitle: subspaces.isEmpty
? 'Create Sub-space'
: 'Edit Sub-space',
existingSubSpaces: subspaces,
);
},
);
child: subspaces.isEmpty
? TextButton(
style: TextButton.styleFrom(
overlayColor: Colors.transparent,
),
onPressed: () async {
final result = await showDialog<List<SubspaceTemplateModel>>(
barrierDismissible: false,
context: context,
builder: (BuildContext context) {
return CreateSubSpaceModelDialog(
isEdit: true,
dialogTitle: subspaces.isEmpty
? 'Create Sub-space'
: 'Edit Sub-space',
existingSubSpaces: subspaces,
);
},
);
if (result != null) {
subspaces.clear();
subspaces.addAll(result);
context
.read<CreateSpaceModelBloc>()
.add(AddSubspacesToSpaceTemplate(subspaces));
}
},
child: const ButtonContentWidget(
icon: Icons.add,
label: 'Create Sub Space',
),
)
: Row(
children: [
Expanded(
child: TextField(
readOnly: true,
decoration: InputDecoration(
filled: true,
fillColor: ColorsManager.whiteColors,
hintText: subspaces.map((e) => e.subspaceName).join(", "),
hintStyle:
const TextStyle(color: ColorsManager.spaceColor),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(10),
borderSide: BorderSide.none,
if (result != null) {
subspaces.clear();
subspaces.addAll(result);
context
.read<CreateSpaceModelBloc>()
.add(AddSubspacesToSpaceTemplate(subspaces));
}
},
child: const ButtonContentWidget(
icon: Icons.add,
label: 'Create Sub Space',
),
)
: SizedBox(
width: screenWidth * 0.25, // Set the desired width
child: Container(
padding: const EdgeInsets.all(
8.0), // Add padding around the content
decoration: BoxDecoration(
color: ColorsManager.textFieldGreyColor, // Background color
borderRadius: BorderRadius.circular(15), // Rounded corners
border: Border.all(
color: ColorsManager.textFieldGreyColor, // Border color
width: 3.0, // Border width
),
),
child: Wrap(
spacing: 8.0, // Spacing between chips
runSpacing: 8.0, // Spacing between rows of chips
children: [
...subspaces.map(
(subspace) => Chip(
label: Text(
subspace.subspaceName,
style: const TextStyle(
color: ColorsManager.spaceColor), // Text color
),
backgroundColor:
Colors.white, // Chip background color
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(16), // Rounded chip
side: const BorderSide(
color:
ColorsManager.spaceColor), // Border color
),
),
),
),
),
),
const SizedBox(width: 10),
TextButton(
onPressed: () async {
final result =
await showDialog<List<SubspaceTemplateModel>>(
barrierDismissible: false,
context: context,
builder: (BuildContext context) {
return CreateSubSpaceModelDialog(
isEdit: true,
dialogTitle: 'Edit Sub-space',
existingSubSpaces: subspaces,
);
},
);
GestureDetector(
onTap: () async {
final result =
await showDialog<List<SubspaceTemplateModel>>(
barrierDismissible: false,
context: context,
builder: (BuildContext context) {
return CreateSubSpaceModelDialog(
isEdit: true,
dialogTitle: 'Edit Sub-space',
existingSubSpaces: subspaces,
);
},
);
if (result != null) {
subspaces.clear();
subspaces.addAll(result);
context
.read<CreateSpaceModelBloc>()
.add(AddSubspacesToSpaceTemplate(subspaces));
}
},
style: TextButton.styleFrom(
backgroundColor: ColorsManager.whiteColors,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8),
side: BorderSide(color: ColorsManager.spaceColor),
),
),
child: const Text(
'Edit',
style: TextStyle(color: ColorsManager.spaceColor),
if (result != null) {
subspaces.clear();
subspaces.addAll(result);
context
.read<CreateSpaceModelBloc>()
.add(AddSubspacesToSpaceTemplate(subspaces));
}
},
child: Chip(
label: const Text(
'Edit',
style: TextStyle(
color: ColorsManager
.spaceColor), // Text color for "Edit"
),
backgroundColor:
Colors.white, // Background color for "Edit"
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(16), // Rounded chip
side: const BorderSide(
color:
ColorsManager.spaceColor), // Border color
),
),
),
],
),
),
],
),
);
));
}
}