29
29
* @property Page parent
30
30
* @property bool is_leaf
31
31
* @property bool is_root
32
+ * @property bool is_only_child
33
+ * @property bool is_only_root_location
32
34
* @property string|null path
33
35
* @property int depth
34
36
* @property string content
@@ -81,6 +83,7 @@ class Page extends BaseModel
81
83
'parent_id ' ,
82
84
'slug ' ,
83
85
'title ' ,
86
+ 'location_based ' ,
84
87
];
85
88
86
89
protected static function boot ()
@@ -128,15 +131,35 @@ public function getRouteKeyName()
128
131
{
129
132
return 'slug ' ;
130
133
}
131
-
134
+
132
135
public function layout ()
133
136
{
134
137
return $ this ->belongsTo (app ('layout ' ));
135
138
}
136
139
137
140
public function getPathAttribute (): ?string
138
141
{
139
- return $ this ->is_leaf ? '/ ' . implode ('/ ' , $ this ->getParentPath ()) : null ;
142
+ if ($ this ->is_only_root_location ) {
143
+ return '/ ' ;
144
+ }
145
+
146
+ $ path = [];
147
+ $ parent = $ this ;
148
+ while ($ parent ) {
149
+ // Start accumulating slugs when not location based or not only child
150
+ if ($ path || ! $ parent ->location_based || ! $ parent ->is_only_child ) {
151
+ $ path [] = $ parent ->slug ;
152
+ }
153
+ $ parent = $ parent ->parent ;
154
+ }
155
+
156
+ return implode ('/ ' , array_reverse ($ path ));
157
+ }
158
+
159
+ public function getIsOnlyRootLocationAttribute (): bool
160
+ {
161
+ return ($ this ->location_based && $ this ->is_root &&
162
+ static ::query ()->whereNull ('parent_id ' )->where ('location_based ' , true )->count () === 1 );
140
163
}
141
164
142
165
public function getIsRootAttribute (): bool
@@ -149,21 +172,21 @@ public function getIsLeafAttribute(): bool
149
172
return $ this ->children ()->count () === 0 ;
150
173
}
151
174
152
- public function getDepthAttribute (): int
175
+ public function getIsOnlyChildAttribute (): bool
153
176
{
154
- return count ( $ this ->getParentPath ()) ;
177
+ return $ this ->parent && $ this -> parent -> children -> count () === 1 ;
155
178
}
156
179
157
- private function getParentPath (): array
180
+ public function getDepthAttribute (): int
158
181
{
159
- $ path = [] ;
182
+ $ depth = 0 ;
160
183
$ parent = $ this ;
161
184
while ($ parent ) {
162
- $ path [] = $ parent ;
185
+ $ depth ++ ;
163
186
$ parent = $ parent ->parent ;
164
187
}
165
188
166
- return array_reverse ( $ path ) ;
189
+ return $ depth ;
167
190
}
168
191
169
192
public function author ()
0 commit comments